Data.Modeler 5.0.41

There is a newer version of this package available.
See the version list below for details.
dotnet add package Data.Modeler --version 5.0.41
                    
NuGet\Install-Package Data.Modeler -Version 5.0.41
                    
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.41" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Data.Modeler" Version="5.0.41" />
                    
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.41
                    
#r "nuget: Data.Modeler, 5.0.41"
                    
#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.41
                    
#: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.41
                    
Install as a Cake Addin
#tool nuget:?package=Data.Modeler&version=5.0.41
                    
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.65 11 8/20/2025
5.0.64 12 8/20/2025
5.0.63 11 8/20/2025
5.0.62 9 8/19/2025
5.0.61 9 8/19/2025
5.0.60 9 8/19/2025
5.0.59 27 8/15/2025
5.0.58 168 8/6/2025
5.0.57 204 8/5/2025
5.0.56 191 8/5/2025
5.0.55 191 8/5/2025
5.0.54 232 8/5/2025
5.0.53 175 8/5/2025
5.0.52 51 8/1/2025
5.0.51 94 7/28/2025
5.0.50 121 7/17/2025
5.0.49 112 7/17/2025
5.0.48 182 7/15/2025
5.0.47 138 7/14/2025
5.0.46 138 7/14/2025
5.0.45 180 7/8/2025
5.0.44 489 6/30/2025
5.0.43 133 6/30/2025
5.0.42 132 6/30/2025
5.0.41 141 6/27/2025
5.0.40 179 6/27/2025
5.0.39 128 6/27/2025
5.0.38 136 6/27/2025
5.0.37 132 6/27/2025
5.0.36 177 6/26/2025
5.0.35 151 6/18/2025
5.0.34 301 6/10/2025
5.0.33 100 5/30/2025
5.0.32 107 5/23/2025
5.0.31 243 5/14/2025
5.0.30 121 5/2/2025
5.0.29 175 4/28/2025
5.0.28 133 4/11/2025
5.0.27 167 3/17/2025
5.0.26 142 2/24/2025
5.0.25 164 2/12/2025
5.0.24 267 2/3/2025
5.0.23 182 1/30/2025
5.0.22 152 1/29/2025
5.0.21 116 1/29/2025
5.0.20 137 1/28/2025
5.0.19 137 1/24/2025
5.0.18 142 1/23/2025
5.0.17 120 1/23/2025
5.0.16 164 1/16/2025
5.0.15 138 1/15/2025
5.0.14 123 1/14/2025
5.0.13 125 1/13/2025
5.0.12 135 1/10/2025
5.0.11 137 1/9/2025
5.0.10 114 1/8/2025
5.0.9 193 12/17/2024
5.0.8 134 12/17/2024
5.0.7 176 12/10/2024
5.0.6 138 12/9/2024
5.0.5 207 11/26/2024
5.0.4 168 11/26/2024
5.0.3 124 11/25/2024
5.0.2 161 11/24/2024
5.0.1 141 11/23/2024
5.0.0 134 11/23/2024
4.0.268 154 11/19/2024
4.0.267 131 11/11/2024
4.0.266 128 11/6/2024
4.0.265 123 11/5/2024
4.0.264 122 11/4/2024
4.0.263 146 11/1/2024
4.0.262 126 10/31/2024
4.0.261 133 10/30/2024
4.0.260 132 10/29/2024
4.0.259 130 10/29/2024
4.0.258 140 10/25/2024
4.0.257 121 10/24/2024
4.0.256 141 10/21/2024
4.0.255 140 10/16/2024
4.0.254 124 10/15/2024
4.0.253 133 10/11/2024
4.0.252 128 10/10/2024
4.0.251 128 10/9/2024
4.0.250 137 10/8/2024
4.0.249 142 10/2/2024
4.0.248 140 10/1/2024
4.0.247 131 9/30/2024
4.0.246 144 9/27/2024
4.0.245 135 9/24/2024
4.0.244 143 9/23/2024
4.0.243 127 9/23/2024
4.0.242 172 9/17/2024
4.0.241 165 9/10/2024
4.0.240 135 9/9/2024
4.0.239 142 9/6/2024
4.0.238 149 9/5/2024
4.0.237 146 9/3/2024
4.0.236 147 9/2/2024
4.0.235 148 8/30/2024
4.0.234 150 8/29/2024
4.0.233 153 8/28/2024
4.0.232 147 8/27/2024
4.0.231 149 8/26/2024
4.0.230 166 8/23/2024
4.0.229 162 8/22/2024
4.0.228 161 8/21/2024
4.0.227 163 8/20/2024
4.0.226 161 8/20/2024
4.0.225 185 8/19/2024
4.0.224 180 8/16/2024
4.0.223 159 8/15/2024
4.0.222 183 8/14/2024
4.0.221 140 8/5/2024
4.0.220 133 8/2/2024
4.0.219 158 8/1/2024
4.0.218 125 7/31/2024
4.0.217 151 7/26/2024
4.0.216 127 7/25/2024
4.0.215 97 7/24/2024
4.0.214 151 7/11/2024
4.0.213 136 7/10/2024
4.0.212 131 7/9/2024
4.0.211 138 7/9/2024
4.0.210 137 7/8/2024
4.0.209 154 7/5/2024
4.0.208 153 7/5/2024
4.0.207 139 7/2/2024
4.0.206 132 7/1/2024
4.0.205 160 6/27/2024
4.0.204 153 6/26/2024
4.0.203 152 6/25/2024
4.0.202 159 6/24/2024
4.0.201 1,034 6/19/2024
4.0.200 162 6/18/2024
4.0.199 135 6/17/2024
4.0.198 142 6/14/2024
4.0.197 137 6/13/2024
4.0.196 147 6/12/2024
4.0.195 156 6/3/2024
4.0.194 143 5/31/2024
4.0.193 168 5/30/2024
4.0.192 145 5/29/2024
4.0.191 165 5/27/2024
4.0.190 146 5/27/2024
4.0.189 136 5/23/2024
4.0.188 147 5/22/2024
4.0.187 182 5/21/2024
4.0.186 160 5/20/2024
4.0.185 162 5/17/2024
4.0.184 155 5/16/2024
4.0.183 161 5/15/2024
4.0.182 159 5/8/2024
4.0.181 145 5/7/2024
4.0.180 162 5/6/2024
4.0.179 161 5/3/2024
4.0.178 718 5/2/2024
4.0.177 124 5/1/2024
4.0.176 154 4/30/2024
4.0.175 146 4/29/2024
4.0.174 148 4/29/2024
4.0.173 162 4/25/2024
4.0.172 158 4/24/2024
4.0.171 169 4/16/2024
4.0.170 156 4/15/2024
4.0.169 156 4/12/2024
4.0.168 151 4/12/2024
4.0.167 170 4/11/2024
4.0.166 181 4/10/2024
4.0.165 158 4/9/2024
4.0.164 163 4/8/2024
4.0.163 159 4/1/2024
4.0.162 141 3/29/2024
4.0.161 157 3/28/2024
4.0.160 143 3/26/2024
4.0.159 169 3/23/2024
4.0.158 162 3/22/2024
4.0.157 164 3/21/2024
4.0.156 142 3/18/2024
4.0.155 172 3/15/2024
4.0.154 164 3/14/2024
4.0.153 168 3/13/2024
4.0.152 182 3/11/2024
4.0.151 164 3/8/2024
4.0.150 163 3/7/2024
4.0.149 155 3/6/2024
4.0.148 164 3/5/2024
4.0.147 981 3/4/2024
4.0.146 180 3/1/2024
4.0.145 178 2/29/2024
4.0.144 177 2/28/2024
4.0.143 181 2/27/2024
4.0.142 174 2/26/2024
4.0.141 190 2/23/2024
4.0.140 182 2/22/2024
4.0.139 167 2/21/2024
4.0.138 188 2/20/2024
4.0.137 421 2/19/2024
4.0.136 151 2/19/2024
4.0.135 151 2/16/2024
4.0.134 156 2/16/2024
4.0.133 155 2/15/2024
4.0.132 162 2/14/2024
4.0.131 151 2/13/2024
4.0.130 181 2/12/2024
4.0.129 155 2/9/2024
4.0.128 199 2/8/2024
4.0.127 160 2/7/2024
4.0.126 174 2/6/2024
4.0.125 134 2/6/2024
4.0.124 147 2/5/2024
4.0.123 519 2/2/2024
4.0.122 167 2/1/2024
4.0.121 147 2/1/2024
4.0.120 172 1/31/2024
4.0.119 238 1/30/2024
4.0.118 170 1/29/2024
4.0.117 185 1/26/2024
4.0.116 161 1/24/2024
4.0.115 145 1/23/2024
4.0.114 153 1/22/2024
4.0.113 354 1/16/2024
4.0.112 195 1/15/2024
4.0.111 171 1/15/2024
4.0.110 167 1/12/2024
4.0.109 154 1/11/2024
4.0.108 158 1/10/2024
4.0.107 341 1/8/2024
4.0.106 222 1/5/2024
4.0.105 343 12/26/2023
4.0.104 178 12/26/2023
4.0.103 200 12/25/2023
4.0.102 176 12/25/2023
4.0.101 259 12/22/2023
4.0.100 200 12/21/2023
4.0.99 216 12/15/2023
4.0.98 180 12/14/2023
4.0.97 163 12/13/2023
4.0.96 188 12/13/2023
4.0.95 342 12/12/2023
4.0.94 181 12/12/2023
4.0.93 179 12/11/2023
4.0.92 172 12/11/2023
4.0.91 231 12/6/2023
4.0.90 174 12/6/2023
4.0.89 169 12/5/2023
4.0.88 220 12/4/2023
4.0.87 226 11/24/2023
4.0.86 179 11/23/2023
4.0.85 174 11/21/2023
4.0.84 185 11/20/2023
4.0.83 175 11/20/2023
4.0.82 214 11/17/2023
4.0.81 667 11/16/2023
4.0.80 186 11/15/2023
4.0.79 186 11/13/2023
4.0.78 197 11/9/2023
4.0.77 205 11/8/2023
4.0.76 155 11/8/2023
4.0.75 175 11/7/2023
4.0.74 188 11/6/2023
4.0.73 183 11/3/2023
4.0.72 226 11/2/2023
4.0.71 171 11/1/2023
4.0.70 167 11/1/2023
4.0.69 211 10/31/2023
4.0.68 199 10/30/2023
4.0.67 195 10/27/2023
4.0.66 203 10/26/2023
4.0.65 210 10/25/2023
4.0.64 202 10/17/2023
4.0.63 163 10/17/2023
4.0.62 221 10/16/2023
4.0.61 228 10/13/2023
4.0.60 246 10/12/2023
4.0.59 187 10/11/2023
4.0.58 223 10/5/2023
4.0.57 200 10/4/2023
4.0.56 193 9/26/2023
4.0.55 193 9/25/2023
4.0.54 211 9/22/2023
4.0.53 219 9/20/2023
4.0.52 208 9/19/2023
4.0.51 200 9/18/2023
4.0.50 187 9/18/2023
4.0.49 244 9/14/2023
4.0.48 221 9/13/2023
4.0.47 186 9/12/2023
4.0.46 270 9/11/2023
4.0.45 188 9/11/2023
4.0.44 175 9/11/2023
4.0.43 304 9/7/2023
4.0.42 188 9/6/2023
4.0.41 252 9/5/2023
4.0.40 196 9/4/2023
4.0.39 205 9/4/2023
4.0.38 243 9/1/2023
4.0.37 249 8/31/2023
4.0.36 235 8/30/2023
4.0.35 257 8/29/2023
4.0.34 193 8/29/2023
4.0.33 279 8/28/2023
4.0.32 254 8/25/2023
4.0.31 242 8/24/2023
4.0.30 224 8/23/2023
4.0.29 237 8/22/2023
4.0.28 235 8/18/2023
4.0.27 248 8/17/2023
4.0.26 223 8/17/2023
4.0.25 209 8/16/2023
4.0.24 304 8/10/2023
4.0.23 257 8/9/2023
4.0.22 256 8/8/2023
4.0.21 231 8/8/2023
4.0.20 341 8/7/2023
4.0.19 235 8/4/2023
4.0.18 296 8/3/2023
4.0.17 264 8/2/2023
4.0.16 273 7/26/2023
4.0.15 251 7/25/2023
4.0.14 273 7/20/2023
4.0.13 265 7/19/2023
4.0.12 248 7/18/2023
4.0.11 200 7/18/2023
4.0.10 254 7/18/2023
4.0.9 210 7/18/2023
4.0.8 327 7/17/2023
4.0.7 225 7/17/2023
4.0.6 601 1/30/2023
4.0.5 459 1/30/2023
4.0.4 461 1/27/2023
4.0.3 568 12/13/2022
4.0.0 370 12/12/2022
3.0.47 1,585 6/10/2022
3.0.45 1,052 4/20/2022
3.0.44 1,075 1/11/2022
3.0.43 694 1/10/2022
3.0.42 1,168 6/17/2021
3.0.41 821 6/16/2021
3.0.40 786 6/16/2021
3.0.39 577 6/16/2021
3.0.38 1,094 1/7/2021
3.0.37 907 12/16/2020
3.0.36 836 12/14/2020
3.0.35 2,386 9/13/2020
3.0.34 963 6/19/2020
3.0.33 1,956 5/12/2020
3.0.32 1,474 5/12/2020
3.0.31 966 4/28/2020
3.0.30 919 4/24/2020
3.0.29 906 4/16/2020
3.0.28 975 4/16/2020
3.0.27 649 4/15/2020
3.0.26 939 4/15/2020
3.0.25 999 4/14/2020
3.0.24 694 4/14/2020
3.0.23 1,033 4/10/2020
3.0.22 978 4/10/2020
3.0.21 1,016 4/7/2020
3.0.20 2,836 3/26/2020
3.0.19 1,003 3/26/2020
3.0.18 675 3/25/2020
3.0.17 673 3/25/2020
3.0.16 685 3/25/2020
3.0.15 696 3/25/2020
3.0.13 691 3/25/2020
3.0.12 694 3/25/2020
3.0.11 663 3/25/2020
3.0.10 1,220 3/25/2020
3.0.9 1,042 3/22/2020
3.0.8 656 3/22/2020
3.0.7 1,043 3/21/2020
3.0.6 1,675 3/13/2020
3.0.5 714 3/13/2020
3.0.4 1,423 2/28/2020
3.0.3 1,272 2/21/2020
3.0.2 726 2/11/2020
3.0.1 700 2/11/2020
3.0.0 1,869 12/23/2019
2.0.13 726 11/4/2019
2.0.12 804 6/19/2019
2.0.11 775 6/19/2019
2.0.10 1,079 4/17/2019
2.0.9 1,635 2/21/2019
2.0.8 4,074 8/1/2018
2.0.7 1,416 8/1/2018
2.0.6 1,918 6/26/2018
2.0.5 1,283 6/14/2018
2.0.4 1,873 6/1/2018
2.0.3 1,835 5/22/2018
2.0.2 2,425 5/11/2018
2.0.1 2,503 2/13/2018
2.0.0 2,402 1/2/2018
1.0.29 4,025 11/16/2017
1.0.28 1,136 11/16/2017
1.0.27 6,539 10/18/2017
1.0.26 4,741 9/22/2017
1.0.24 1,204 9/22/2017
1.0.23 1,547 9/22/2017
1.0.22 1,212 9/22/2017
1.0.21 1,226 9/22/2017
1.0.19 1,230 9/22/2017
1.0.18 1,224 9/21/2017
1.0.17 2,263 8/4/2017
1.0.16 1,234 7/3/2017
1.0.15 1,248 6/16/2017
1.0.13 1,242 6/16/2017
1.0.12 1,228 6/16/2017
1.0.11 1,248 5/30/2017
1.0.9 1,238 5/25/2017
1.0.8 1,223 5/24/2017
1.0.7 1,248 5/19/2017
1.0.6 1,285 5/17/2017
1.0.4 1,347 4/3/2017
1.0.3 1,358 3/22/2017
1.0.2 1,351 2/2/2017