Data.Modeler 5.0.88

There is a newer version of this package available.
See the version list below for details.
dotnet add package Data.Modeler --version 5.0.88
                    
NuGet\Install-Package Data.Modeler -Version 5.0.88
                    
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.88" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Data.Modeler" Version="5.0.88" />
                    
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.88
                    
#r "nuget: Data.Modeler, 5.0.88"
                    
#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.88
                    
#: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.88
                    
Install as a Cake Addin
#tool nuget:?package=Data.Modeler&version=5.0.88
                    
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.91 469 11/18/2025
5.0.90 218 11/14/2025
5.0.89 206 11/14/2025
5.0.88 314 11/13/2025
5.0.87 297 11/13/2025
5.0.86 297 11/13/2025
5.0.85 233 11/6/2025
5.0.84 194 10/31/2025
5.0.83 297 10/17/2025
5.0.82 207 10/16/2025
5.0.81 209 10/15/2025
5.0.80 244 10/14/2025
5.0.79 219 10/13/2025
5.0.78 254 10/12/2025
5.0.77 282 9/30/2025
5.0.76 210 9/29/2025
5.0.75 183 9/29/2025
5.0.72 443 9/18/2025
5.0.71 310 9/18/2025
5.0.70 356 9/17/2025
5.0.69 343 9/16/2025
5.0.68 215 9/11/2025
5.0.67 205 9/10/2025
5.0.66 220 9/9/2025
5.0.65 376 8/20/2025
5.0.64 187 8/20/2025
5.0.63 193 8/20/2025
5.0.62 170 8/19/2025
5.0.61 185 8/19/2025
5.0.60 220 8/19/2025
5.0.59 201 8/15/2025
5.0.58 354 8/6/2025
5.0.57 297 8/5/2025
5.0.56 270 8/5/2025
5.0.55 261 8/5/2025
5.0.54 307 8/5/2025
5.0.53 235 8/5/2025
5.0.52 139 8/1/2025
5.0.51 255 7/28/2025
5.0.50 240 7/17/2025
5.0.49 191 7/17/2025
5.0.48 289 7/15/2025
5.0.47 184 7/14/2025
5.0.46 197 7/14/2025
5.0.45 238 7/8/2025
5.0.44 580 6/30/2025
5.0.43 191 6/30/2025
5.0.42 193 6/30/2025
5.0.41 222 6/27/2025
5.0.40 246 6/27/2025
5.0.39 185 6/27/2025
5.0.38 186 6/27/2025
5.0.37 179 6/27/2025
5.0.36 229 6/26/2025
5.0.35 210 6/18/2025
5.0.34 376 6/10/2025
5.0.33 163 5/30/2025
5.0.32 180 5/23/2025
5.0.31 313 5/14/2025
5.0.30 165 5/2/2025
5.0.29 229 4/28/2025
5.0.28 209 4/11/2025
5.0.27 232 3/17/2025
5.0.26 189 2/24/2025
5.0.25 213 2/12/2025
5.0.24 332 2/3/2025
5.0.23 231 1/30/2025
5.0.22 208 1/29/2025
5.0.21 177 1/29/2025
5.0.20 187 1/28/2025
5.0.19 213 1/24/2025
5.0.18 198 1/23/2025
5.0.17 169 1/23/2025
5.0.16 238 1/16/2025
5.0.15 183 1/15/2025
5.0.14 202 1/14/2025
5.0.13 179 1/13/2025
5.0.12 197 1/10/2025
5.0.11 196 1/9/2025
5.0.10 156 1/8/2025
5.0.9 249 12/17/2024
5.0.8 206 12/17/2024
5.0.7 242 12/10/2024
5.0.6 200 12/9/2024
5.0.5 284 11/26/2024
5.0.4 250 11/26/2024
5.0.3 185 11/25/2024
5.0.2 245 11/24/2024
5.0.1 190 11/23/2024
5.0.0 179 11/23/2024
4.0.268 215 11/19/2024
4.0.267 183 11/11/2024
4.0.266 181 11/6/2024
4.0.265 184 11/5/2024
4.0.264 178 11/4/2024
4.0.263 217 11/1/2024
4.0.262 181 10/31/2024
4.0.261 193 10/30/2024
4.0.260 184 10/29/2024
4.0.259 190 10/29/2024
4.0.258 205 10/25/2024
4.0.257 180 10/24/2024
4.0.256 203 10/21/2024
4.0.255 193 10/16/2024
4.0.254 186 10/15/2024
4.0.253 202 10/11/2024
4.0.252 183 10/10/2024
4.0.251 177 10/9/2024
4.0.250 172 10/8/2024
4.0.249 204 10/2/2024
4.0.248 211 10/1/2024
4.0.247 184 9/30/2024
4.0.246 212 9/27/2024
4.0.245 183 9/24/2024
4.0.244 186 9/23/2024
4.0.243 179 9/23/2024
4.0.242 244 9/17/2024
4.0.241 234 9/10/2024
4.0.240 194 9/9/2024
4.0.239 211 9/6/2024
4.0.238 217 9/5/2024
4.0.237 191 9/3/2024
4.0.236 195 9/2/2024
4.0.235 200 8/30/2024
4.0.234 202 8/29/2024
4.0.233 222 8/28/2024
4.0.232 210 8/27/2024
4.0.231 199 8/26/2024
4.0.230 214 8/23/2024
4.0.229 214 8/22/2024
4.0.228 202 8/21/2024
4.0.227 215 8/20/2024
4.0.226 200 8/20/2024
4.0.225 235 8/19/2024
4.0.224 244 8/16/2024
4.0.223 225 8/15/2024
4.0.222 245 8/14/2024
4.0.221 187 8/5/2024
4.0.220 182 8/2/2024
4.0.219 227 8/1/2024
4.0.218 171 7/31/2024
4.0.217 214 7/26/2024
4.0.216 187 7/25/2024
4.0.215 150 7/24/2024
4.0.214 197 7/11/2024
4.0.213 174 7/10/2024
4.0.212 179 7/9/2024
4.0.211 201 7/9/2024
4.0.210 186 7/8/2024
4.0.209 192 7/5/2024
4.0.208 215 7/5/2024
4.0.207 188 7/2/2024
4.0.206 188 7/1/2024
4.0.205 229 6/27/2024
4.0.204 230 6/26/2024
4.0.203 203 6/25/2024
4.0.202 222 6/24/2024
4.0.201 1,313 6/19/2024
4.0.200 236 6/18/2024
4.0.199 186 6/17/2024
4.0.198 192 6/14/2024
4.0.197 187 6/13/2024
4.0.196 212 6/12/2024
4.0.195 205 6/3/2024
4.0.194 194 5/31/2024
4.0.193 236 5/30/2024
4.0.192 204 5/29/2024
4.0.191 221 5/27/2024
4.0.190 208 5/27/2024
4.0.189 188 5/23/2024
4.0.188 195 5/22/2024
4.0.187 230 5/21/2024
4.0.186 223 5/20/2024
4.0.185 199 5/17/2024
4.0.184 192 5/16/2024
4.0.183 211 5/15/2024
4.0.182 208 5/8/2024
4.0.181 192 5/7/2024
4.0.180 215 5/6/2024
4.0.179 226 5/3/2024
4.0.178 943 5/2/2024
4.0.177 165 5/1/2024
4.0.176 215 4/30/2024
4.0.175 199 4/29/2024
4.0.174 196 4/29/2024
4.0.173 233 4/25/2024
4.0.172 222 4/24/2024
4.0.171 231 4/16/2024
4.0.170 206 4/15/2024
4.0.169 220 4/12/2024
4.0.168 220 4/12/2024
4.0.167 229 4/11/2024
4.0.166 245 4/10/2024
4.0.165 207 4/9/2024
4.0.164 210 4/8/2024
4.0.163 211 4/1/2024
4.0.162 189 3/29/2024
4.0.161 226 3/28/2024
4.0.160 205 3/26/2024
4.0.159 222 3/23/2024
4.0.158 228 3/22/2024
4.0.157 227 3/21/2024
4.0.156 207 3/18/2024
4.0.155 226 3/15/2024
4.0.154 211 3/14/2024
4.0.153 220 3/13/2024
4.0.152 256 3/11/2024
4.0.151 228 3/8/2024
4.0.150 216 3/7/2024
4.0.149 205 3/6/2024
4.0.148 211 3/5/2024
4.0.147 1,318 3/4/2024
4.0.146 229 3/1/2024
4.0.145 240 2/29/2024
4.0.144 238 2/28/2024
4.0.143 243 2/27/2024
4.0.142 240 2/26/2024
4.0.141 238 2/23/2024
4.0.140 253 2/22/2024
4.0.139 228 2/21/2024
4.0.138 246 2/20/2024
4.0.137 580 2/19/2024
4.0.136 200 2/19/2024
4.0.135 210 2/16/2024
4.0.134 222 2/16/2024
4.0.133 192 2/15/2024
4.0.132 220 2/14/2024
4.0.131 187 2/13/2024
4.0.130 227 2/12/2024
4.0.129 204 2/9/2024
4.0.128 261 2/8/2024
4.0.127 219 2/7/2024
4.0.126 238 2/6/2024
4.0.125 177 2/6/2024
4.0.124 197 2/5/2024
4.0.123 729 2/2/2024
4.0.122 243 2/1/2024
4.0.121 194 2/1/2024
4.0.120 245 1/31/2024
4.0.119 323 1/30/2024
4.0.118 250 1/29/2024
4.0.117 257 1/26/2024
4.0.116 217 1/24/2024
4.0.115 193 1/23/2024
4.0.114 203 1/22/2024
4.0.113 494 1/16/2024
4.0.112 267 1/15/2024
4.0.111 223 1/15/2024
4.0.110 226 1/12/2024
4.0.109 222 1/11/2024
4.0.108 198 1/10/2024
4.0.107 458 1/8/2024
4.0.106 292 1/5/2024
4.0.105 428 12/26/2023
4.0.104 249 12/26/2023
4.0.103 250 12/25/2023
4.0.102 240 12/25/2023
4.0.101 350 12/22/2023
4.0.100 283 12/21/2023
4.0.99 267 12/15/2023
4.0.98 243 12/14/2023
4.0.97 224 12/13/2023
4.0.96 245 12/13/2023
4.0.95 432 12/12/2023
4.0.94 246 12/12/2023
4.0.93 229 12/11/2023
4.0.92 224 12/11/2023
4.0.91 282 12/6/2023
4.0.90 213 12/6/2023
4.0.89 213 12/5/2023
4.0.88 276 12/4/2023
4.0.87 293 11/24/2023
4.0.86 217 11/23/2023
4.0.85 239 11/21/2023
4.0.84 253 11/20/2023
4.0.83 224 11/20/2023
4.0.82 294 11/17/2023
4.0.81 715 11/16/2023
4.0.80 241 11/15/2023
4.0.79 234 11/13/2023
4.0.78 275 11/9/2023
4.0.77 265 11/8/2023
4.0.76 193 11/8/2023
4.0.75 239 11/7/2023
4.0.74 235 11/6/2023
4.0.73 222 11/3/2023
4.0.72 298 11/2/2023
4.0.71 226 11/1/2023
4.0.70 221 11/1/2023
4.0.69 287 10/31/2023
4.0.68 263 10/30/2023
4.0.67 237 10/27/2023
4.0.66 278 10/26/2023
4.0.65 258 10/25/2023
4.0.64 224 10/17/2023
4.0.63 193 10/17/2023
4.0.62 273 10/16/2023
4.0.61 257 10/13/2023
4.0.60 311 10/12/2023
4.0.59 229 10/11/2023
4.0.58 271 10/5/2023
4.0.57 249 10/4/2023
4.0.56 228 9/26/2023
4.0.55 259 9/25/2023
4.0.54 275 9/22/2023
4.0.53 270 9/20/2023
4.0.52 264 9/19/2023
4.0.51 243 9/18/2023
4.0.50 237 9/18/2023
4.0.49 300 9/14/2023
4.0.48 281 9/13/2023
4.0.47 229 9/12/2023
4.0.46 314 9/11/2023
4.0.45 224 9/11/2023
4.0.44 211 9/11/2023
4.0.43 397 9/7/2023
4.0.42 236 9/6/2023
4.0.41 307 9/5/2023
4.0.40 239 9/4/2023
4.0.39 256 9/4/2023
4.0.38 309 9/1/2023
4.0.37 307 8/31/2023
4.0.36 304 8/30/2023
4.0.35 320 8/29/2023
4.0.34 238 8/29/2023
4.0.33 348 8/28/2023
4.0.32 332 8/25/2023
4.0.31 291 8/24/2023
4.0.30 274 8/23/2023
4.0.29 290 8/22/2023
4.0.28 286 8/18/2023
4.0.27 303 8/17/2023
4.0.26 275 8/17/2023
4.0.25 258 8/16/2023
4.0.24 369 8/10/2023
4.0.23 301 8/9/2023
4.0.22 328 8/8/2023
4.0.21 279 8/8/2023
4.0.20 401 8/7/2023
4.0.19 293 8/4/2023
4.0.18 355 8/3/2023
4.0.17 338 8/2/2023
4.0.16 338 7/26/2023
4.0.15 291 7/25/2023
4.0.14 318 7/20/2023
4.0.13 338 7/19/2023
4.0.12 313 7/18/2023
4.0.11 230 7/18/2023
4.0.10 304 7/18/2023
4.0.9 255 7/18/2023
4.0.8 410 7/17/2023
4.0.7 286 7/17/2023
4.0.6 678 1/30/2023
4.0.5 536 1/30/2023
4.0.4 523 1/27/2023
4.0.3 651 12/13/2022
4.0.0 424 12/12/2022
3.0.47 1,684 6/10/2022
3.0.45 1,143 4/20/2022
3.0.44 1,179 1/11/2022
3.0.43 802 1/10/2022
3.0.42 1,273 6/17/2021
3.0.41 926 6/16/2021
3.0.40 875 6/16/2021
3.0.39 668 6/16/2021
3.0.38 1,199 1/7/2021
3.0.37 1,012 12/16/2020
3.0.36 925 12/14/2020
3.0.35 2,595 9/13/2020
3.0.34 1,070 6/19/2020
3.0.33 2,084 5/12/2020
3.0.32 1,617 5/12/2020
3.0.31 1,060 4/28/2020
3.0.30 1,012 4/24/2020
3.0.29 995 4/16/2020
3.0.28 1,074 4/16/2020
3.0.27 714 4/15/2020
3.0.26 1,026 4/15/2020
3.0.25 1,075 4/14/2020
3.0.24 775 4/14/2020
3.0.23 1,131 4/10/2020
3.0.22 1,066 4/10/2020
3.0.21 1,107 4/7/2020
3.0.20 2,960 3/26/2020
3.0.19 1,094 3/26/2020
3.0.18 764 3/25/2020
3.0.17 757 3/25/2020
3.0.16 778 3/25/2020
3.0.15 755 3/25/2020
3.0.13 770 3/25/2020
3.0.12 775 3/25/2020
3.0.11 744 3/25/2020
3.0.10 1,317 3/25/2020
3.0.9 1,141 3/22/2020
3.0.8 733 3/22/2020
3.0.7 1,135 3/21/2020
3.0.6 1,764 3/13/2020
3.0.5 798 3/13/2020
3.0.4 1,536 2/28/2020
3.0.3 1,343 2/21/2020
3.0.2 793 2/11/2020
3.0.1 771 2/11/2020
3.0.0 1,983 12/23/2019
2.0.13 819 11/4/2019
2.0.12 875 6/19/2019
2.0.11 843 6/19/2019
2.0.10 1,158 4/17/2019
2.0.9 1,724 2/21/2019
2.0.8 4,296 8/1/2018
2.0.7 1,529 8/1/2018
2.0.6 2,081 6/26/2018
2.0.5 1,431 6/14/2018
2.0.4 2,064 6/1/2018
2.0.3 2,013 5/22/2018
2.0.2 2,589 5/11/2018
2.0.1 2,651 2/13/2018
2.0.0 2,602 1/2/2018
1.0.29 4,252 11/16/2017
1.0.28 1,255 11/16/2017
1.0.27 6,803 10/18/2017
1.0.26 5,003 9/22/2017
1.0.24 1,337 9/22/2017
1.0.23 1,674 9/22/2017
1.0.22 1,332 9/22/2017
1.0.21 1,367 9/22/2017
1.0.19 1,339 9/22/2017
1.0.18 1,334 9/21/2017
1.0.17 2,398 8/4/2017
1.0.16 1,353 7/3/2017
1.0.15 1,371 6/16/2017
1.0.13 1,374 6/16/2017
1.0.12 1,350 6/16/2017
1.0.11 1,360 5/30/2017
1.0.9 1,350 5/25/2017
1.0.8 1,323 5/24/2017
1.0.7 1,353 5/19/2017
1.0.6 1,395 5/17/2017
1.0.4 1,470 4/3/2017
1.0.3 1,485 3/22/2017
1.0.2 1,474 2/2/2017