Data.Modeler 5.0.61

There is a newer version of this package available.
See the version list below for details.
dotnet add package Data.Modeler --version 5.0.61
                    
NuGet\Install-Package Data.Modeler -Version 5.0.61
                    
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.61" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Data.Modeler" Version="5.0.61" />
                    
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.61
                    
#r "nuget: Data.Modeler, 5.0.61"
                    
#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.61
                    
#: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.61
                    
Install as a Cake Addin
#tool nuget:?package=Data.Modeler&version=5.0.61
                    
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.66 5 9/9/2025
5.0.65 260 8/20/2025
5.0.64 133 8/20/2025
5.0.63 140 8/20/2025
5.0.62 132 8/19/2025
5.0.61 136 8/19/2025
5.0.60 161 8/19/2025
5.0.59 127 8/15/2025
5.0.58 289 8/6/2025
5.0.57 240 8/5/2025
5.0.56 218 8/5/2025
5.0.55 221 8/5/2025
5.0.54 250 8/5/2025
5.0.53 193 8/5/2025
5.0.52 68 8/1/2025
5.0.51 119 7/28/2025
5.0.50 164 7/17/2025
5.0.49 145 7/17/2025
5.0.48 197 7/15/2025
5.0.47 152 7/14/2025
5.0.46 152 7/14/2025
5.0.45 195 7/8/2025
5.0.44 507 6/30/2025
5.0.43 147 6/30/2025
5.0.42 146 6/30/2025
5.0.41 155 6/27/2025
5.0.40 193 6/27/2025
5.0.39 142 6/27/2025
5.0.38 150 6/27/2025
5.0.37 146 6/27/2025
5.0.36 192 6/26/2025
5.0.35 166 6/18/2025
5.0.34 320 6/10/2025
5.0.33 115 5/30/2025
5.0.32 122 5/23/2025
5.0.31 256 5/14/2025
5.0.30 133 5/2/2025
5.0.29 187 4/28/2025
5.0.28 150 4/11/2025
5.0.27 179 3/17/2025
5.0.26 155 2/24/2025
5.0.25 176 2/12/2025
5.0.24 286 2/3/2025
5.0.23 195 1/30/2025
5.0.22 163 1/29/2025
5.0.21 132 1/29/2025
5.0.20 151 1/28/2025
5.0.19 152 1/24/2025
5.0.18 153 1/23/2025
5.0.17 132 1/23/2025
5.0.16 177 1/16/2025
5.0.15 149 1/15/2025
5.0.14 137 1/14/2025
5.0.13 136 1/13/2025
5.0.12 148 1/10/2025
5.0.11 148 1/9/2025
5.0.10 125 1/8/2025
5.0.9 204 12/17/2024
5.0.8 149 12/17/2024
5.0.7 188 12/10/2024
5.0.6 149 12/9/2024
5.0.5 220 11/26/2024
5.0.4 182 11/26/2024
5.0.3 135 11/25/2024
5.0.2 175 11/24/2024
5.0.1 154 11/23/2024
5.0.0 145 11/23/2024
4.0.268 166 11/19/2024
4.0.267 142 11/11/2024
4.0.266 139 11/6/2024
4.0.265 134 11/5/2024
4.0.264 134 11/4/2024
4.0.263 159 11/1/2024
4.0.262 139 10/31/2024
4.0.261 145 10/30/2024
4.0.260 143 10/29/2024
4.0.259 142 10/29/2024
4.0.258 154 10/25/2024
4.0.257 133 10/24/2024
4.0.256 155 10/21/2024
4.0.255 153 10/16/2024
4.0.254 138 10/15/2024
4.0.253 146 10/11/2024
4.0.252 139 10/10/2024
4.0.251 139 10/9/2024
4.0.250 147 10/8/2024
4.0.249 153 10/2/2024
4.0.248 154 10/1/2024
4.0.247 142 9/30/2024
4.0.246 158 9/27/2024
4.0.245 147 9/24/2024
4.0.244 158 9/23/2024
4.0.243 140 9/23/2024
4.0.242 185 9/17/2024
4.0.241 177 9/10/2024
4.0.240 152 9/9/2024
4.0.239 153 9/6/2024
4.0.238 163 9/5/2024
4.0.237 163 9/3/2024
4.0.236 158 9/2/2024
4.0.235 159 8/30/2024
4.0.234 163 8/29/2024
4.0.233 168 8/28/2024
4.0.232 159 8/27/2024
4.0.231 160 8/26/2024
4.0.230 177 8/23/2024
4.0.229 173 8/22/2024
4.0.228 174 8/21/2024
4.0.227 174 8/20/2024
4.0.226 172 8/20/2024
4.0.225 196 8/19/2024
4.0.224 192 8/16/2024
4.0.223 173 8/15/2024
4.0.222 195 8/14/2024
4.0.221 151 8/5/2024
4.0.220 144 8/2/2024
4.0.219 171 8/1/2024
4.0.218 137 7/31/2024
4.0.217 163 7/26/2024
4.0.216 139 7/25/2024
4.0.215 109 7/24/2024
4.0.214 162 7/11/2024
4.0.213 148 7/10/2024
4.0.212 142 7/9/2024
4.0.211 150 7/9/2024
4.0.210 151 7/8/2024
4.0.209 165 7/5/2024
4.0.208 167 7/5/2024
4.0.207 150 7/2/2024
4.0.206 143 7/1/2024
4.0.205 173 6/27/2024
4.0.204 165 6/26/2024
4.0.203 163 6/25/2024
4.0.202 174 6/24/2024
4.0.201 1,046 6/19/2024
4.0.200 177 6/18/2024
4.0.199 146 6/17/2024
4.0.198 153 6/14/2024
4.0.197 148 6/13/2024
4.0.196 160 6/12/2024
4.0.195 167 6/3/2024
4.0.194 154 5/31/2024
4.0.193 181 5/30/2024
4.0.192 157 5/29/2024
4.0.191 176 5/27/2024
4.0.190 158 5/27/2024
4.0.189 147 5/23/2024
4.0.188 158 5/22/2024
4.0.187 193 5/21/2024
4.0.186 172 5/20/2024
4.0.185 173 5/17/2024
4.0.184 165 5/16/2024
4.0.183 172 5/15/2024
4.0.182 170 5/8/2024
4.0.181 157 5/7/2024
4.0.180 174 5/6/2024
4.0.179 176 5/3/2024
4.0.178 731 5/2/2024
4.0.177 136 5/1/2024
4.0.176 166 4/30/2024
4.0.175 157 4/29/2024
4.0.174 159 4/29/2024
4.0.173 175 4/25/2024
4.0.172 172 4/24/2024
4.0.171 180 4/16/2024
4.0.170 167 4/15/2024
4.0.169 168 4/12/2024
4.0.168 162 4/12/2024
4.0.167 182 4/11/2024
4.0.166 193 4/10/2024
4.0.165 170 4/9/2024
4.0.164 174 4/8/2024
4.0.163 171 4/1/2024
4.0.162 152 3/29/2024
4.0.161 169 3/28/2024
4.0.160 154 3/26/2024
4.0.159 180 3/23/2024
4.0.158 178 3/22/2024
4.0.157 178 3/21/2024
4.0.156 155 3/18/2024
4.0.155 183 3/15/2024
4.0.154 175 3/14/2024
4.0.153 179 3/13/2024
4.0.152 197 3/11/2024
4.0.151 176 3/8/2024
4.0.150 174 3/7/2024
4.0.149 166 3/6/2024
4.0.148 175 3/5/2024
4.0.147 992 3/4/2024
4.0.146 193 3/1/2024
4.0.145 193 2/29/2024
4.0.144 192 2/28/2024
4.0.143 196 2/27/2024
4.0.142 188 2/26/2024
4.0.141 201 2/23/2024
4.0.140 198 2/22/2024
4.0.139 178 2/21/2024
4.0.138 201 2/20/2024
4.0.137 440 2/19/2024
4.0.136 162 2/19/2024
4.0.135 162 2/16/2024
4.0.134 173 2/16/2024
4.0.133 167 2/15/2024
4.0.132 173 2/14/2024
4.0.131 162 2/13/2024
4.0.130 192 2/12/2024
4.0.129 166 2/9/2024
4.0.128 212 2/8/2024
4.0.127 173 2/7/2024
4.0.126 186 2/6/2024
4.0.125 146 2/6/2024
4.0.124 158 2/5/2024
4.0.123 530 2/2/2024
4.0.122 183 2/1/2024
4.0.121 158 2/1/2024
4.0.120 186 1/31/2024
4.0.119 248 1/30/2024
4.0.118 181 1/29/2024
4.0.117 198 1/26/2024
4.0.116 175 1/24/2024
4.0.115 156 1/23/2024
4.0.114 165 1/22/2024
4.0.113 368 1/16/2024
4.0.112 210 1/15/2024
4.0.111 182 1/15/2024
4.0.110 179 1/12/2024
4.0.109 166 1/11/2024
4.0.108 169 1/10/2024
4.0.107 355 1/8/2024
4.0.106 234 1/5/2024
4.0.105 354 12/26/2023
4.0.104 196 12/26/2023
4.0.103 211 12/25/2023
4.0.102 189 12/25/2023
4.0.101 271 12/22/2023
4.0.100 212 12/21/2023
4.0.99 227 12/15/2023
4.0.98 193 12/14/2023
4.0.97 177 12/13/2023
4.0.96 202 12/13/2023
4.0.95 354 12/12/2023
4.0.94 192 12/12/2023
4.0.93 190 12/11/2023
4.0.92 183 12/11/2023
4.0.91 237 12/6/2023
4.0.90 179 12/6/2023
4.0.89 174 12/5/2023
4.0.88 225 12/4/2023
4.0.87 233 11/24/2023
4.0.86 185 11/23/2023
4.0.85 186 11/21/2023
4.0.84 190 11/20/2023
4.0.83 183 11/20/2023
4.0.82 224 11/17/2023
4.0.81 672 11/16/2023
4.0.80 194 11/15/2023
4.0.79 193 11/13/2023
4.0.78 203 11/9/2023
4.0.77 210 11/8/2023
4.0.76 160 11/8/2023
4.0.75 184 11/7/2023
4.0.74 193 11/6/2023
4.0.73 191 11/3/2023
4.0.72 235 11/2/2023
4.0.71 176 11/1/2023
4.0.70 174 11/1/2023
4.0.69 220 10/31/2023
4.0.68 205 10/30/2023
4.0.67 200 10/27/2023
4.0.66 214 10/26/2023
4.0.65 216 10/25/2023
4.0.64 208 10/17/2023
4.0.63 169 10/17/2023
4.0.62 226 10/16/2023
4.0.61 233 10/13/2023
4.0.60 255 10/12/2023
4.0.59 193 10/11/2023
4.0.58 228 10/5/2023
4.0.57 206 10/4/2023
4.0.56 199 9/26/2023
4.0.55 198 9/25/2023
4.0.54 220 9/22/2023
4.0.53 224 9/20/2023
4.0.52 215 9/19/2023
4.0.51 207 9/18/2023
4.0.50 194 9/18/2023
4.0.49 249 9/14/2023
4.0.48 228 9/13/2023
4.0.47 193 9/12/2023
4.0.46 278 9/11/2023
4.0.45 196 9/11/2023
4.0.44 183 9/11/2023
4.0.43 314 9/7/2023
4.0.42 198 9/6/2023
4.0.41 262 9/5/2023
4.0.40 206 9/4/2023
4.0.39 217 9/4/2023
4.0.38 252 9/1/2023
4.0.37 261 8/31/2023
4.0.36 248 8/30/2023
4.0.35 267 8/29/2023
4.0.34 209 8/29/2023
4.0.33 290 8/28/2023
4.0.32 266 8/25/2023
4.0.31 251 8/24/2023
4.0.30 233 8/23/2023
4.0.29 246 8/22/2023
4.0.28 246 8/18/2023
4.0.27 257 8/17/2023
4.0.26 231 8/17/2023
4.0.25 220 8/16/2023
4.0.24 314 8/10/2023
4.0.23 268 8/9/2023
4.0.22 272 8/8/2023
4.0.21 240 8/8/2023
4.0.20 350 8/7/2023
4.0.19 245 8/4/2023
4.0.18 305 8/3/2023
4.0.17 279 8/2/2023
4.0.16 283 7/26/2023
4.0.15 260 7/25/2023
4.0.14 282 7/20/2023
4.0.13 276 7/19/2023
4.0.12 259 7/18/2023
4.0.11 209 7/18/2023
4.0.10 263 7/18/2023
4.0.9 219 7/18/2023
4.0.8 337 7/17/2023
4.0.7 235 7/17/2023
4.0.6 617 1/30/2023
4.0.5 472 1/30/2023
4.0.4 472 1/27/2023
4.0.3 582 12/13/2022
4.0.0 381 12/12/2022
3.0.47 1,596 6/10/2022
3.0.45 1,065 4/20/2022
3.0.44 1,090 1/11/2022
3.0.43 709 1/10/2022
3.0.42 1,180 6/17/2021
3.0.41 834 6/16/2021
3.0.40 801 6/16/2021
3.0.39 592 6/16/2021
3.0.38 1,109 1/7/2021
3.0.37 920 12/16/2020
3.0.36 850 12/14/2020
3.0.35 2,402 9/13/2020
3.0.34 977 6/19/2020
3.0.33 1,972 5/12/2020
3.0.32 1,492 5/12/2020
3.0.31 980 4/28/2020
3.0.30 933 4/24/2020
3.0.29 923 4/16/2020
3.0.28 989 4/16/2020
3.0.27 663 4/15/2020
3.0.26 953 4/15/2020
3.0.25 1,013 4/14/2020
3.0.24 708 4/14/2020
3.0.23 1,048 4/10/2020
3.0.22 996 4/10/2020
3.0.21 1,030 4/7/2020
3.0.20 2,850 3/26/2020
3.0.19 1,017 3/26/2020
3.0.18 692 3/25/2020
3.0.17 688 3/25/2020
3.0.16 700 3/25/2020
3.0.15 710 3/25/2020
3.0.13 708 3/25/2020
3.0.12 708 3/25/2020
3.0.11 677 3/25/2020
3.0.10 1,237 3/25/2020
3.0.9 1,059 3/22/2020
3.0.8 669 3/22/2020
3.0.7 1,060 3/21/2020
3.0.6 1,688 3/13/2020
3.0.5 730 3/13/2020
3.0.4 1,436 2/28/2020
3.0.3 1,285 2/21/2020
3.0.2 739 2/11/2020
3.0.1 713 2/11/2020
3.0.0 1,884 12/23/2019
2.0.13 740 11/4/2019
2.0.12 818 6/19/2019
2.0.11 788 6/19/2019
2.0.10 1,092 4/17/2019
2.0.9 1,648 2/21/2019
2.0.8 4,096 8/1/2018
2.0.7 1,437 8/1/2018
2.0.6 1,949 6/26/2018
2.0.5 1,314 6/14/2018
2.0.4 1,905 6/1/2018
2.0.3 1,864 5/22/2018
2.0.2 2,456 5/11/2018
2.0.1 2,532 2/13/2018
2.0.0 2,433 1/2/2018
1.0.29 4,047 11/16/2017
1.0.28 1,159 11/16/2017
1.0.27 6,560 10/18/2017
1.0.26 4,765 9/22/2017
1.0.24 1,226 9/22/2017
1.0.23 1,570 9/22/2017
1.0.22 1,233 9/22/2017
1.0.21 1,249 9/22/2017
1.0.19 1,253 9/22/2017
1.0.18 1,246 9/21/2017
1.0.17 2,285 8/4/2017
1.0.16 1,256 7/3/2017
1.0.15 1,270 6/16/2017
1.0.13 1,264 6/16/2017
1.0.12 1,249 6/16/2017
1.0.11 1,269 5/30/2017
1.0.9 1,260 5/25/2017
1.0.8 1,244 5/24/2017
1.0.7 1,269 5/19/2017
1.0.6 1,307 5/17/2017
1.0.4 1,368 4/3/2017
1.0.3 1,383 3/22/2017
1.0.2 1,374 2/2/2017