Data.Modeler 5.0.76

There is a newer version of this package available.
See the version list below for details.
dotnet add package Data.Modeler --version 5.0.76
                    
NuGet\Install-Package Data.Modeler -Version 5.0.76
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Data.Modeler" Version="5.0.76" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Data.Modeler" Version="5.0.76" />
                    
Directory.Packages.props
<PackageReference Include="Data.Modeler" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Data.Modeler --version 5.0.76
                    
#r "nuget: Data.Modeler, 5.0.76"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Data.Modeler@5.0.76
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Data.Modeler&version=5.0.76
                    
Install as a Cake Addin
#tool nuget:?package=Data.Modeler&version=5.0.76
                    
Install as a Cake Tool

Data.Modeler

Build status

Data.Modeler is a library used to interact with model database schemas in C#. Works with .Net Core.

Basic Usage

In order to use Data.Modeler, you need to first wire up the system with your ServiceCollection. In order to do this, all you need to do is make one method call:

serviceCollection.AddCanisterModules();
				

This line is required prior to using the DataModeler class for the first time. Once Canister is set up, you can call the DataModeler class provided:

var SchemaProvider = DataModeler.GetSchemaGenerator(SqlClientFactory.Instance);

Note that the above gets the schema provider for SQL Server but for other databases you must provide the DbProviderFactory associated with it. You can also start creating a schema:

var Source = DataModeler.CreateSource("MySource");

The "MySource" string is the database name that you wish to use.

Creating a Schema

Once you have your ISource object, you can start adding on to it:

var Table = Source.AddTable("TableName", "dbo");
var Column = Table.AddColumn<int>("ColumnName",DbType.Int32);
var CheckConstraint = Table.AddCheckConstraint("CheckConstraintName", "Check Constraint Definition");
var View = Source.AddView("ViewName","View Creation Code", "dbo");
var Function = Source.AddFunction("FunctionName","Function Creation Code", "dbo");
var StoredProcedure = Source.AddStoredProcedure("StoredProcedureName","Stored Procedure Creation Code", "dbo");

From there the schema provider can be used to either generate the commands needed to create the database or what commands are needed to alter an existing database to the desired schema:

var MyCommands = SchemaProvider.GenerateSchema(DesiredSchema, SourceSchema);

If SourceSchema is null, then it will treat it as the database doesn't exist. If the SourceSchema is not null, it will act as though the database exists and the DesiredSchema is what you want the final schema to look like. Note that deleting columns, tables, etc. is not done by the system. It will, however, generate calls to drop functions, stored procedures, views, constraints, etc. if they need to be updated. Another thing you can do is have the system apply those changes for you:

SchemaProvider.Setup(DesiredSchema,new Connection(Configuration, SqlClientFactory.Instance, "Default"));

The connection object must be fed a IConfiguration object, a DbProviderFactory for the database type you wish it to connect to, and either the name of your connection string in the configuration object or a connection string:

SchemaProvider.Setup(DesiredSchema,new Connection(Configuration, SqlClientFactory.Instance, "Data Source=localhost;Initial Catalog=ExampleDatabase;Integrated Security=SSPI;Pooling=false"));

Adding a ISchemaGenerator

The schema generator is what the system uses to generate the individual commands. Data.Modeler comes with one for SQL Server but in order to add your own you must create a class that inherits from ISchemaGenerator. From there the system will automatically pick up the schema generator and allow you to use it:

var SchemaProvider = DataModeler.GetSchemaGenerator(MyDbFactoryProvider);

Note that you can also create one for SQL Server and the system will actually return the one that you create instead of the one built into the system.

Installation

The library is available via Nuget with the package name "Data.Modeler". To install it run the following command in the Package Manager Console:

Install-Package Data.Modeler

Build Process

In order to build the library you will require the following as a minimum:

  1. Visual Studio 2022

Other than that, just clone the project and you should be able to load the solution and build without too much effort.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Data.Modeler:

Package Downloads
Inflatable

