Data.Modeler 4.0.238

There is a newer version of this package available.
See the version list below for details.
dotnet add package Data.Modeler --version 4.0.238
                    
NuGet\Install-Package Data.Modeler -Version 4.0.238
                    
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.238" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Data.Modeler" Version="4.0.238" />
                    
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.238
                    
#r "nuget: Data.Modeler, 4.0.238"
                    
#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.238
                    
#: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.238
                    
Install as a Cake Addin
#tool nuget:?package=Data.Modeler&version=4.0.238
                    
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.84 49 10/31/2025
5.0.83 257 10/17/2025
5.0.82 196 10/16/2025
5.0.81 198 10/15/2025
5.0.80 232 10/14/2025
5.0.79 208 10/13/2025
5.0.78 239 10/12/2025
5.0.77 273 9/30/2025
5.0.76 199 9/29/2025
5.0.75 175 9/29/2025
5.0.72 433 9/18/2025
5.0.71 299 9/18/2025
5.0.70 345 9/17/2025
5.0.69 334 9/16/2025
5.0.68 207 9/11/2025
5.0.67 195 9/10/2025
5.0.66 210 9/9/2025
5.0.65 366 8/20/2025
5.0.64 175 8/20/2025
5.0.63 181 8/20/2025
5.0.62 161 8/19/2025
5.0.61 174 8/19/2025
5.0.60 211 8/19/2025
5.0.59 188 8/15/2025
5.0.58 344 8/6/2025
5.0.57 289 8/5/2025
5.0.56 259 8/5/2025
5.0.55 251 8/5/2025
5.0.54 297 8/5/2025
5.0.53 224 8/5/2025
5.0.52 130 8/1/2025
5.0.51 226 7/28/2025
5.0.50 231 7/17/2025
5.0.49 177 7/17/2025
5.0.48 272 7/15/2025
5.0.47 175 7/14/2025
5.0.46 186 7/14/2025
5.0.45 227 7/8/2025
5.0.44 566 6/30/2025
5.0.43 183 6/30/2025
5.0.42 182 6/30/2025
5.0.41 213 6/27/2025
5.0.40 238 6/27/2025
5.0.39 173 6/27/2025
5.0.38 180 6/27/2025
5.0.37 166 6/27/2025
5.0.36 221 6/26/2025
5.0.35 199 6/18/2025
5.0.34 365 6/10/2025
5.0.33 152 5/30/2025
5.0.32 170 5/23/2025
5.0.31 303 5/14/2025
5.0.30 157 5/2/2025
5.0.29 221 4/28/2025
5.0.28 200 4/11/2025
5.0.27 224 3/17/2025
5.0.26 178 2/24/2025
5.0.25 204 2/12/2025
5.0.24 324 2/3/2025
5.0.23 224 1/30/2025
5.0.22 198 1/29/2025
5.0.21 165 1/29/2025
5.0.20 178 1/28/2025
5.0.19 200 1/24/2025
5.0.18 190 1/23/2025
5.0.17 161 1/23/2025
5.0.16 230 1/16/2025
5.0.15 176 1/15/2025
5.0.14 192 1/14/2025
5.0.13 172 1/13/2025
5.0.12 190 1/10/2025
5.0.11 187 1/9/2025
5.0.10 149 1/8/2025
5.0.9 242 12/17/2024
5.0.8 197 12/17/2024
5.0.7 234 12/10/2024
5.0.6 191 12/9/2024
5.0.5 278 11/26/2024
5.0.4 243 11/26/2024
5.0.3 175 11/25/2024
5.0.2 235 11/24/2024
5.0.1 182 11/23/2024
5.0.0 173 11/23/2024
4.0.268 208 11/19/2024
4.0.267 176 11/11/2024
4.0.266 173 11/6/2024
4.0.265 174 11/5/2024
4.0.264 170 11/4/2024
4.0.263 206 11/1/2024
4.0.262 174 10/31/2024
4.0.261 181 10/30/2024
4.0.260 176 10/29/2024
4.0.259 179 10/29/2024
4.0.258 192 10/25/2024
4.0.257 171 10/24/2024
4.0.256 193 10/21/2024
4.0.255 186 10/16/2024
4.0.254 177 10/15/2024
4.0.253 192 10/11/2024
4.0.252 175 10/10/2024
4.0.251 171 10/9/2024
4.0.250 167 10/8/2024
4.0.249 197 10/2/2024
4.0.248 203 10/1/2024
4.0.247 176 9/30/2024
4.0.246 202 9/27/2024
4.0.245 173 9/24/2024
4.0.244 178 9/23/2024
4.0.243 170 9/23/2024
4.0.242 232 9/17/2024
4.0.241 223 9/10/2024
4.0.240 186 9/9/2024
4.0.239 202 9/6/2024
4.0.238 208 9/5/2024
4.0.237 182 9/3/2024
4.0.236 188 9/2/2024
4.0.235 192 8/30/2024
4.0.234 194 8/29/2024
4.0.233 213 8/28/2024
4.0.232 201 8/27/2024
4.0.231 188 8/26/2024
4.0.230 208 8/23/2024
4.0.229 205 8/22/2024
4.0.228 195 8/21/2024
4.0.227 207 8/20/2024
4.0.226 192 8/20/2024
4.0.225 226 8/19/2024
4.0.224 235 8/16/2024
4.0.223 217 8/15/2024
4.0.222 237 8/14/2024
4.0.221 181 8/5/2024
4.0.220 175 8/2/2024
4.0.219 218 8/1/2024
4.0.218 166 7/31/2024
4.0.217 207 7/26/2024
4.0.216 177 7/25/2024
4.0.215 138 7/24/2024
4.0.214 190 7/11/2024
4.0.213 168 7/10/2024
4.0.212 171 7/9/2024
4.0.211 194 7/9/2024
4.0.210 179 7/8/2024
4.0.209 185 7/5/2024
4.0.208 205 7/5/2024
4.0.207 181 7/2/2024
4.0.206 181 7/1/2024
4.0.205 217 6/27/2024
4.0.204 220 6/26/2024
4.0.203 194 6/25/2024
4.0.202 215 6/24/2024
4.0.201 1,305 6/19/2024
4.0.200 226 6/18/2024
4.0.199 178 6/17/2024
4.0.198 185 6/14/2024
4.0.197 179 6/13/2024
4.0.196 200 6/12/2024
4.0.195 198 6/3/2024
4.0.194 187 5/31/2024
4.0.193 228 5/30/2024
4.0.192 197 5/29/2024
4.0.191 213 5/27/2024
4.0.190 196 5/27/2024
4.0.189 181 5/23/2024
4.0.188 187 5/22/2024
4.0.187 222 5/21/2024
4.0.186 216 5/20/2024
4.0.185 193 5/17/2024
4.0.184 187 5/16/2024
4.0.183 203 5/15/2024
4.0.182 200 5/8/2024
4.0.181 187 5/7/2024
4.0.180 204 5/6/2024
4.0.179 218 5/3/2024
4.0.178 935 5/2/2024
4.0.177 156 5/1/2024
4.0.176 208 4/30/2024
4.0.175 190 4/29/2024
4.0.174 189 4/29/2024
4.0.173 224 4/25/2024
4.0.172 214 4/24/2024
4.0.171 225 4/16/2024
4.0.170 198 4/15/2024
4.0.169 209 4/12/2024
4.0.168 211 4/12/2024
4.0.167 221 4/11/2024
4.0.166 233 4/10/2024
4.0.165 200 4/9/2024
4.0.164 205 4/8/2024
4.0.163 204 4/1/2024
4.0.162 181 3/29/2024
4.0.161 216 3/28/2024
4.0.160 195 3/26/2024
4.0.159 213 3/23/2024
4.0.158 219 3/22/2024
4.0.157 216 3/21/2024
4.0.156 198 3/18/2024
4.0.155 217 3/15/2024
4.0.154 206 3/14/2024
4.0.153 212 3/13/2024
4.0.152 251 3/11/2024
4.0.151 220 3/8/2024
4.0.150 209 3/7/2024
4.0.149 199 3/6/2024
4.0.148 206 3/5/2024
4.0.147 1,311 3/4/2024
4.0.146 221 3/1/2024
4.0.145 233 2/29/2024
4.0.144 230 2/28/2024
4.0.143 237 2/27/2024
4.0.142 234 2/26/2024
4.0.141 231 2/23/2024
4.0.140 245 2/22/2024
4.0.139 218 2/21/2024
4.0.138 240 2/20/2024
4.0.137 570 2/19/2024
4.0.136 193 2/19/2024
4.0.135 203 2/16/2024
4.0.134 214 2/16/2024
4.0.133 185 2/15/2024
4.0.132 213 2/14/2024
4.0.131 182 2/13/2024
4.0.130 220 2/12/2024
4.0.129 195 2/9/2024
4.0.128 253 2/8/2024
4.0.127 213 2/7/2024
4.0.126 229 2/6/2024
4.0.125 168 2/6/2024
4.0.124 190 2/5/2024
4.0.123 722 2/2/2024
4.0.122 232 2/1/2024
4.0.121 188 2/1/2024
4.0.120 235 1/31/2024
4.0.119 316 1/30/2024
4.0.118 241 1/29/2024
4.0.117 247 1/26/2024
4.0.116 207 1/24/2024
4.0.115 186 1/23/2024
4.0.114 195 1/22/2024
4.0.113 486 1/16/2024
4.0.112 255 1/15/2024
4.0.111 216 1/15/2024
4.0.110 220 1/12/2024
4.0.109 211 1/11/2024
4.0.108 188 1/10/2024
4.0.107 452 1/8/2024
4.0.106 281 1/5/2024
4.0.105 421 12/26/2023
4.0.104 243 12/26/2023
4.0.103 244 12/25/2023
4.0.102 233 12/25/2023
4.0.101 341 12/22/2023
4.0.100 270 12/21/2023
4.0.99 257 12/15/2023
4.0.98 234 12/14/2023
4.0.97 216 12/13/2023
4.0.96 236 12/13/2023
4.0.95 425 12/12/2023
4.0.94 238 12/12/2023
4.0.93 220 12/11/2023
4.0.92 214 12/11/2023
4.0.91 277 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 246 11/20/2023
4.0.83 222 11/20/2023
4.0.82 291 11/17/2023
4.0.81 710 11/16/2023
4.0.80 237 11/15/2023
4.0.79 231 11/13/2023
4.0.78 271 11/9/2023
4.0.77 263 11/8/2023
4.0.76 191 11/8/2023
4.0.75 231 11/7/2023
4.0.74 224 11/6/2023
4.0.73 219 11/3/2023
4.0.72 295 11/2/2023
4.0.71 221 11/1/2023
4.0.70 212 11/1/2023
4.0.69 282 10/31/2023
4.0.68 261 10/30/2023
4.0.67 234 10/27/2023
4.0.66 271 10/26/2023
4.0.65 255 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 251 10/13/2023
4.0.60 303 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 266 9/20/2023
4.0.52 262 9/19/2023
4.0.51 240 9/18/2023
4.0.50 233 9/18/2023
4.0.49 297 9/14/2023
4.0.48 274 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 390 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 303 9/1/2023
4.0.37 302 8/31/2023
4.0.36 299 8/30/2023
4.0.35 315 8/29/2023
4.0.34 232 8/29/2023
4.0.33 341 8/28/2023
4.0.32 327 8/25/2023
4.0.31 289 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 299 8/17/2023
4.0.26 269 8/17/2023
4.0.25 254 8/16/2023
4.0.24 366 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 329 8/2/2023
4.0.16 332 7/26/2023
4.0.15 287 7/25/2023
4.0.14 315 7/20/2023
4.0.13 334 7/19/2023
4.0.12 309 7/18/2023
4.0.11 227 7/18/2023
4.0.10 299 7/18/2023
4.0.9 253 7/18/2023
4.0.8 409 7/17/2023
4.0.7 280 7/17/2023
4.0.6 673 1/30/2023
4.0.5 527 1/30/2023
4.0.4 514 1/27/2023
4.0.3 644 12/13/2022
4.0.0 416 12/12/2022
3.0.47 1,677 6/10/2022
3.0.45 1,135 4/20/2022
3.0.44 1,169 1/11/2022
3.0.43 787 1/10/2022
3.0.42 1,261 6/17/2021
3.0.41 914 6/16/2021
3.0.40 863 6/16/2021
3.0.39 653 6/16/2021
3.0.38 1,185 1/7/2021
3.0.37 995 12/16/2020
3.0.36 911 12/14/2020
3.0.35 2,576 9/13/2020
3.0.34 1,053 6/19/2020
3.0.33 2,066 5/12/2020
3.0.32 1,600 5/12/2020
3.0.31 1,046 4/28/2020
3.0.30 997 4/24/2020
3.0.29 979 4/16/2020
3.0.28 1,056 4/16/2020
3.0.27 696 4/15/2020
3.0.26 1,010 4/15/2020
3.0.25 1,058 4/14/2020
3.0.24 756 4/14/2020
3.0.23 1,115 4/10/2020
3.0.22 1,046 4/10/2020
3.0.21 1,090 4/7/2020
3.0.20 2,943 3/26/2020
3.0.19 1,077 3/26/2020
3.0.18 745 3/25/2020
3.0.17 738 3/25/2020
3.0.16 764 3/25/2020
3.0.15 740 3/25/2020
3.0.13 753 3/25/2020
3.0.12 759 3/25/2020
3.0.11 729 3/25/2020
3.0.10 1,300 3/25/2020
3.0.9 1,125 3/22/2020
3.0.8 718 3/22/2020
3.0.7 1,116 3/21/2020
3.0.6 1,748 3/13/2020
3.0.5 782 3/13/2020
3.0.4 1,519 2/28/2020
3.0.3 1,328 2/21/2020
3.0.2 778 2/11/2020
3.0.1 756 2/11/2020
3.0.0 1,964 12/23/2019
2.0.13 803 11/4/2019
2.0.12 857 6/19/2019
2.0.11 828 6/19/2019
2.0.10 1,140 4/17/2019
2.0.9 1,708 2/21/2019
2.0.8 4,266 8/1/2018
2.0.7 1,499 8/1/2018
2.0.6 2,034 6/26/2018
2.0.5 1,387 6/14/2018
2.0.4 2,018 6/1/2018
2.0.3 1,969 5/22/2018
2.0.2 2,541 5/11/2018
2.0.1 2,606 2/13/2018
2.0.0 2,555 1/2/2018
1.0.29 4,220 11/16/2017
1.0.28 1,222 11/16/2017
1.0.27 6,770 10/18/2017
1.0.26 4,970 9/22/2017
1.0.24 1,307 9/22/2017
1.0.23 1,643 9/22/2017
1.0.22 1,300 9/22/2017
1.0.21 1,333 9/22/2017
1.0.19 1,310 9/22/2017
1.0.18 1,306 9/21/2017
1.0.17 2,368 8/4/2017
1.0.16 1,322 7/3/2017
1.0.15 1,340 6/16/2017
1.0.13 1,343 6/16/2017
1.0.12 1,316 6/16/2017
1.0.11 1,327 5/30/2017
1.0.9 1,316 5/25/2017
1.0.8 1,291 5/24/2017
1.0.7 1,323 5/19/2017
1.0.6 1,365 5/17/2017
1.0.4 1,441 4/3/2017
1.0.3 1,455 3/22/2017
1.0.2 1,442 2/2/2017