Data.Modeler 4.0.17

There is a newer version of this package available.
See the version list below for details.
dotnet add package Data.Modeler --version 4.0.17
                    
NuGet\Install-Package Data.Modeler -Version 4.0.17
                    
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="4.0.17" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Data.Modeler" Version="4.0.17" />
                    
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 4.0.17
                    
#r "nuget: Data.Modeler, 4.0.17"
                    
#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@4.0.17
                    
#: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=4.0.17
                    
Install as a Cake Addin
#tool nuget:?package=Data.Modeler&version=4.0.17
                    
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 net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.90 120 11/14/2025
5.0.89 139 11/14/2025
5.0.88 212 11/13/2025
5.0.87 221 11/13/2025
5.0.86 222 11/13/2025
5.0.85 223 11/6/2025
5.0.84 186 10/31/2025
5.0.83 291 10/17/2025
5.0.82 202 10/16/2025
5.0.81 204 10/15/2025
5.0.80 237 10/14/2025
5.0.79 213 10/13/2025
5.0.78 248 10/12/2025
5.0.77 278 9/30/2025
5.0.76 205 9/29/2025
5.0.75 179 9/29/2025
5.0.72 439 9/18/2025
5.0.71 306 9/18/2025
5.0.70 350 9/17/2025
5.0.69 340 9/16/2025
5.0.68 211 9/11/2025
5.0.67 201 9/10/2025
5.0.66 214 9/9/2025
5.0.65 371 8/20/2025
5.0.64 180 8/20/2025
5.0.63 186 8/20/2025
5.0.62 166 8/19/2025
5.0.61 181 8/19/2025
5.0.60 217 8/19/2025
5.0.59 194 8/15/2025
5.0.58 350 8/6/2025
5.0.57 294 8/5/2025
5.0.56 264 8/5/2025
5.0.55 255 8/5/2025
5.0.54 303 8/5/2025
5.0.53 230 8/5/2025
5.0.52 134 8/1/2025
5.0.51 240 7/28/2025
5.0.50 235 7/17/2025
5.0.49 181 7/17/2025
5.0.48 279 7/15/2025
5.0.47 180 7/14/2025
5.0.46 192 7/14/2025
5.0.45 232 7/8/2025
5.0.44 574 6/30/2025
5.0.43 187 6/30/2025
5.0.42 187 6/30/2025
5.0.41 216 6/27/2025
5.0.40 242 6/27/2025
5.0.39 181 6/27/2025
5.0.38 183 6/27/2025
5.0.37 173 6/27/2025
5.0.36 225 6/26/2025
5.0.35 203 6/18/2025
5.0.34 370 6/10/2025
5.0.33 156 5/30/2025
5.0.32 175 5/23/2025
5.0.31 309 5/14/2025
5.0.30 161 5/2/2025
5.0.29 225 4/28/2025
5.0.28 207 4/11/2025
5.0.27 227 3/17/2025
5.0.26 185 2/24/2025
5.0.25 208 2/12/2025
5.0.24 328 2/3/2025
5.0.23 227 1/30/2025
5.0.22 204 1/29/2025
5.0.21 172 1/29/2025
5.0.20 183 1/28/2025
5.0.19 208 1/24/2025
5.0.18 193 1/23/2025
5.0.17 164 1/23/2025
5.0.16 234 1/16/2025
5.0.15 179 1/15/2025
5.0.14 198 1/14/2025
5.0.13 176 1/13/2025
5.0.12 195 1/10/2025
5.0.11 192 1/9/2025
5.0.10 153 1/8/2025
5.0.9 245 12/17/2024
5.0.8 202 12/17/2024
5.0.7 239 12/10/2024
5.0.6 196 12/9/2024
5.0.5 281 11/26/2024
5.0.4 247 11/26/2024
5.0.3 182 11/25/2024
5.0.2 240 11/24/2024
5.0.1 186 11/23/2024
5.0.0 176 11/23/2024
4.0.268 213 11/19/2024
4.0.267 180 11/11/2024
4.0.266 179 11/6/2024
4.0.265 181 11/5/2024
4.0.264 175 11/4/2024
4.0.263 212 11/1/2024
4.0.262 177 10/31/2024
4.0.261 188 10/30/2024
4.0.260 179 10/29/2024
4.0.259 188 10/29/2024
4.0.258 201 10/25/2024
4.0.257 176 10/24/2024
4.0.256 199 10/21/2024
4.0.255 190 10/16/2024
4.0.254 183 10/15/2024
4.0.253 198 10/11/2024
4.0.252 181 10/10/2024
4.0.251 175 10/9/2024
4.0.250 170 10/8/2024
4.0.249 202 10/2/2024
4.0.248 207 10/1/2024
4.0.247 180 9/30/2024
4.0.246 207 9/27/2024
4.0.245 180 9/24/2024
4.0.244 181 9/23/2024
4.0.243 175 9/23/2024
4.0.242 242 9/17/2024
4.0.241 229 9/10/2024
4.0.240 189 9/9/2024
4.0.239 207 9/6/2024
4.0.238 213 9/5/2024
4.0.237 187 9/3/2024
4.0.236 191 9/2/2024
4.0.235 195 8/30/2024
4.0.234 197 8/29/2024
4.0.233 219 8/28/2024
4.0.232 206 8/27/2024
4.0.231 195 8/26/2024
4.0.230 211 8/23/2024
4.0.229 209 8/22/2024
4.0.228 198 8/21/2024
4.0.227 212 8/20/2024
4.0.226 197 8/20/2024
4.0.225 231 8/19/2024
4.0.224 238 8/16/2024
4.0.223 221 8/15/2024
4.0.222 243 8/14/2024
4.0.221 185 8/5/2024
4.0.220 179 8/2/2024
4.0.219 223 8/1/2024
4.0.218 169 7/31/2024
4.0.217 211 7/26/2024
4.0.216 184 7/25/2024
4.0.215 146 7/24/2024
4.0.214 194 7/11/2024
4.0.213 172 7/10/2024
4.0.212 176 7/9/2024
4.0.211 198 7/9/2024
4.0.210 182 7/8/2024
4.0.209 188 7/5/2024
4.0.208 212 7/5/2024
4.0.207 185 7/2/2024
4.0.206 184 7/1/2024
4.0.205 226 6/27/2024
4.0.204 225 6/26/2024
4.0.203 199 6/25/2024
4.0.202 220 6/24/2024
4.0.201 1,308 6/19/2024
4.0.200 232 6/18/2024
4.0.199 182 6/17/2024
4.0.198 188 6/14/2024
4.0.197 182 6/13/2024
4.0.196 205 6/12/2024
4.0.195 201 6/3/2024
4.0.194 191 5/31/2024
4.0.193 233 5/30/2024
4.0.192 200 5/29/2024
4.0.191 217 5/27/2024
4.0.190 201 5/27/2024
4.0.189 186 5/23/2024
4.0.188 192 5/22/2024
4.0.187 226 5/21/2024
4.0.186 220 5/20/2024
4.0.185 196 5/17/2024
4.0.184 190 5/16/2024
4.0.183 208 5/15/2024
4.0.182 204 5/8/2024
4.0.181 190 5/7/2024
4.0.180 209 5/6/2024
4.0.179 223 5/3/2024
4.0.178 938 5/2/2024
4.0.177 160 5/1/2024
4.0.176 211 4/30/2024
4.0.175 194 4/29/2024
4.0.174 192 4/29/2024
4.0.173 229 4/25/2024
4.0.172 219 4/24/2024
4.0.171 229 4/16/2024
4.0.170 202 4/15/2024
4.0.169 216 4/12/2024
4.0.168 216 4/12/2024
4.0.167 224 4/11/2024
4.0.166 240 4/10/2024
4.0.165 204 4/9/2024
4.0.164 208 4/8/2024
4.0.163 207 4/1/2024
4.0.162 186 3/29/2024
4.0.161 223 3/28/2024
4.0.160 200 3/26/2024
4.0.159 216 3/23/2024
4.0.158 222 3/22/2024
4.0.157 220 3/21/2024
4.0.156 203 3/18/2024
4.0.155 220 3/15/2024
4.0.154 209 3/14/2024
4.0.153 215 3/13/2024
4.0.152 254 3/11/2024
4.0.151 225 3/8/2024
4.0.150 212 3/7/2024
4.0.149 202 3/6/2024
4.0.148 209 3/5/2024
4.0.147 1,315 3/4/2024
4.0.146 227 3/1/2024
4.0.145 238 2/29/2024
4.0.144 234 2/28/2024
4.0.143 241 2/27/2024
4.0.142 237 2/26/2024
4.0.141 235 2/23/2024
4.0.140 249 2/22/2024
4.0.139 222 2/21/2024
4.0.138 244 2/20/2024
4.0.137 576 2/19/2024
4.0.136 197 2/19/2024
4.0.135 206 2/16/2024
4.0.134 220 2/16/2024
4.0.133 188 2/15/2024
4.0.132 216 2/14/2024
4.0.131 184 2/13/2024
4.0.130 224 2/12/2024
4.0.129 200 2/9/2024
4.0.128 256 2/8/2024
4.0.127 216 2/7/2024
4.0.126 235 2/6/2024
4.0.125 173 2/6/2024
4.0.124 194 2/5/2024
4.0.123 726 2/2/2024
4.0.122 238 2/1/2024
4.0.121 191 2/1/2024
4.0.120 242 1/31/2024
4.0.119 318 1/30/2024
4.0.118 245 1/29/2024
4.0.117 253 1/26/2024
4.0.116 212 1/24/2024
4.0.115 190 1/23/2024
4.0.114 200 1/22/2024
4.0.113 490 1/16/2024
4.0.112 263 1/15/2024
4.0.111 220 1/15/2024
4.0.110 224 1/12/2024
4.0.109 217 1/11/2024
4.0.108 193 1/10/2024
4.0.107 456 1/8/2024
4.0.106 289 1/5/2024
4.0.105 425 12/26/2023
4.0.104 247 12/26/2023
4.0.103 247 12/25/2023
4.0.102 236 12/25/2023
4.0.101 346 12/22/2023
4.0.100 278 12/21/2023
4.0.99 263 12/15/2023
4.0.98 240 12/14/2023
4.0.97 222 12/13/2023
4.0.96 242 12/13/2023
4.0.95 429 12/12/2023
4.0.94 241 12/12/2023
4.0.93 226 12/11/2023
4.0.92 219 12/11/2023
4.0.91 279 12/6/2023
4.0.90 213 12/6/2023
4.0.89 211 12/5/2023
4.0.88 274 12/4/2023
4.0.87 290 11/24/2023
4.0.86 216 11/23/2023
4.0.85 237 11/21/2023
4.0.84 250 11/20/2023
4.0.83 224 11/20/2023
4.0.82 293 11/17/2023
4.0.81 713 11/16/2023
4.0.80 239 11/15/2023
4.0.79 232 11/13/2023
4.0.78 274 11/9/2023
4.0.77 265 11/8/2023
4.0.76 192 11/8/2023
4.0.75 239 11/7/2023
4.0.74 232 11/6/2023
4.0.73 221 11/3/2023
4.0.72 298 11/2/2023
4.0.71 223 11/1/2023
4.0.70 217 11/1/2023
4.0.69 285 10/31/2023
4.0.68 263 10/30/2023
4.0.67 236 10/27/2023
4.0.66 275 10/26/2023
4.0.65 258 10/25/2023
4.0.64 223 10/17/2023
4.0.63 193 10/17/2023
4.0.62 270 10/16/2023
4.0.61 253 10/13/2023
4.0.60 308 10/12/2023
4.0.59 228 10/11/2023
4.0.58 269 10/5/2023
4.0.57 249 10/4/2023
4.0.56 228 9/26/2023
4.0.55 256 9/25/2023
4.0.54 274 9/22/2023
4.0.53 268 9/20/2023
4.0.52 263 9/19/2023
4.0.51 243 9/18/2023
4.0.50 235 9/18/2023
4.0.49 298 9/14/2023
4.0.48 279 9/13/2023
4.0.47 228 9/12/2023
4.0.46 312 9/11/2023
4.0.45 220 9/11/2023
4.0.44 210 9/11/2023
4.0.43 394 9/7/2023
4.0.42 234 9/6/2023
4.0.41 307 9/5/2023
4.0.40 238 9/4/2023
4.0.39 255 9/4/2023
4.0.38 306 9/1/2023
4.0.37 306 8/31/2023
4.0.36 302 8/30/2023
4.0.35 317 8/29/2023
4.0.34 234 8/29/2023
4.0.33 347 8/28/2023
4.0.32 329 8/25/2023
4.0.31 291 8/24/2023
4.0.30 273 8/23/2023
4.0.29 289 8/22/2023
4.0.28 285 8/18/2023
4.0.27 301 8/17/2023
4.0.26 270 8/17/2023
4.0.25 256 8/16/2023
4.0.24 369 8/10/2023
4.0.23 296 8/9/2023
4.0.22 323 8/8/2023
4.0.21 277 8/8/2023
4.0.20 400 8/7/2023
4.0.19 292 8/4/2023
4.0.18 351 8/3/2023
4.0.17 334 8/2/2023
4.0.16 335 7/26/2023
4.0.15 290 7/25/2023
4.0.14 315 7/20/2023
4.0.13 336 7/19/2023
4.0.12 312 7/18/2023
4.0.11 228 7/18/2023
4.0.10 301 7/18/2023
4.0.9 254 7/18/2023
4.0.8 409 7/17/2023
4.0.7 281 7/17/2023
4.0.6 677 1/30/2023
4.0.5 532 1/30/2023
4.0.4 520 1/27/2023
4.0.3 647 12/13/2022
4.0.0 422 12/12/2022
3.0.47 1,682 6/10/2022
3.0.45 1,142 4/20/2022
3.0.44 1,177 1/11/2022
3.0.43 796 1/10/2022
3.0.42 1,267 6/17/2021
3.0.41 921 6/16/2021
3.0.40 870 6/16/2021
3.0.39 662 6/16/2021
3.0.38 1,193 1/7/2021
3.0.37 1,004 12/16/2020
3.0.36 918 12/14/2020
3.0.35 2,588 9/13/2020
3.0.34 1,061 6/19/2020
3.0.33 2,074 5/12/2020
3.0.32 1,610 5/12/2020
3.0.31 1,053 4/28/2020
3.0.30 1,004 4/24/2020
3.0.29 987 4/16/2020
3.0.28 1,065 4/16/2020
3.0.27 705 4/15/2020
3.0.26 1,017 4/15/2020
3.0.25 1,066 4/14/2020
3.0.24 765 4/14/2020
3.0.23 1,125 4/10/2020
3.0.22 1,055 4/10/2020
3.0.21 1,098 4/7/2020
3.0.20 2,950 3/26/2020
3.0.19 1,085 3/26/2020
3.0.18 755 3/25/2020
3.0.17 748 3/25/2020
3.0.16 771 3/25/2020
3.0.15 748 3/25/2020
3.0.13 761 3/25/2020
3.0.12 766 3/25/2020
3.0.11 736 3/25/2020
3.0.10 1,309 3/25/2020
3.0.9 1,133 3/22/2020
3.0.8 725 3/22/2020
3.0.7 1,125 3/21/2020
3.0.6 1,756 3/13/2020
3.0.5 790 3/13/2020
3.0.4 1,529 2/28/2020
3.0.3 1,335 2/21/2020
3.0.2 785 2/11/2020
3.0.1 763 2/11/2020
3.0.0 1,973 12/23/2019
2.0.13 811 11/4/2019
2.0.12 865 6/19/2019
2.0.11 834 6/19/2019
2.0.10 1,149 4/17/2019
2.0.9 1,715 2/21/2019
2.0.8 4,281 8/1/2018
2.0.7 1,514 8/1/2018
2.0.6 2,059 6/26/2018
2.0.5 1,410 6/14/2018
2.0.4 2,043 6/1/2018
2.0.3 1,993 5/22/2018
2.0.2 2,565 5/11/2018
2.0.1 2,629 2/13/2018
2.0.0 2,579 1/2/2018
1.0.29 4,237 11/16/2017
1.0.28 1,238 11/16/2017
1.0.27 6,788 10/18/2017
1.0.26 4,988 9/22/2017
1.0.24 1,322 9/22/2017
1.0.23 1,660 9/22/2017
1.0.22 1,315 9/22/2017
1.0.21 1,353 9/22/2017
1.0.19 1,325 9/22/2017
1.0.18 1,320 9/21/2017
1.0.17 2,383 8/4/2017
1.0.16 1,338 7/3/2017
1.0.15 1,357 6/16/2017
1.0.13 1,359 6/16/2017
1.0.12 1,333 6/16/2017
1.0.11 1,343 5/30/2017
1.0.9 1,332 5/25/2017
1.0.8 1,306 5/24/2017
1.0.7 1,339 5/19/2017
1.0.6 1,380 5/17/2017
1.0.4 1,455 4/3/2017
1.0.3 1,469 3/22/2017
1.0.2 1,458 2/2/2017