Inflatable is a simple ORM.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.0.77 52 9/30/2025
5.0.76 99 9/29/2025
5.0.75 71 9/29/2025
5.0.72 410 9/18/2025
5.0.71 289 9/18/2025
5.0.70 330 9/17/2025
5.0.69 322 9/16/2025
5.0.68 187 9/11/2025
5.0.67 175 9/10/2025
5.0.66 186 9/9/2025
5.0.65 336 8/20/2025
5.0.64 158 8/20/2025
5.0.63 165 8/20/2025
5.0.62 145 8/19/2025
5.0.61 159 8/19/2025
5.0.60 190 8/19/2025
5.0.59 158 8/15/2025
5.0.58 322 8/6/2025
5.0.57 268 8/5/2025
5.0.56 242 8/5/2025
5.0.55 235 8/5/2025
5.0.54 278 8/5/2025
5.0.53 217 8/5/2025
5.0.52 106 8/1/2025
5.0.51 186 7/28/2025
5.0.50 221 7/17/2025
5.0.49 172 7/17/2025
5.0.48 253 7/15/2025
5.0.47 168 7/14/2025
5.0.46 179 7/14/2025
5.0.45 220 7/8/2025
5.0.44 540 6/30/2025
5.0.43 175 6/30/2025
5.0.42 174 6/30/2025
5.0.41 193 6/27/2025
5.0.40 226 6/27/2025
5.0.39 168 6/27/2025
5.0.38 175 6/27/2025
5.0.37 161 6/27/2025
5.0.36 207 6/26/2025
5.0.35 186 6/18/2025
5.0.34 350 6/10/2025
5.0.33 135 5/30/2025
5.0.32 152 5/23/2025
5.0.31 287 5/14/2025
5.0.30 149 5/2/2025
5.0.29 214 4/28/2025
5.0.28 179 4/11/2025
5.0.27 216 3/17/2025
5.0.26 167 2/24/2025
5.0.25 200 2/12/2025
5.0.24 314 2/3/2025
5.0.23 214 1/30/2025
5.0.22 186 1/29/2025
5.0.21 154 1/29/2025
5.0.20 170 1/28/2025
5.0.19 185 1/24/2025
5.0.18 181 1/23/2025
5.0.17 157 1/23/2025
5.0.16 212 1/16/2025
5.0.15 168 1/15/2025
5.0.14 176 1/14/2025
5.0.13 165 1/13/2025
5.0.12 173 1/10/2025
5.0.11 176 1/9/2025
5.0.10 141 1/8/2025
5.0.9 232 12/17/2024
5.0.8 183 12/17/2024
5.0.7 220 12/10/2024
5.0.6 181 12/9/2024
5.0.5 254 11/26/2024
5.0.4 220 11/26/2024
5.0.3 165 11/25/2024
5.0.2 213 11/24/2024
5.0.1 179 11/23/2024
5.0.0 170 11/23/2024
4.0.268 194 11/19/2024
4.0.267 171 11/11/2024
4.0.266 164 11/6/2024
4.0.265 168 11/5/2024
4.0.264 159 11/4/2024
4.0.263 188 11/1/2024
4.0.262 165 10/31/2024
4.0.261 174 10/30/2024
4.0.260 168 10/29/2024
4.0.259 171 10/29/2024
4.0.258 181 10/25/2024
4.0.257 167 10/24/2024
4.0.256 184 10/21/2024
4.0.255 177 10/16/2024
4.0.254 170 10/15/2024
4.0.253 179 10/11/2024
4.0.252 165 10/10/2024
4.0.251 165 10/9/2024
4.0.250 163 10/8/2024
4.0.249 182 10/2/2024
4.0.248 190 10/1/2024
4.0.247 168 9/30/2024
4.0.246 189 9/27/2024
4.0.245 164 9/24/2024
4.0.244 173 9/23/2024
4.0.243 163 9/23/2024
4.0.242 216 9/17/2024
4.0.241 206 9/10/2024
4.0.240 177 9/9/2024
4.0.239 186 9/6/2024
4.0.238 195 9/5/2024
4.0.237 179 9/3/2024
4.0.236 182 9/2/2024
4.0.235 185 8/30/2024
4.0.234 188 8/29/2024
4.0.233 200 8/28/2024
4.0.232 190 8/27/2024
4.0.231 185 8/26/2024
4.0.230 202 8/23/2024
4.0.229 198 8/22/2024
4.0.228 189 8/21/2024
4.0.227 201 8/20/2024
4.0.226 186 8/20/2024
4.0.225 221 8/19/2024
4.0.224 220 8/16/2024
4.0.223 202 8/15/2024
4.0.222 223 8/14/2024
4.0.221 175 8/5/2024
4.0.220 168 8/2/2024
4.0.219 201 8/1/2024
4.0.218 161 7/31/2024
4.0.217 193 7/26/2024
4.0.216 169 7/25/2024
4.0.215 133 7/24/2024
4.0.214 186 7/11/2024
4.0.213 164 7/10/2024
4.0.212 167 7/9/2024
4.0.211 179 7/9/2024
4.0.210 170 7/8/2024
4.0.209 180 7/5/2024
4.0.208 197 7/5/2024
4.0.207 175 7/2/2024
4.0.206 177 7/1/2024
4.0.205 204 6/27/2024
4.0.204 209 6/26/2024
4.0.203 188 6/25/2024
4.0.202 203 6/24/2024
4.0.201 1,169 6/19/2024
4.0.200 208 6/18/2024
4.0.199 171 6/17/2024
4.0.198 179 6/14/2024
4.0.197 173 6/13/2024
4.0.196 189 6/12/2024
4.0.195 192 6/3/2024
4.0.194 179 5/31/2024
4.0.193 214 5/30/2024
4.0.192 191 5/29/2024
4.0.191 209 5/27/2024
4.0.190 187 5/27/2024
4.0.189 172 5/23/2024
4.0.188 183 5/22/2024
4.0.187 218 5/21/2024
4.0.186 204 5/20/2024
4.0.185 188 5/17/2024
4.0.184 183 5/16/2024
4.0.183 198 5/15/2024
4.0.182 195 5/8/2024
4.0.181 182 5/7/2024
4.0.180 193 5/6/2024
4.0.179 210 5/3/2024
4.0.178 840 5/2/2024
4.0.177 151 5/1/2024
4.0.176 195 4/30/2024
4.0.175 181 4/29/2024
4.0.174 183 4/29/2024
4.0.173 208 4/25/2024
4.0.172 202 4/24/2024
4.0.171 210 4/16/2024
4.0.170 192 4/15/2024
4.0.169 197 4/12/2024
4.0.168 192 4/12/2024
4.0.167 213 4/11/2024
4.0.166 223 4/10/2024
4.0.165 194 4/9/2024
4.0.164 198 4/8/2024
4.0.163 197 4/1/2024
4.0.162 177 3/29/2024
4.0.161 206 3/28/2024
4.0.160 181 3/26/2024
4.0.159 206 3/23/2024
4.0.158 206 3/22/2024
4.0.157 206 3/21/2024
4.0.156 186 3/18/2024
4.0.155 211 3/15/2024
4.0.154 199 3/14/2024
4.0.153 205 3/13/2024
4.0.152 241 3/11/2024
4.0.151 208 3/8/2024
4.0.150 202 3/7/2024
4.0.149 193 3/6/2024
4.0.148 199 3/5/2024
4.0.147 1,168 3/4/2024
4.0.146 217 3/1/2024
4.0.145 221 2/29/2024
4.0.144 220 2/28/2024
4.0.143 222 2/27/2024
4.0.142 225 2/26/2024
4.0.141 227 2/23/2024
4.0.140 236 2/22/2024
4.0.139 212 2/21/2024
4.0.138 228 2/20/2024
4.0.137 504 2/19/2024
4.0.136 188 2/19/2024
4.0.135 199 2/16/2024
4.0.134 201 2/16/2024
4.0.133 181 2/15/2024
4.0.132 206 2/14/2024
4.0.131 177 2/13/2024
4.0.130 215 2/12/2024
4.0.129 191 2/9/2024
4.0.128 241 2/8/2024
4.0.127 204 2/7/2024
4.0.126 220 2/6/2024
4.0.125 161 2/6/2024
4.0.124 184 2/5/2024
4.0.123 629 2/2/2024
4.0.122 223 2/1/2024
4.0.121 183 2/1/2024
4.0.120 220 1/31/2024
4.0.119 288 1/30/2024
4.0.118 229 1/29/2024
4.0.117 227 1/26/2024
4.0.116 198 1/24/2024
4.0.115 180 1/23/2024
4.0.114 191 1/22/2024
4.0.113 436 1/16/2024
4.0.112 244 1/15/2024
4.0.111 208 1/15/2024
4.0.110 207 1/12/2024
4.0.109 200 1/11/2024
4.0.108 183 1/10/2024
4.0.107 409 1/8/2024
4.0.106 269 1/5/2024
4.0.105 403 12/26/2023
4.0.104 229 12/26/2023
4.0.103 233 12/25/2023
4.0.102 222 12/25/2023
4.0.101 320 12/22/2023
4.0.100 250 12/21/2023
4.0.99 249 12/15/2023
4.0.98 221 12/14/2023
4.0.97 205 12/13/2023
4.0.96 224 12/13/2023
4.0.95 394 12/12/2023
4.0.94 228 12/12/2023
4.0.93 215 12/11/2023
4.0.92 208 12/11/2023
4.0.91 261 12/6/2023
4.0.90 204 12/6/2023
4.0.89 199 12/5/2023
4.0.88 260 12/4/2023
4.0.87 268 11/24/2023
4.0.86 207 11/23/2023
4.0.85 219 11/21/2023
4.0.84 224 11/20/2023
4.0.83 211 11/20/2023
4.0.82 276 11/17/2023
4.0.81 699 11/16/2023
4.0.80 225 11/15/2023
4.0.79 219 11/13/2023
4.0.78 253 11/9/2023
4.0.77 242 11/8/2023
4.0.76 182 11/8/2023
4.0.75 221 11/7/2023
4.0.74 208 11/6/2023
4.0.73 217 11/3/2023
4.0.72 275 11/2/2023
4.0.71 213 11/1/2023
4.0.70 202 11/1/2023
4.0.69 262 10/31/2023
4.0.68 245 10/30/2023
4.0.67 225 10/27/2023
4.0.66 255 10/26/2023
4.0.65 241 10/25/2023
4.0.64 218 10/17/2023
4.0.63 189 10/17/2023
4.0.62 258 10/16/2023
4.0.61 244 10/13/2023
4.0.60 286 10/12/2023
4.0.59 218 10/11/2023
4.0.58 257 10/5/2023
4.0.57 230 10/4/2023
4.0.56 216 9/26/2023
4.0.55 234 9/25/2023
4.0.54 255 9/22/2023
4.0.53 253 9/20/2023
4.0.52 251 9/19/2023
4.0.51 230 9/18/2023
4.0.50 223 9/18/2023
4.0.49 285 9/14/2023
4.0.48 259 9/13/2023
4.0.47 215 9/12/2023
4.0.46 301 9/11/2023
4.0.45 217 9/11/2023
4.0.44 205 9/11/2023
4.0.43 357 9/7/2023
4.0.42 221 9/6/2023
4.0.41 292 9/5/2023
4.0.40 235 9/4/2023
4.0.39 244 9/4/2023
4.0.38 288 9/1/2023
4.0.37 296 8/31/2023
4.0.36 283 8/30/2023
4.0.35 301 8/29/2023
4.0.34 226 8/29/2023
4.0.33 321 8/28/2023
4.0.32 311 8/25/2023
4.0.31 281 8/24/2023
4.0.30 263 8/23/2023
4.0.29 278 8/22/2023
4.0.28 276 8/18/2023
4.0.27 284 8/17/2023
4.0.26 261 8/17/2023
4.0.25 252 8/16/2023
4.0.24 341 8/10/2023
4.0.23 289 8/9/2023
4.0.22 314 8/8/2023
4.0.21 265 8/8/2023
4.0.20 383 8/7/2023
4.0.19 278 8/4/2023
4.0.18 337 8/3/2023
4.0.17 311 8/2/2023
4.0.16 316 7/26/2023
4.0.15 281 7/25/2023
4.0.14 312 7/20/2023
4.0.13 318 7/19/2023
4.0.12 292 7/18/2023
4.0.11 224 7/18/2023
4.0.10 279 7/18/2023
4.0.9 245 7/18/2023
4.0.8 384 7/17/2023
4.0.7 264 7/17/2023
4.0.6 654 1/30/2023
4.0.5 506 1/30/2023
4.0.4 500 1/27/2023
4.0.3 617 12/13/2022
4.0.0 409 12/12/2022
3.0.47 1,644 6/10/2022
3.0.45 1,109 4/20/2022
3.0.44 1,144 1/11/2022
3.0.43 753 1/10/2022
3.0.42 1,227 6/17/2021
3.0.41 891 6/16/2021
3.0.40 839 6/16/2021
3.0.39 637 6/16/2021
3.0.38 1,151 1/7/2021
3.0.37 967 12/16/2020
3.0.36 899 12/14/2020
3.0.35 2,491 9/13/2020
3.0.34 1,025 6/19/2020
3.0.33 2,025 5/12/2020
3.0.32 1,552 5/12/2020
3.0.31 1,025 4/28/2020
3.0.30 971 4/24/2020
3.0.29 952 4/16/2020
3.0.28 1,033 4/16/2020
3.0.27 682 4/15/2020
3.0.26 997 4/15/2020
3.0.25 1,045 4/14/2020
3.0.24 743 4/14/2020
3.0.23 1,088 4/10/2020
3.0.22 1,028 4/10/2020
3.0.21 1,064 4/7/2020
3.0.20 2,914 3/26/2020
3.0.19 1,056 3/26/2020
3.0.18 727 3/25/2020
3.0.17 715 3/25/2020
3.0.16 747 3/25/2020
3.0.15 729 3/25/2020
3.0.13 737 3/25/2020
3.0.12 746 3/25/2020
3.0.11 716 3/25/2020
3.0.10 1,272 3/25/2020
3.0.9 1,103 3/22/2020
3.0.8 701 3/22/2020
3.0.7 1,083 3/21/2020
3.0.6 1,727 3/13/2020
3.0.5 764 3/13/2020
3.0.4 1,480 2/28/2020
3.0.3 1,316 2/21/2020
3.0.2 769 2/11/2020
3.0.1 743 2/11/2020
3.0.0 1,941 12/23/2019
2.0.13 785 11/4/2019
2.0.12 838 6/19/2019
2.0.11 816 6/19/2019
2.0.10 1,114 4/17/2019
2.0.9 1,688 2/21/2019
2.0.8 4,169 8/1/2018
2.0.7 1,475 8/1/2018
2.0.6 2,001 6/26/2018
2.0.5 1,355 6/14/2018
2.0.4 1,976 6/1/2018
2.0.3 1,916 5/22/2018
2.0.2 2,496 5/11/2018
2.0.1 2,573 2/13/2018
2.0.0 2,486 1/2/2018
1.0.29 4,123 11/16/2017
1.0.28 1,197 11/16/2017
1.0.27 6,678 10/18/2017
1.0.26 4,849 9/22/2017
1.0.24 1,272 9/22/2017
1.0.23 1,617 9/22/2017
1.0.22 1,277 9/22/2017
1.0.21 1,303 9/22/2017
1.0.19 1,278 9/22/2017
1.0.18 1,277 9/21/2017
1.0.17 2,329 8/4/2017
1.0.16 1,290 7/3/2017
1.0.15 1,310 6/16/2017
1.0.13 1,312 6/16/2017
1.0.12 1,295 6/16/2017
1.0.11 1,306 5/30/2017
1.0.9 1,296 5/25/2017
1.0.8 1,270 5/24/2017
1.0.7 1,304 5/19/2017
1.0.6 1,342 5/17/2017
1.0.4 1,418 4/3/2017
1.0.3 1,421 3/22/2017
1.0.2 1,412 2/2/2017