Data.Modeler 5.0.84

There is a newer version of this package available.
See the version list below for details.
dotnet add package Data.Modeler --version 5.0.84
                    
NuGet\Install-Package Data.Modeler -Version 5.0.84
                    
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.84" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Data.Modeler" Version="5.0.84" />
                    
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.84
                    
#r "nuget: Data.Modeler, 5.0.84"
                    
#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.84
                    
#: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.84
                    
Install as a Cake Addin
#tool nuget:?package=Data.Modeler&version=5.0.84
                    
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.85 195 11/6/2025
5.0.84 171 10/31/2025
5.0.83 286 10/17/2025
5.0.82 200 10/16/2025
5.0.81 202 10/15/2025
5.0.80 236 10/14/2025
5.0.79 212 10/13/2025
5.0.78 244 10/12/2025
5.0.77 276 9/30/2025
5.0.76 204 9/29/2025
5.0.75 178 9/29/2025
5.0.72 438 9/18/2025
5.0.71 304 9/18/2025
5.0.70 348 9/17/2025
5.0.69 337 9/16/2025
5.0.68 210 9/11/2025
5.0.67 199 9/10/2025
5.0.66 213 9/9/2025
5.0.65 369 8/20/2025
5.0.64 178 8/20/2025
5.0.63 184 8/20/2025
5.0.62 165 8/19/2025
5.0.61 178 8/19/2025
5.0.60 215 8/19/2025
5.0.59 192 8/15/2025
5.0.58 348 8/6/2025
5.0.57 292 8/5/2025
5.0.56 261 8/5/2025
5.0.55 253 8/5/2025
5.0.54 299 8/5/2025
5.0.53 227 8/5/2025
5.0.52 133 8/1/2025
5.0.51 232 7/28/2025
5.0.50 234 7/17/2025
5.0.49 179 7/17/2025
5.0.48 274 7/15/2025
5.0.47 178 7/14/2025
5.0.46 188 7/14/2025
5.0.45 230 7/8/2025
5.0.44 568 6/30/2025
5.0.43 185 6/30/2025
5.0.42 185 6/30/2025
5.0.41 215 6/27/2025
5.0.40 240 6/27/2025
5.0.39 177 6/27/2025
5.0.38 182 6/27/2025
5.0.37 169 6/27/2025
5.0.36 223 6/26/2025
5.0.35 202 6/18/2025
5.0.34 368 6/10/2025
5.0.33 155 5/30/2025
5.0.32 173 5/23/2025
5.0.31 306 5/14/2025
5.0.30 160 5/2/2025
5.0.29 223 4/28/2025
5.0.28 202 4/11/2025
5.0.27 226 3/17/2025
5.0.26 183 2/24/2025
5.0.25 206 2/12/2025
5.0.24 326 2/3/2025
5.0.23 226 1/30/2025
5.0.22 203 1/29/2025
5.0.21 169 1/29/2025
5.0.20 180 1/28/2025
5.0.19 205 1/24/2025
5.0.18 192 1/23/2025
5.0.17 163 1/23/2025
5.0.16 232 1/16/2025
5.0.15 178 1/15/2025
5.0.14 196 1/14/2025
5.0.13 174 1/13/2025
5.0.12 192 1/10/2025
5.0.11 190 1/9/2025
5.0.10 152 1/8/2025
5.0.9 244 12/17/2024
5.0.8 201 12/17/2024
5.0.7 238 12/10/2024
5.0.6 193 12/9/2024
5.0.5 280 11/26/2024
5.0.4 246 11/26/2024
5.0.3 180 11/25/2024
5.0.2 238 11/24/2024
5.0.1 184 11/23/2024
5.0.0 175 11/23/2024
4.0.268 212 11/19/2024
4.0.267 178 11/11/2024
4.0.266 177 11/6/2024
4.0.265 176 11/5/2024
4.0.264 173 11/4/2024
4.0.263 209 11/1/2024
4.0.262 176 10/31/2024
4.0.261 184 10/30/2024
4.0.260 178 10/29/2024
4.0.259 182 10/29/2024
4.0.258 199 10/25/2024
4.0.257 174 10/24/2024
4.0.256 196 10/21/2024
4.0.255 189 10/16/2024
4.0.254 181 10/15/2024
4.0.253 197 10/11/2024
4.0.252 177 10/10/2024
4.0.251 173 10/9/2024
4.0.250 169 10/8/2024
4.0.249 200 10/2/2024
4.0.248 205 10/1/2024
4.0.247 178 9/30/2024
4.0.246 206 9/27/2024
4.0.245 178 9/24/2024
4.0.244 180 9/23/2024
4.0.243 173 9/23/2024
4.0.242 239 9/17/2024
4.0.241 227 9/10/2024
4.0.240 188 9/9/2024
4.0.239 205 9/6/2024
4.0.238 212 9/5/2024
4.0.237 185 9/3/2024
4.0.236 190 9/2/2024
4.0.235 194 8/30/2024
4.0.234 196 8/29/2024
4.0.233 217 8/28/2024
4.0.232 203 8/27/2024
4.0.231 192 8/26/2024
4.0.230 210 8/23/2024
4.0.229 207 8/22/2024
4.0.228 197 8/21/2024
4.0.227 209 8/20/2024
4.0.226 196 8/20/2024
4.0.225 228 8/19/2024
4.0.224 238 8/16/2024
4.0.223 220 8/15/2024
4.0.222 241 8/14/2024
4.0.221 184 8/5/2024
4.0.220 177 8/2/2024
4.0.219 221 8/1/2024
4.0.218 168 7/31/2024
4.0.217 210 7/26/2024
4.0.216 182 7/25/2024
4.0.215 144 7/24/2024
4.0.214 192 7/11/2024
4.0.213 170 7/10/2024
4.0.212 174 7/9/2024
4.0.211 196 7/9/2024
4.0.210 181 7/8/2024
4.0.209 187 7/5/2024
4.0.208 209 7/5/2024
4.0.207 183 7/2/2024
4.0.206 183 7/1/2024
4.0.205 225 6/27/2024
4.0.204 224 6/26/2024
4.0.203 196 6/25/2024
4.0.202 219 6/24/2024
4.0.201 1,307 6/19/2024
4.0.200 229 6/18/2024
4.0.199 180 6/17/2024
4.0.198 187 6/14/2024
4.0.197 181 6/13/2024
4.0.196 204 6/12/2024
4.0.195 200 6/3/2024
4.0.194 190 5/31/2024
4.0.193 230 5/30/2024
4.0.192 199 5/29/2024
4.0.191 215 5/27/2024
4.0.190 199 5/27/2024
4.0.189 183 5/23/2024
4.0.188 189 5/22/2024
4.0.187 224 5/21/2024
4.0.186 219 5/20/2024
4.0.185 195 5/17/2024
4.0.184 189 5/16/2024
4.0.183 205 5/15/2024
4.0.182 203 5/8/2024
4.0.181 189 5/7/2024
4.0.180 207 5/6/2024
4.0.179 222 5/3/2024
4.0.178 937 5/2/2024
4.0.177 158 5/1/2024
4.0.176 210 4/30/2024
4.0.175 192 4/29/2024
4.0.174 191 4/29/2024
4.0.173 228 4/25/2024
4.0.172 217 4/24/2024
4.0.171 227 4/16/2024
4.0.170 201 4/15/2024
4.0.169 214 4/12/2024
4.0.168 214 4/12/2024
4.0.167 223 4/11/2024
4.0.166 238 4/10/2024
4.0.165 203 4/9/2024
4.0.164 207 4/8/2024
4.0.163 206 4/1/2024
4.0.162 183 3/29/2024
4.0.161 221 3/28/2024
4.0.160 199 3/26/2024
4.0.159 215 3/23/2024
4.0.158 221 3/22/2024
4.0.157 219 3/21/2024
4.0.156 202 3/18/2024
4.0.155 219 3/15/2024
4.0.154 208 3/14/2024
4.0.153 214 3/13/2024
4.0.152 253 3/11/2024
4.0.151 224 3/8/2024
4.0.150 211 3/7/2024
4.0.149 201 3/6/2024
4.0.148 208 3/5/2024
4.0.147 1,314 3/4/2024
4.0.146 223 3/1/2024
4.0.145 235 2/29/2024
4.0.144 233 2/28/2024
4.0.143 240 2/27/2024
4.0.142 236 2/26/2024
4.0.141 233 2/23/2024
4.0.140 247 2/22/2024
4.0.139 220 2/21/2024
4.0.138 243 2/20/2024
4.0.137 574 2/19/2024
4.0.136 195 2/19/2024
4.0.135 205 2/16/2024
4.0.134 218 2/16/2024
4.0.133 188 2/15/2024
4.0.132 215 2/14/2024
4.0.131 184 2/13/2024
4.0.130 222 2/12/2024
4.0.129 198 2/9/2024
4.0.128 255 2/8/2024
4.0.127 216 2/7/2024
4.0.126 233 2/6/2024
4.0.125 170 2/6/2024
4.0.124 192 2/5/2024
4.0.123 725 2/2/2024
4.0.122 237 2/1/2024
4.0.121 190 2/1/2024
4.0.120 239 1/31/2024
4.0.119 318 1/30/2024
4.0.118 244 1/29/2024
4.0.117 251 1/26/2024
4.0.116 210 1/24/2024
4.0.115 188 1/23/2024
4.0.114 199 1/22/2024
4.0.113 488 1/16/2024
4.0.112 262 1/15/2024
4.0.111 218 1/15/2024
4.0.110 223 1/12/2024
4.0.109 214 1/11/2024
4.0.108 190 1/10/2024
4.0.107 455 1/8/2024
4.0.106 287 1/5/2024
4.0.105 423 12/26/2023
4.0.104 246 12/26/2023
4.0.103 246 12/25/2023
4.0.102 235 12/25/2023
4.0.101 345 12/22/2023
4.0.100 275 12/21/2023
4.0.99 259 12/15/2023
4.0.98 238 12/14/2023
4.0.97 220 12/13/2023
4.0.96 241 12/13/2023
4.0.95 427 12/12/2023
4.0.94 240 12/12/2023
4.0.93 222 12/11/2023
4.0.92 217 12/11/2023
4.0.91 278 12/6/2023
4.0.90 212 12/6/2023
4.0.89 210 12/5/2023
4.0.88 273 12/4/2023
4.0.87 288 11/24/2023
4.0.86 215 11/23/2023
4.0.85 236 11/21/2023
4.0.84 248 11/20/2023
4.0.83 222 11/20/2023
4.0.82 292 11/17/2023
4.0.81 712 11/16/2023
4.0.80 237 11/15/2023
4.0.79 231 11/13/2023
4.0.78 272 11/9/2023
4.0.77 263 11/8/2023
4.0.76 191 11/8/2023
4.0.75 237 11/7/2023
4.0.74 225 11/6/2023
4.0.73 219 11/3/2023
4.0.72 297 11/2/2023
4.0.71 222 11/1/2023
4.0.70 214 11/1/2023
4.0.69 283 10/31/2023
4.0.68 262 10/30/2023
4.0.67 234 10/27/2023
4.0.66 273 10/26/2023
4.0.65 257 10/25/2023
4.0.64 221 10/17/2023
4.0.63 191 10/17/2023
4.0.62 268 10/16/2023
4.0.61 252 10/13/2023
4.0.60 306 10/12/2023
4.0.59 226 10/11/2023
4.0.58 267 10/5/2023
4.0.57 245 10/4/2023
4.0.56 225 9/26/2023
4.0.55 255 9/25/2023
4.0.54 273 9/22/2023
4.0.53 267 9/20/2023
4.0.52 262 9/19/2023
4.0.51 241 9/18/2023
4.0.50 233 9/18/2023
4.0.49 297 9/14/2023
4.0.48 276 9/13/2023
4.0.47 225 9/12/2023
4.0.46 311 9/11/2023
4.0.45 219 9/11/2023
4.0.44 209 9/11/2023
4.0.43 393 9/7/2023
4.0.42 233 9/6/2023
4.0.41 304 9/5/2023
4.0.40 237 9/4/2023
4.0.39 254 9/4/2023
4.0.38 304 9/1/2023
4.0.37 304 8/31/2023
4.0.36 300 8/30/2023
4.0.35 316 8/29/2023
4.0.34 233 8/29/2023
4.0.33 343 8/28/2023
4.0.32 328 8/25/2023
4.0.31 290 8/24/2023
4.0.30 271 8/23/2023
4.0.29 288 8/22/2023
4.0.28 284 8/18/2023
4.0.27 300 8/17/2023
4.0.26 269 8/17/2023
4.0.25 254 8/16/2023
4.0.24 367 8/10/2023
4.0.23 293 8/9/2023
4.0.22 322 8/8/2023
4.0.21 276 8/8/2023
4.0.20 398 8/7/2023
4.0.19 290 8/4/2023
4.0.18 350 8/3/2023
4.0.17 331 8/2/2023
4.0.16 333 7/26/2023
4.0.15 287 7/25/2023
4.0.14 315 7/20/2023
4.0.13 335 7/19/2023
4.0.12 310 7/18/2023
4.0.11 227 7/18/2023
4.0.10 300 7/18/2023
4.0.9 254 7/18/2023
4.0.8 409 7/17/2023
4.0.7 280 7/17/2023
4.0.6 676 1/30/2023
4.0.5 530 1/30/2023
4.0.4 516 1/27/2023
4.0.3 646 12/13/2022
4.0.0 418 12/12/2022
3.0.47 1,680 6/10/2022
3.0.45 1,140 4/20/2022
3.0.44 1,174 1/11/2022
3.0.43 792 1/10/2022
3.0.42 1,265 6/17/2021
3.0.41 919 6/16/2021
3.0.40 867 6/16/2021
3.0.39 660 6/16/2021
3.0.38 1,190 1/7/2021
3.0.37 1,000 12/16/2020
3.0.36 916 12/14/2020
3.0.35 2,584 9/13/2020
3.0.34 1,060 6/19/2020
3.0.33 2,072 5/12/2020
3.0.32 1,608 5/12/2020
3.0.31 1,052 4/28/2020
3.0.30 1,003 4/24/2020
3.0.29 986 4/16/2020
3.0.28 1,062 4/16/2020
3.0.27 703 4/15/2020
3.0.26 1,016 4/15/2020
3.0.25 1,064 4/14/2020
3.0.24 762 4/14/2020
3.0.23 1,124 4/10/2020
3.0.22 1,053 4/10/2020
3.0.21 1,097 4/7/2020
3.0.20 2,949 3/26/2020
3.0.19 1,083 3/26/2020
3.0.18 754 3/25/2020
3.0.17 747 3/25/2020
3.0.16 770 3/25/2020
3.0.15 746 3/25/2020
3.0.13 759 3/25/2020
3.0.12 765 3/25/2020
3.0.11 735 3/25/2020
3.0.10 1,308 3/25/2020
3.0.9 1,132 3/22/2020
3.0.8 724 3/22/2020
3.0.7 1,123 3/21/2020
3.0.6 1,754 3/13/2020
3.0.5 788 3/13/2020
3.0.4 1,526 2/28/2020
3.0.3 1,334 2/21/2020
3.0.2 784 2/11/2020
3.0.1 762 2/11/2020
3.0.0 1,971 12/23/2019
2.0.13 809 11/4/2019
2.0.12 865 6/19/2019
2.0.11 834 6/19/2019
2.0.10 1,147 4/17/2019
2.0.9 1,714 2/21/2019
2.0.8 4,278 8/1/2018
2.0.7 1,511 8/1/2018
2.0.6 2,052 6/26/2018
2.0.5 1,405 6/14/2018
2.0.4 2,037 6/1/2018
2.0.3 1,988 5/22/2018
2.0.2 2,559 5/11/2018
2.0.1 2,624 2/13/2018
2.0.0 2,574 1/2/2018
1.0.29 4,233 11/16/2017
1.0.28 1,235 11/16/2017
1.0.27 6,785 10/18/2017
1.0.26 4,985 9/22/2017
1.0.24 1,319 9/22/2017
1.0.23 1,657 9/22/2017
1.0.22 1,312 9/22/2017
1.0.21 1,349 9/22/2017
1.0.19 1,322 9/22/2017
1.0.18 1,318 9/21/2017
1.0.17 2,380 8/4/2017
1.0.16 1,335 7/3/2017
1.0.15 1,353 6/16/2017
1.0.13 1,356 6/16/2017
1.0.12 1,329 6/16/2017
1.0.11 1,340 5/30/2017
1.0.9 1,328 5/25/2017
1.0.8 1,303 5/24/2017
1.0.7 1,336 5/19/2017
1.0.6 1,377 5/17/2017
1.0.4 1,451 4/3/2017
1.0.3 1,466 3/22/2017
1.0.2 1,454 2/2/2017