Data.Modeler 5.0.28

dotnet add package Data.Modeler --version 5.0.28
                    
NuGet\Install-Package Data.Modeler -Version 5.0.28
                    
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.28" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Data.Modeler" Version="5.0.28" />
                    
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.28
                    
#r "nuget: Data.Modeler, 5.0.28"
                    
#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.
#addin nuget:?package=Data.Modeler&version=5.0.28
                    
Install Data.Modeler as a Cake Addin
#tool nuget:?package=Data.Modeler&version=5.0.28
                    
Install Data.Modeler 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. 
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.28 31 4/11/2025
5.0.27 138 3/17/2025
5.0.26 109 2/24/2025
5.0.25 137 2/12/2025
5.0.24 173 2/3/2025
5.0.23 157 1/30/2025
5.0.22 116 1/29/2025
5.0.21 87 1/29/2025
5.0.20 115 1/28/2025
5.0.19 110 1/24/2025
5.0.18 117 1/23/2025
5.0.17 96 1/23/2025
5.0.16 136 1/16/2025
5.0.15 116 1/15/2025
5.0.14 94 1/14/2025
5.0.13 103 1/13/2025
5.0.12 104 1/10/2025
5.0.11 115 1/9/2025
5.0.10 89 1/8/2025
5.0.9 172 12/17/2024
5.0.8 100 12/17/2024
5.0.7 148 12/10/2024
5.0.6 112 12/9/2024
5.0.5 178 11/26/2024
5.0.4 140 11/26/2024
5.0.3 97 11/25/2024
5.0.2 131 11/24/2024
5.0.1 115 11/23/2024
5.0.0 110 11/23/2024
4.0.268 123 11/19/2024
4.0.267 110 11/11/2024
4.0.266 100 11/6/2024
4.0.265 98 11/5/2024
4.0.264 101 11/4/2024
4.0.263 109 11/1/2024
4.0.262 101 10/31/2024
4.0.261 103 10/30/2024
4.0.260 102 10/29/2024
4.0.259 98 10/29/2024
4.0.258 109 10/25/2024
4.0.257 100 10/24/2024
4.0.256 101 10/21/2024
4.0.255 114 10/16/2024
4.0.254 94 10/15/2024
4.0.253 102 10/11/2024
4.0.252 101 10/10/2024
4.0.251 106 10/9/2024
4.0.250 112 10/8/2024
4.0.249 103 10/2/2024
4.0.248 101 10/1/2024
4.0.247 107 9/30/2024
4.0.246 107 9/27/2024
4.0.245 106 9/24/2024
4.0.244 117 9/23/2024
4.0.243 102 9/23/2024
4.0.242 143 9/17/2024
4.0.241 129 9/10/2024
4.0.240 115 9/9/2024
4.0.239 113 9/6/2024
4.0.238 120 9/5/2024
4.0.237 124 9/3/2024
4.0.236 124 9/2/2024
4.0.235 123 8/30/2024
4.0.234 120 8/29/2024
4.0.233 121 8/28/2024
4.0.232 123 8/27/2024
4.0.231 128 8/26/2024
4.0.230 142 8/23/2024
4.0.229 136 8/22/2024
4.0.228 137 8/21/2024
4.0.227 139 8/20/2024
4.0.226 139 8/20/2024
4.0.225 159 8/19/2024
4.0.224 151 8/16/2024
4.0.223 131 8/15/2024
4.0.222 150 8/14/2024
4.0.221 114 8/5/2024
4.0.220 112 8/2/2024
4.0.219 122 8/1/2024
4.0.218 102 7/31/2024
4.0.217 122 7/26/2024
4.0.216 98 7/25/2024
4.0.215 75 7/24/2024
4.0.214 131 7/11/2024
4.0.213 114 7/10/2024
4.0.212 106 7/9/2024
4.0.211 107 7/9/2024
4.0.210 109 7/8/2024
4.0.209 128 7/5/2024
4.0.208 119 7/5/2024
4.0.207 118 7/2/2024
4.0.206 111 7/1/2024
4.0.205 129 6/27/2024
4.0.204 115 6/26/2024
4.0.203 129 6/25/2024
4.0.202 120 6/24/2024
4.0.201 1,008 6/19/2024
4.0.200 131 6/18/2024
4.0.199 110 6/17/2024
4.0.198 115 6/14/2024
4.0.197 111 6/13/2024
4.0.196 121 6/12/2024
4.0.195 136 6/3/2024
4.0.194 120 5/31/2024
4.0.193 134 5/30/2024
4.0.192 118 5/29/2024
4.0.191 144 5/27/2024
4.0.190 112 5/27/2024
4.0.189 114 5/23/2024
4.0.188 127 5/22/2024
4.0.187 159 5/21/2024
4.0.186 129 5/20/2024
4.0.185 137 5/17/2024
4.0.184 133 5/16/2024
4.0.183 137 5/15/2024
4.0.182 132 5/8/2024
4.0.181 121 5/7/2024
4.0.180 130 5/6/2024
4.0.179 133 5/3/2024
4.0.178 696 5/2/2024
4.0.177 99 5/1/2024
4.0.176 126 4/30/2024
4.0.175 126 4/29/2024
4.0.174 124 4/29/2024
4.0.173 131 4/25/2024
4.0.172 129 4/24/2024
4.0.171 136 4/16/2024
4.0.170 132 4/15/2024
4.0.169 117 4/12/2024
4.0.168 118 4/12/2024
4.0.167 138 4/11/2024
4.0.166 147 4/10/2024
4.0.165 135 4/9/2024
4.0.164 138 4/8/2024
4.0.163 135 4/1/2024
4.0.162 120 3/29/2024
4.0.161 124 3/28/2024
4.0.160 117 3/26/2024
4.0.159 145 3/23/2024
4.0.158 136 3/22/2024
4.0.157 129 3/21/2024
4.0.156 120 3/18/2024
4.0.155 150 3/15/2024
4.0.154 135 3/14/2024
4.0.153 144 3/13/2024
4.0.152 151 3/11/2024
4.0.151 135 3/8/2024
4.0.150 139 3/7/2024
4.0.149 133 3/6/2024
4.0.148 135 3/5/2024
4.0.147 958 3/4/2024
4.0.146 157 3/1/2024
4.0.145 153 2/29/2024
4.0.144 143 2/28/2024
4.0.143 151 2/27/2024
4.0.142 137 2/26/2024
4.0.141 167 2/23/2024
4.0.140 144 2/22/2024
4.0.139 147 2/21/2024
4.0.138 154 2/20/2024
4.0.137 397 2/19/2024
4.0.136 131 2/19/2024
4.0.135 127 2/16/2024
4.0.134 131 2/16/2024
4.0.133 131 2/15/2024
4.0.132 138 2/14/2024
4.0.131 127 2/13/2024
4.0.130 156 2/12/2024
4.0.129 132 2/9/2024
4.0.128 168 2/8/2024
4.0.127 136 2/7/2024
4.0.126 144 2/6/2024
4.0.125 114 2/6/2024
4.0.124 125 2/5/2024
4.0.123 481 2/2/2024
4.0.122 134 2/1/2024
4.0.121 128 2/1/2024
4.0.120 140 1/31/2024
4.0.119 215 1/30/2024
4.0.118 138 1/29/2024
4.0.117 154 1/26/2024
4.0.116 128 1/24/2024
4.0.115 122 1/23/2024
4.0.114 129 1/22/2024
4.0.113 323 1/16/2024
4.0.112 167 1/15/2024
4.0.111 143 1/15/2024
4.0.110 143 1/12/2024
4.0.109 123 1/11/2024
4.0.108 136 1/10/2024
4.0.107 313 1/8/2024
4.0.106 191 1/5/2024
4.0.105 324 12/26/2023
4.0.104 148 12/26/2023
4.0.103 178 12/25/2023
4.0.102 149 12/25/2023
4.0.101 232 12/22/2023
4.0.100 173 12/21/2023
4.0.99 196 12/15/2023
4.0.98 153 12/14/2023
4.0.97 135 12/13/2023
4.0.96 159 12/13/2023
4.0.95 322 12/12/2023
4.0.94 153 12/12/2023
4.0.93 156 12/11/2023
4.0.92 151 12/11/2023
4.0.91 212 12/6/2023
4.0.90 162 12/6/2023
4.0.89 153 12/5/2023
4.0.88 210 12/4/2023
4.0.87 218 11/24/2023
4.0.86 171 11/23/2023
4.0.85 156 11/21/2023
4.0.84 168 11/20/2023
4.0.83 157 11/20/2023
4.0.82 194 11/17/2023
4.0.81 622 11/16/2023
4.0.80 161 11/15/2023
4.0.79 169 11/13/2023
4.0.78 181 11/9/2023
4.0.77 193 11/8/2023
4.0.76 146 11/8/2023
4.0.75 154 11/7/2023
4.0.74 173 11/6/2023
4.0.73 170 11/3/2023
4.0.72 203 11/2/2023
4.0.71 156 11/1/2023
4.0.70 151 11/1/2023
4.0.69 189 10/31/2023
4.0.68 178 10/30/2023
4.0.67 182 10/27/2023
4.0.66 181 10/26/2023
4.0.65 189 10/25/2023
4.0.64 185 10/17/2023
4.0.63 144 10/17/2023
4.0.62 204 10/16/2023
4.0.61 208 10/13/2023
4.0.60 218 10/12/2023
4.0.59 171 10/11/2023
4.0.58 204 10/5/2023
4.0.57 173 10/4/2023
4.0.56 169 9/26/2023
4.0.55 171 9/25/2023
4.0.54 187 9/22/2023
4.0.53 186 9/20/2023
4.0.52 182 9/19/2023
4.0.51 185 9/18/2023
4.0.50 165 9/18/2023
4.0.49 228 9/14/2023
4.0.48 192 9/13/2023
4.0.47 170 9/12/2023
4.0.46 248 9/11/2023
4.0.45 160 9/11/2023
4.0.44 154 9/11/2023
4.0.43 275 9/7/2023
4.0.42 163 9/6/2023
4.0.41 217 9/5/2023
4.0.40 172 9/4/2023
4.0.39 170 9/4/2023
4.0.38 205 9/1/2023
4.0.37 216 8/31/2023
4.0.36 204 8/30/2023
4.0.35 225 8/29/2023
4.0.34 158 8/29/2023
4.0.33 245 8/28/2023
4.0.32 222 8/25/2023
4.0.31 215 8/24/2023
4.0.30 198 8/23/2023
4.0.29 208 8/22/2023
4.0.28 209 8/18/2023
4.0.27 210 8/17/2023
4.0.26 194 8/17/2023
4.0.25 182 8/16/2023
4.0.24 267 8/10/2023
4.0.23 228 8/9/2023
4.0.22 218 8/8/2023
4.0.21 199 8/8/2023
4.0.20 311 8/7/2023
4.0.19 207 8/4/2023
4.0.18 266 8/3/2023
4.0.17 232 8/2/2023
4.0.16 237 7/26/2023
4.0.15 221 7/25/2023
4.0.14 242 7/20/2023
4.0.13 224 7/19/2023
4.0.12 216 7/18/2023
4.0.11 167 7/18/2023
4.0.10 224 7/18/2023
4.0.9 179 7/18/2023
4.0.8 288 7/17/2023
4.0.7 184 7/17/2023
4.0.6 560 1/30/2023
4.0.5 417 1/30/2023
4.0.4 423 1/27/2023
4.0.3 528 12/13/2022
4.0.0 338 12/12/2022
3.0.47 1,541 6/10/2022
3.0.45 1,003 4/20/2022
3.0.44 1,023 1/11/2022
3.0.43 640 1/10/2022
3.0.42 1,116 6/17/2021
3.0.41 769 6/16/2021
3.0.40 736 6/16/2021
3.0.39 525 6/16/2021
3.0.38 1,015 1/7/2021
3.0.37 846 12/16/2020
3.0.36 781 12/14/2020
3.0.35 2,330 9/13/2020
3.0.34 898 6/19/2020
3.0.33 1,893 5/12/2020
3.0.32 1,413 5/12/2020
3.0.31 909 4/28/2020
3.0.30 862 4/24/2020
3.0.29 847 4/16/2020
3.0.28 918 4/16/2020
3.0.27 591 4/15/2020
3.0.26 881 4/15/2020
3.0.25 942 4/14/2020
3.0.24 624 4/14/2020
3.0.23 968 4/10/2020
3.0.22 909 4/10/2020
3.0.21 950 4/7/2020
3.0.20 2,776 3/26/2020
3.0.19 945 3/26/2020
3.0.18 608 3/25/2020
3.0.17 611 3/25/2020
3.0.16 621 3/25/2020
3.0.15 639 3/25/2020
3.0.13 622 3/25/2020
3.0.12 634 3/25/2020
3.0.11 605 3/25/2020
3.0.10 1,160 3/25/2020
3.0.9 977 3/22/2020
3.0.8 593 3/22/2020
3.0.7 976 3/21/2020
3.0.6 1,617 3/13/2020
3.0.5 636 3/13/2020
3.0.4 1,355 2/28/2020
3.0.3 1,213 2/21/2020
3.0.2 666 2/11/2020
3.0.1 641 2/11/2020
3.0.0 1,812 12/23/2019
2.0.13 658 11/4/2019
2.0.12 731 6/19/2019
2.0.11 715 6/19/2019
2.0.10 1,007 4/17/2019
2.0.9 1,573 2/21/2019
2.0.8 3,951 8/1/2018
2.0.7 1,294 8/1/2018
2.0.6 1,731 6/26/2018
2.0.5 1,099 6/14/2018
2.0.4 1,687 6/1/2018
2.0.3 1,650 5/22/2018
2.0.2 2,237 5/11/2018
2.0.1 2,311 2/13/2018
2.0.0 2,214 1/2/2018
1.0.29 3,891 11/16/2017
1.0.28 1,000 11/16/2017
1.0.27 6,414 10/18/2017
1.0.26 4,612 9/22/2017
1.0.24 1,076 9/22/2017
1.0.23 1,415 9/22/2017
1.0.22 1,085 9/22/2017
1.0.21 1,089 9/22/2017
1.0.19 1,097 9/22/2017
1.0.18 1,091 9/21/2017
1.0.17 2,136 8/4/2017
1.0.16 1,097 7/3/2017
1.0.15 1,120 6/16/2017
1.0.13 1,110 6/16/2017
1.0.12 1,101 6/16/2017
1.0.11 1,122 5/30/2017
1.0.9 1,112 5/25/2017
1.0.8 1,097 5/24/2017
1.0.7 1,122 5/19/2017
1.0.6 1,158 5/17/2017
1.0.4 1,219 4/3/2017
1.0.3 1,225 3/22/2017
1.0.2 1,215 2/2/2017