Data.Modeler 5.0.9

dotnet add package Data.Modeler --version 5.0.9                
NuGet\Install-Package Data.Modeler -Version 5.0.9                
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.9" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Data.Modeler --version 5.0.9                
#r "nuget: Data.Modeler, 5.0.9"                
#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.
// Install Data.Modeler as a Cake Addin
#addin nuget:?package=Data.Modeler&version=5.0.9

// Install Data.Modeler as a Cake Tool
#tool nuget:?package=Data.Modeler&version=5.0.9                

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. 
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.9 106 12/17/2024
5.0.8 67 12/17/2024
5.0.7 114 12/10/2024
5.0.6 84 12/9/2024
5.0.5 153 11/26/2024
5.0.4 117 11/26/2024
5.0.3 77 11/25/2024
5.0.2 107 11/24/2024
5.0.1 91 11/23/2024
5.0.0 87 11/23/2024
4.0.268 103 11/19/2024
4.0.267 89 11/11/2024
4.0.266 81 11/6/2024
4.0.265 81 11/5/2024
4.0.264 80 11/4/2024
4.0.263 89 11/1/2024
4.0.262 79 10/31/2024
4.0.261 83 10/30/2024
4.0.260 83 10/29/2024
4.0.259 81 10/29/2024
4.0.258 92 10/25/2024
4.0.257 82 10/24/2024
4.0.256 83 10/21/2024
4.0.255 96 10/16/2024
4.0.254 77 10/15/2024
4.0.253 91 10/11/2024
4.0.252 87 10/10/2024
4.0.251 93 10/9/2024
4.0.250 96 10/8/2024
4.0.249 91 10/2/2024
4.0.248 89 10/1/2024
4.0.247 93 9/30/2024
4.0.246 97 9/27/2024
4.0.245 91 9/24/2024
4.0.244 102 9/23/2024
4.0.243 91 9/23/2024
4.0.242 131 9/17/2024
4.0.241 119 9/10/2024
4.0.240 104 9/9/2024
4.0.239 102 9/6/2024
4.0.238 107 9/5/2024
4.0.237 112 9/3/2024
4.0.236 114 9/2/2024
4.0.235 107 8/30/2024
4.0.234 109 8/29/2024
4.0.233 110 8/28/2024
4.0.232 113 8/27/2024
4.0.231 118 8/26/2024
4.0.230 133 8/23/2024
4.0.229 126 8/22/2024
4.0.228 128 8/21/2024
4.0.227 129 8/20/2024
4.0.226 128 8/20/2024
4.0.225 151 8/19/2024
4.0.224 141 8/16/2024
4.0.223 123 8/15/2024
4.0.222 140 8/14/2024
4.0.221 102 8/5/2024
4.0.220 101 8/2/2024
4.0.219 111 8/1/2024
4.0.218 92 7/31/2024
4.0.217 113 7/26/2024
4.0.216 87 7/25/2024
4.0.215 67 7/24/2024
4.0.214 119 7/11/2024
4.0.213 102 7/10/2024
4.0.212 95 7/9/2024
4.0.211 94 7/9/2024
4.0.210 98 7/8/2024
4.0.209 117 7/5/2024
4.0.208 109 7/5/2024
4.0.207 105 7/2/2024
4.0.206 99 7/1/2024
4.0.205 117 6/27/2024
4.0.204 102 6/26/2024
4.0.203 118 6/25/2024
4.0.202 107 6/24/2024
4.0.201 978 6/19/2024
4.0.200 119 6/18/2024
4.0.199 101 6/17/2024
4.0.198 105 6/14/2024
4.0.197 101 6/13/2024
4.0.196 109 6/12/2024
4.0.195 126 6/3/2024
4.0.194 113 5/31/2024
4.0.193 125 5/30/2024
4.0.192 108 5/29/2024
4.0.191 136 5/27/2024
4.0.190 101 5/27/2024
4.0.189 106 5/23/2024
4.0.188 116 5/22/2024
4.0.187 150 5/21/2024
4.0.186 120 5/20/2024
4.0.185 124 5/17/2024
4.0.184 122 5/16/2024
4.0.183 129 5/15/2024
4.0.182 121 5/8/2024
4.0.181 107 5/7/2024
4.0.180 123 5/6/2024
4.0.179 120 5/3/2024
4.0.178 684 5/2/2024
4.0.177 87 5/1/2024
4.0.176 115 4/30/2024
4.0.175 118 4/29/2024
4.0.174 114 4/29/2024
4.0.173 121 4/25/2024
4.0.172 118 4/24/2024
4.0.171 124 4/16/2024
4.0.170 121 4/15/2024
4.0.169 106 4/12/2024
4.0.168 110 4/12/2024
4.0.167 124 4/11/2024
4.0.166 136 4/10/2024
4.0.165 124 4/9/2024
4.0.164 125 4/8/2024
4.0.163 126 4/1/2024
4.0.162 110 3/29/2024
4.0.161 111 3/28/2024
4.0.160 103 3/26/2024
4.0.159 135 3/23/2024
4.0.158 123 3/22/2024
4.0.157 118 3/21/2024
4.0.156 110 3/18/2024
4.0.155 141 3/15/2024
4.0.154 127 3/14/2024
4.0.153 133 3/13/2024
4.0.152 141 3/11/2024
4.0.151 124 3/8/2024
4.0.150 130 3/7/2024
4.0.149 125 3/6/2024
4.0.148 126 3/5/2024
4.0.147 948 3/4/2024
4.0.146 145 3/1/2024
4.0.145 142 2/29/2024
4.0.144 131 2/28/2024
4.0.143 138 2/27/2024
4.0.142 126 2/26/2024
4.0.141 154 2/23/2024
4.0.140 131 2/22/2024
4.0.139 132 2/21/2024
4.0.138 138 2/20/2024
4.0.137 383 2/19/2024
4.0.136 115 2/19/2024
4.0.135 112 2/16/2024
4.0.134 116 2/16/2024
4.0.133 113 2/15/2024
4.0.132 125 2/14/2024
4.0.131 119 2/13/2024
4.0.130 146 2/12/2024
4.0.129 122 2/9/2024
4.0.128 159 2/8/2024
4.0.127 128 2/7/2024
4.0.126 136 2/6/2024
4.0.125 102 2/6/2024
4.0.124 115 2/5/2024
4.0.123 470 2/2/2024
4.0.122 124 2/1/2024
4.0.121 119 2/1/2024
4.0.120 129 1/31/2024
4.0.119 206 1/30/2024
4.0.118 129 1/29/2024
4.0.117 145 1/26/2024
4.0.116 118 1/24/2024
4.0.115 113 1/23/2024
4.0.114 119 1/22/2024
4.0.113 312 1/16/2024
4.0.112 157 1/15/2024
4.0.111 131 1/15/2024
4.0.110 134 1/12/2024
4.0.109 113 1/11/2024
4.0.108 128 1/10/2024
4.0.107 301 1/8/2024
4.0.106 181 1/5/2024
4.0.105 313 12/26/2023
4.0.104 137 12/26/2023
4.0.103 170 12/25/2023
4.0.102 140 12/25/2023
4.0.101 222 12/22/2023
4.0.100 163 12/21/2023
4.0.99 186 12/15/2023
4.0.98 140 12/14/2023
4.0.97 125 12/13/2023
4.0.96 148 12/13/2023
4.0.95 309 12/12/2023
4.0.94 143 12/12/2023
4.0.93 145 12/11/2023
4.0.92 139 12/11/2023
4.0.91 206 12/6/2023
4.0.90 155 12/6/2023
4.0.89 146 12/5/2023
4.0.88 202 12/4/2023
4.0.87 211 11/24/2023
4.0.86 164 11/23/2023
4.0.85 149 11/21/2023
4.0.84 161 11/20/2023
4.0.83 150 11/20/2023
4.0.82 189 11/17/2023
4.0.81 474 11/16/2023
4.0.80 154 11/15/2023
4.0.79 162 11/13/2023
4.0.78 174 11/9/2023
4.0.77 188 11/8/2023
4.0.76 141 11/8/2023
4.0.75 149 11/7/2023
4.0.74 167 11/6/2023
4.0.73 163 11/3/2023
4.0.72 196 11/2/2023
4.0.71 151 11/1/2023
4.0.70 134 11/1/2023
4.0.69 184 10/31/2023
4.0.68 171 10/30/2023
4.0.67 176 10/27/2023
4.0.66 174 10/26/2023
4.0.65 185 10/25/2023
4.0.64 180 10/17/2023
4.0.63 138 10/17/2023
4.0.62 197 10/16/2023
4.0.61 201 10/13/2023
4.0.60 211 10/12/2023
4.0.59 165 10/11/2023
4.0.58 197 10/5/2023
4.0.57 168 10/4/2023
4.0.56 162 9/26/2023
4.0.55 163 9/25/2023
4.0.54 180 9/22/2023
4.0.53 180 9/20/2023
4.0.52 175 9/19/2023
4.0.51 177 9/18/2023
4.0.50 159 9/18/2023
4.0.49 221 9/14/2023
4.0.48 186 9/13/2023
4.0.47 165 9/12/2023
4.0.46 243 9/11/2023
4.0.45 152 9/11/2023
4.0.44 149 9/11/2023
4.0.43 268 9/7/2023
4.0.42 158 9/6/2023
4.0.41 210 9/5/2023
4.0.40 166 9/4/2023
4.0.39 163 9/4/2023
4.0.38 196 9/1/2023
4.0.37 211 8/31/2023
4.0.36 197 8/30/2023
4.0.35 219 8/29/2023
4.0.34 154 8/29/2023
4.0.33 238 8/28/2023
4.0.32 215 8/25/2023
4.0.31 208 8/24/2023
4.0.30 192 8/23/2023
4.0.29 202 8/22/2023
4.0.28 205 8/18/2023
4.0.27 202 8/17/2023
4.0.26 188 8/17/2023
4.0.25 175 8/16/2023
4.0.24 259 8/10/2023
4.0.23 223 8/9/2023
4.0.22 211 8/8/2023
4.0.21 191 8/8/2023
4.0.20 305 8/7/2023
4.0.19 199 8/4/2023
4.0.18 258 8/3/2023
4.0.17 223 8/2/2023
4.0.16 228 7/26/2023
4.0.15 214 7/25/2023
4.0.14 236 7/20/2023
4.0.13 217 7/19/2023
4.0.12 207 7/18/2023
4.0.11 160 7/18/2023
4.0.10 218 7/18/2023
4.0.9 171 7/18/2023
4.0.8 279 7/17/2023
4.0.7 177 7/17/2023
4.0.6 548 1/30/2023
4.0.5 404 1/30/2023
4.0.4 412 1/27/2023
4.0.3 510 12/13/2022
4.0.0 326 12/12/2022
3.0.47 1,525 6/10/2022
3.0.45 986 4/20/2022
3.0.44 1,005 1/11/2022
3.0.43 621 1/10/2022
3.0.42 1,092 6/17/2021
3.0.41 749 6/16/2021
3.0.40 716 6/16/2021
3.0.39 505 6/16/2021
3.0.38 986 1/7/2021
3.0.37 820 12/16/2020
3.0.36 758 12/14/2020
3.0.35 2,305 9/13/2020
3.0.34 872 6/19/2020
3.0.33 1,864 5/12/2020
3.0.32 1,385 5/12/2020
3.0.31 883 4/28/2020
3.0.30 837 4/24/2020
3.0.29 819 4/16/2020
3.0.28 890 4/16/2020
3.0.27 564 4/15/2020
3.0.26 854 4/15/2020
3.0.25 912 4/14/2020
3.0.24 594 4/14/2020
3.0.23 939 4/10/2020
3.0.22 880 4/10/2020
3.0.21 916 4/7/2020
3.0.20 2,749 3/26/2020
3.0.19 917 3/26/2020
3.0.18 581 3/25/2020
3.0.17 585 3/25/2020
3.0.16 593 3/25/2020
3.0.15 614 3/25/2020
3.0.13 593 3/25/2020
3.0.12 608 3/25/2020
3.0.11 577 3/25/2020
3.0.10 1,132 3/25/2020
3.0.9 951 3/22/2020
3.0.8 567 3/22/2020
3.0.7 950 3/21/2020
3.0.6 1,592 3/13/2020
3.0.5 611 3/13/2020
3.0.4 1,330 2/28/2020
3.0.3 1,187 2/21/2020
3.0.2 641 2/11/2020
3.0.1 616 2/11/2020
3.0.0 1,787 12/23/2019
2.0.13 632 11/4/2019
2.0.12 699 6/19/2019
2.0.11 687 6/19/2019
2.0.10 978 4/17/2019
2.0.9 1,544 2/21/2019
2.0.8 3,886 8/1/2018
2.0.7 1,228 8/1/2018
2.0.6 1,630 6/26/2018
2.0.5 997 6/14/2018
2.0.4 1,586 6/1/2018
2.0.3 1,544 5/22/2018
2.0.2 2,126 5/11/2018
2.0.1 2,200 2/13/2018
2.0.0 2,097 1/2/2018
1.0.29 3,816 11/16/2017
1.0.28 925 11/16/2017
1.0.27 6,339 10/18/2017
1.0.26 4,535 9/22/2017
1.0.24 1,001 9/22/2017
1.0.23 1,339 9/22/2017
1.0.22 1,008 9/22/2017
1.0.21 1,012 9/22/2017
1.0.19 1,020 9/22/2017
1.0.18 1,014 9/21/2017
1.0.17 2,059 8/4/2017
1.0.16 1,022 7/3/2017
1.0.15 1,045 6/16/2017
1.0.13 1,035 6/16/2017
1.0.12 1,026 6/16/2017
1.0.11 1,047 5/30/2017
1.0.9 1,038 5/25/2017
1.0.8 1,022 5/24/2017
1.0.7 1,047 5/19/2017
1.0.6 1,081 5/17/2017
1.0.4 1,141 4/3/2017
1.0.3 1,146 3/22/2017
1.0.2 1,139 2/2/2017