Data.Modeler 5.0.64

There is a newer version of this package available.
See the version list below for details.
dotnet add package Data.Modeler --version 5.0.64
                    
NuGet\Install-Package Data.Modeler -Version 5.0.64
                    
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.64" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Data.Modeler" Version="5.0.64" />
                    
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.64
                    
#r "nuget: Data.Modeler, 5.0.64"
                    
#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.64
                    
#: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.64
                    
Install as a Cake Addin
#tool nuget:?package=Data.Modeler&version=5.0.64
                    
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 218 8/20/2025
5.0.64 127 8/20/2025
5.0.63 134 8/20/2025
5.0.62 127 8/19/2025
5.0.61 130 8/19/2025
5.0.60 156 8/19/2025
5.0.59 123 8/15/2025
5.0.58 285 8/6/2025
5.0.57 236 8/5/2025
5.0.56 214 8/5/2025
5.0.55 217 8/5/2025
5.0.54 246 8/5/2025
5.0.53 189 8/5/2025
5.0.52 63 8/1/2025
5.0.51 112 7/28/2025
5.0.50 130 7/17/2025
5.0.49 121 7/17/2025
5.0.48 191 7/15/2025
5.0.47 147 7/14/2025
5.0.46 147 7/14/2025
5.0.45 189 7/8/2025
5.0.44 499 6/30/2025
5.0.43 141 6/30/2025
5.0.42 140 6/30/2025
5.0.41 149 6/27/2025
5.0.40 187 6/27/2025
5.0.39 136 6/27/2025
5.0.38 144 6/27/2025
5.0.37 140 6/27/2025
5.0.36 185 6/26/2025
5.0.35 158 6/18/2025
5.0.34 311 6/10/2025
5.0.33 108 5/30/2025
5.0.32 116 5/23/2025
5.0.31 251 5/14/2025
5.0.30 129 5/2/2025
5.0.29 183 4/28/2025
5.0.28 141 4/11/2025
5.0.27 175 3/17/2025
5.0.26 150 2/24/2025
5.0.25 172 2/12/2025
5.0.24 282 2/3/2025
5.0.23 191 1/30/2025
5.0.22 159 1/29/2025
5.0.21 128 1/29/2025
5.0.20 145 1/28/2025
5.0.19 144 1/24/2025
5.0.18 149 1/23/2025
5.0.17 127 1/23/2025
5.0.16 171 1/16/2025
5.0.15 145 1/15/2025
5.0.14 130 1/14/2025
5.0.13 132 1/13/2025
5.0.12 143 1/10/2025
5.0.11 144 1/9/2025
5.0.10 121 1/8/2025
5.0.9 200 12/17/2024
5.0.8 141 12/17/2024
5.0.7 183 12/10/2024
5.0.6 145 12/9/2024
5.0.5 215 11/26/2024
5.0.4 175 11/26/2024
5.0.3 131 11/25/2024
5.0.2 168 11/24/2024
5.0.1 150 11/23/2024
5.0.0 141 11/23/2024
4.0.268 162 11/19/2024
4.0.267 138 11/11/2024
4.0.266 135 11/6/2024
4.0.265 130 11/5/2024
4.0.264 130 11/4/2024
4.0.263 154 11/1/2024
4.0.262 135 10/31/2024
4.0.261 140 10/30/2024
4.0.260 139 10/29/2024
4.0.259 137 10/29/2024
4.0.258 148 10/25/2024
4.0.257 128 10/24/2024
4.0.256 150 10/21/2024
4.0.255 148 10/16/2024
4.0.254 132 10/15/2024
4.0.253 141 10/11/2024
4.0.252 135 10/10/2024
4.0.251 135 10/9/2024
4.0.250 143 10/8/2024
4.0.249 149 10/2/2024
4.0.248 148 10/1/2024
4.0.247 138 9/30/2024
4.0.246 151 9/27/2024
4.0.245 142 9/24/2024
4.0.244 154 9/23/2024
4.0.243 136 9/23/2024
4.0.242 180 9/17/2024
4.0.241 172 9/10/2024
4.0.240 148 9/9/2024
4.0.239 149 9/6/2024
4.0.238 157 9/5/2024
4.0.237 159 9/3/2024
4.0.236 154 9/2/2024
4.0.235 155 8/30/2024
4.0.234 159 8/29/2024
4.0.233 161 8/28/2024
4.0.232 154 8/27/2024
4.0.231 156 8/26/2024
4.0.230 173 8/23/2024
4.0.229 169 8/22/2024
4.0.228 169 8/21/2024
4.0.227 170 8/20/2024
4.0.226 168 8/20/2024
4.0.225 192 8/19/2024
4.0.224 187 8/16/2024
4.0.223 168 8/15/2024
4.0.222 190 8/14/2024
4.0.221 147 8/5/2024
4.0.220 140 8/2/2024
4.0.219 165 8/1/2024
4.0.218 133 7/31/2024
4.0.217 159 7/26/2024
4.0.216 134 7/25/2024
4.0.215 104 7/24/2024
4.0.214 158 7/11/2024
4.0.213 143 7/10/2024
4.0.212 138 7/9/2024
4.0.211 145 7/9/2024
4.0.210 144 7/8/2024
4.0.209 161 7/5/2024
4.0.208 161 7/5/2024
4.0.207 146 7/2/2024
4.0.206 139 7/1/2024
4.0.205 168 6/27/2024
4.0.204 160 6/26/2024
4.0.203 159 6/25/2024
4.0.202 169 6/24/2024
4.0.201 1,041 6/19/2024
4.0.200 170 6/18/2024
4.0.199 142 6/17/2024
4.0.198 149 6/14/2024
4.0.197 144 6/13/2024
4.0.196 154 6/12/2024
4.0.195 163 6/3/2024
4.0.194 150 5/31/2024
4.0.193 176 5/30/2024
4.0.192 152 5/29/2024
4.0.191 172 5/27/2024
4.0.190 153 5/27/2024
4.0.189 143 5/23/2024
4.0.188 154 5/22/2024
4.0.187 189 5/21/2024
4.0.186 167 5/20/2024
4.0.185 169 5/17/2024
4.0.184 161 5/16/2024
4.0.183 168 5/15/2024
4.0.182 166 5/8/2024
4.0.181 153 5/7/2024
4.0.180 169 5/6/2024
4.0.179 169 5/3/2024
4.0.178 727 5/2/2024
4.0.177 132 5/1/2024
4.0.176 161 4/30/2024
4.0.175 153 4/29/2024
4.0.174 155 4/29/2024
4.0.173 170 4/25/2024
4.0.172 166 4/24/2024
4.0.171 176 4/16/2024
4.0.170 163 4/15/2024
4.0.169 163 4/12/2024
4.0.168 158 4/12/2024
4.0.167 177 4/11/2024
4.0.166 189 4/10/2024
4.0.165 165 4/9/2024
4.0.164 170 4/8/2024
4.0.163 166 4/1/2024
4.0.162 148 3/29/2024
4.0.161 164 3/28/2024
4.0.160 150 3/26/2024
4.0.159 176 3/23/2024
4.0.158 171 3/22/2024
4.0.157 172 3/21/2024
4.0.156 150 3/18/2024
4.0.155 179 3/15/2024
4.0.154 171 3/14/2024
4.0.153 175 3/13/2024
4.0.152 192 3/11/2024
4.0.151 171 3/8/2024
4.0.150 170 3/7/2024
4.0.149 162 3/6/2024
4.0.148 170 3/5/2024
4.0.147 988 3/4/2024
4.0.146 189 3/1/2024
4.0.145 187 2/29/2024
4.0.144 184 2/28/2024
4.0.143 189 2/27/2024
4.0.142 182 2/26/2024
4.0.141 197 2/23/2024
4.0.140 191 2/22/2024
4.0.139 174 2/21/2024
4.0.138 197 2/20/2024
4.0.137 431 2/19/2024
4.0.136 158 2/19/2024
4.0.135 158 2/16/2024
4.0.134 164 2/16/2024
4.0.133 162 2/15/2024
4.0.132 169 2/14/2024
4.0.131 158 2/13/2024
4.0.130 188 2/12/2024
4.0.129 162 2/9/2024
4.0.128 206 2/8/2024
4.0.127 168 2/7/2024
4.0.126 182 2/6/2024
4.0.125 141 2/6/2024
4.0.124 154 2/5/2024
4.0.123 526 2/2/2024
4.0.122 176 2/1/2024
4.0.121 154 2/1/2024
4.0.120 180 1/31/2024
4.0.119 244 1/30/2024
4.0.118 177 1/29/2024
4.0.117 192 1/26/2024
4.0.116 169 1/24/2024
4.0.115 152 1/23/2024
4.0.114 161 1/22/2024
4.0.113 363 1/16/2024
4.0.112 203 1/15/2024
4.0.111 178 1/15/2024
4.0.110 174 1/12/2024
4.0.109 161 1/11/2024
4.0.108 165 1/10/2024
4.0.107 351 1/8/2024
4.0.106 229 1/5/2024
4.0.105 350 12/26/2023
4.0.104 188 12/26/2023
4.0.103 207 12/25/2023
4.0.102 184 12/25/2023
4.0.101 266 12/22/2023
4.0.100 208 12/21/2023
4.0.99 223 12/15/2023
4.0.98 187 12/14/2023
4.0.97 170 12/13/2023
4.0.96 196 12/13/2023
4.0.95 350 12/12/2023
4.0.94 188 12/12/2023
4.0.93 186 12/11/2023
4.0.92 179 12/11/2023
4.0.91 236 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 181 11/21/2023
4.0.84 190 11/20/2023
4.0.83 181 11/20/2023
4.0.82 222 11/17/2023
4.0.81 672 11/16/2023
4.0.80 191 11/15/2023
4.0.79 191 11/13/2023
4.0.78 202 11/9/2023
4.0.77 210 11/8/2023
4.0.76 160 11/8/2023
4.0.75 182 11/7/2023
4.0.74 193 11/6/2023
4.0.73 190 11/3/2023
4.0.72 233 11/2/2023
4.0.71 176 11/1/2023
4.0.70 174 11/1/2023
4.0.69 217 10/31/2023
4.0.68 204 10/30/2023
4.0.67 200 10/27/2023
4.0.66 209 10/26/2023
4.0.65 215 10/25/2023
4.0.64 207 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 252 10/12/2023
4.0.59 192 10/11/2023
4.0.58 228 10/5/2023
4.0.57 205 10/4/2023
4.0.56 198 9/26/2023
4.0.55 198 9/25/2023
4.0.54 218 9/22/2023
4.0.53 224 9/20/2023
4.0.52 213 9/19/2023
4.0.51 206 9/18/2023
4.0.50 193 9/18/2023
4.0.49 249 9/14/2023
4.0.48 226 9/13/2023
4.0.47 191 9/12/2023
4.0.46 277 9/11/2023
4.0.45 195 9/11/2023
4.0.44 182 9/11/2023
4.0.43 312 9/7/2023
4.0.42 195 9/6/2023
4.0.41 259 9/5/2023
4.0.40 203 9/4/2023
4.0.39 212 9/4/2023
4.0.38 250 9/1/2023
4.0.37 257 8/31/2023
4.0.36 242 8/30/2023
4.0.35 264 8/29/2023
4.0.34 203 8/29/2023
4.0.33 288 8/28/2023
4.0.32 262 8/25/2023
4.0.31 249 8/24/2023
4.0.30 231 8/23/2023
4.0.29 244 8/22/2023
4.0.28 244 8/18/2023
4.0.27 255 8/17/2023
4.0.26 229 8/17/2023
4.0.25 218 8/16/2023
4.0.24 311 8/10/2023
4.0.23 266 8/9/2023
4.0.22 266 8/8/2023
4.0.21 238 8/8/2023
4.0.20 348 8/7/2023
4.0.19 243 8/4/2023
4.0.18 303 8/3/2023
4.0.17 272 8/2/2023
4.0.16 281 7/26/2023
4.0.15 258 7/25/2023
4.0.14 280 7/20/2023
4.0.13 272 7/19/2023
4.0.12 256 7/18/2023
4.0.11 207 7/18/2023
4.0.10 261 7/18/2023
4.0.9 217 7/18/2023
4.0.8 334 7/17/2023
4.0.7 232 7/17/2023
4.0.6 609 1/30/2023
4.0.5 466 1/30/2023
4.0.4 468 1/27/2023
4.0.3 577 12/13/2022
4.0.0 377 12/12/2022
3.0.47 1,592 6/10/2022
3.0.45 1,059 4/20/2022
3.0.44 1,083 1/11/2022
3.0.43 702 1/10/2022
3.0.42 1,176 6/17/2021
3.0.41 828 6/16/2021
3.0.40 795 6/16/2021
3.0.39 585 6/16/2021
3.0.38 1,104 1/7/2021
3.0.37 916 12/16/2020
3.0.36 846 12/14/2020
3.0.35 2,397 9/13/2020
3.0.34 972 6/19/2020
3.0.33 1,967 5/12/2020
3.0.32 1,486 5/12/2020
3.0.31 975 4/28/2020
3.0.30 928 4/24/2020
3.0.29 918 4/16/2020
3.0.28 984 4/16/2020
3.0.27 658 4/15/2020
3.0.26 948 4/15/2020
3.0.25 1,008 4/14/2020
3.0.24 703 4/14/2020
3.0.23 1,042 4/10/2020
3.0.22 989 4/10/2020
3.0.21 1,025 4/7/2020
3.0.20 2,845 3/26/2020
3.0.19 1,012 3/26/2020
3.0.18 684 3/25/2020
3.0.17 682 3/25/2020
3.0.16 694 3/25/2020
3.0.15 705 3/25/2020
3.0.13 701 3/25/2020
3.0.12 703 3/25/2020
3.0.11 672 3/25/2020
3.0.10 1,230 3/25/2020
3.0.9 1,051 3/22/2020
3.0.8 664 3/22/2020
3.0.7 1,052 3/21/2020
3.0.6 1,683 3/13/2020
3.0.5 724 3/13/2020
3.0.4 1,431 2/28/2020
3.0.3 1,280 2/21/2020
3.0.2 734 2/11/2020
3.0.1 708 2/11/2020
3.0.0 1,878 12/23/2019
2.0.13 734 11/4/2019
2.0.12 813 6/19/2019
2.0.11 783 6/19/2019
2.0.10 1,087 4/17/2019
2.0.9 1,643 2/21/2019
2.0.8 4,085 8/1/2018
2.0.7 1,427 8/1/2018
2.0.6 1,934 6/26/2018
2.0.5 1,299 6/14/2018
2.0.4 1,889 6/1/2018
2.0.3 1,849 5/22/2018
2.0.2 2,440 5/11/2018
2.0.1 2,517 2/13/2018
2.0.0 2,418 1/2/2018
1.0.29 4,036 11/16/2017
1.0.28 1,148 11/16/2017
1.0.27 6,550 10/18/2017
1.0.26 4,755 9/22/2017
1.0.24 1,215 9/22/2017
1.0.23 1,558 9/22/2017
1.0.22 1,223 9/22/2017
1.0.21 1,237 9/22/2017
1.0.19 1,241 9/22/2017
1.0.18 1,235 9/21/2017
1.0.17 2,275 8/4/2017
1.0.16 1,245 7/3/2017
1.0.15 1,259 6/16/2017
1.0.13 1,254 6/16/2017
1.0.12 1,239 6/16/2017
1.0.11 1,259 5/30/2017
1.0.9 1,249 5/25/2017
1.0.8 1,234 5/24/2017
1.0.7 1,259 5/19/2017
1.0.6 1,297 5/17/2017
1.0.4 1,358 4/3/2017
1.0.3 1,371 3/22/2017
1.0.2 1,362 2/2/2017