Data.Modeler 4.0.183

There is a newer version of this package available.
See the version list below for details.
dotnet add package Data.Modeler --version 4.0.183
NuGet\Install-Package Data.Modeler -Version 4.0.183
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="4.0.183" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Data.Modeler --version 4.0.183
#r "nuget: Data.Modeler, 4.0.183"
#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=4.0.183

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

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 net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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
4.0.197 34 6/13/2024
4.0.196 35 6/12/2024
4.0.195 68 6/3/2024
4.0.194 70 5/31/2024
4.0.193 75 5/30/2024
4.0.192 72 5/29/2024
4.0.191 64 5/27/2024
4.0.190 60 5/27/2024
4.0.189 70 5/23/2024
4.0.188 75 5/22/2024
4.0.187 72 5/21/2024
4.0.186 83 5/20/2024
4.0.185 88 5/17/2024
4.0.184 79 5/16/2024
4.0.183 86 5/15/2024
4.0.182 80 5/8/2024
4.0.181 74 5/7/2024
4.0.180 89 5/6/2024
4.0.179 81 5/3/2024
4.0.178 399 5/2/2024
4.0.177 56 5/1/2024
4.0.176 78 4/30/2024
4.0.175 83 4/29/2024
4.0.174 82 4/29/2024
4.0.173 90 4/25/2024
4.0.172 79 4/24/2024
4.0.171 84 4/16/2024
4.0.170 84 4/15/2024
4.0.169 73 4/12/2024
4.0.168 76 4/12/2024
4.0.167 89 4/11/2024
4.0.166 78 4/10/2024
4.0.165 81 4/9/2024
4.0.164 94 4/8/2024
4.0.163 71 4/1/2024
4.0.162 72 3/29/2024
4.0.161 72 3/28/2024
4.0.160 68 3/26/2024
4.0.159 95 3/23/2024
4.0.158 89 3/22/2024
4.0.157 88 3/21/2024
4.0.156 71 3/18/2024
4.0.155 104 3/15/2024
4.0.154 83 3/14/2024
4.0.153 100 3/13/2024
4.0.152 87 3/11/2024
4.0.151 84 3/8/2024
4.0.150 94 3/7/2024
4.0.149 95 3/6/2024
4.0.148 91 3/5/2024
4.0.147 758 3/4/2024
4.0.146 108 3/1/2024
4.0.145 97 2/29/2024
4.0.144 93 2/28/2024
4.0.143 85 2/27/2024
4.0.142 90 2/26/2024
4.0.141 90 2/23/2024
4.0.140 99 2/22/2024
4.0.139 99 2/21/2024
4.0.138 104 2/20/2024
4.0.137 277 2/19/2024
4.0.136 78 2/19/2024
4.0.135 79 2/16/2024
4.0.134 72 2/16/2024
4.0.133 81 2/15/2024
4.0.132 91 2/14/2024
4.0.131 80 2/13/2024
4.0.130 93 2/12/2024
4.0.129 83 2/9/2024
4.0.128 90 2/8/2024
4.0.127 75 2/7/2024
4.0.126 96 2/6/2024
4.0.125 69 2/6/2024
4.0.124 84 2/5/2024
4.0.123 360 2/2/2024
4.0.122 82 2/1/2024
4.0.121 82 2/1/2024
4.0.120 83 1/31/2024
4.0.119 154 1/30/2024
4.0.118 101 1/29/2024
4.0.117 101 1/26/2024
4.0.116 81 1/24/2024
4.0.115 82 1/23/2024
4.0.114 83 1/22/2024
4.0.113 239 1/16/2024
4.0.112 112 1/15/2024
4.0.111 89 1/15/2024
4.0.110 101 1/12/2024
4.0.109 79 1/11/2024
4.0.108 100 1/10/2024
4.0.107 233 1/8/2024
4.0.106 134 1/5/2024
4.0.105 239 12/26/2023
4.0.104 101 12/26/2023
4.0.103 127 12/25/2023
4.0.102 114 12/25/2023
4.0.101 168 12/22/2023
4.0.100 120 12/21/2023
4.0.99 141 12/15/2023
4.0.98 110 12/14/2023
4.0.97 102 12/13/2023
4.0.96 111 12/13/2023
4.0.95 231 12/12/2023
4.0.94 109 12/12/2023
4.0.93 110 12/11/2023
4.0.92 106 12/11/2023
4.0.91 160 12/6/2023
4.0.90 117 12/6/2023
4.0.89 111 12/5/2023
4.0.88 155 12/4/2023
4.0.87 164 11/24/2023
4.0.86 126 11/23/2023
4.0.85 113 11/21/2023
4.0.84 123 11/20/2023
4.0.83 118 11/20/2023
4.0.82 140 11/17/2023
4.0.81 310 11/16/2023
4.0.80 119 11/15/2023
4.0.79 117 11/13/2023
4.0.78 131 11/9/2023
4.0.77 138 11/8/2023
4.0.76 103 11/8/2023
4.0.75 112 11/7/2023
4.0.74 126 11/6/2023
4.0.73 127 11/3/2023
4.0.72 144 11/2/2023
4.0.71 109 11/1/2023
4.0.70 107 11/1/2023
4.0.69 123 10/31/2023
4.0.68 128 10/30/2023
4.0.67 133 10/27/2023
4.0.66 129 10/26/2023
4.0.65 140 10/25/2023
4.0.64 137 10/17/2023
4.0.63 106 10/17/2023
4.0.62 153 10/16/2023
4.0.61 159 10/13/2023
4.0.60 170 10/12/2023
4.0.59 128 10/11/2023
4.0.58 155 10/5/2023
4.0.57 127 10/4/2023
4.0.56 127 9/26/2023
4.0.55 129 9/25/2023
4.0.54 142 9/22/2023
4.0.53 138 9/20/2023
4.0.52 134 9/19/2023
4.0.51 140 9/18/2023
4.0.50 123 9/18/2023
4.0.49 182 9/14/2023
4.0.48 144 9/13/2023
4.0.47 127 9/12/2023
4.0.46 200 9/11/2023
4.0.45 115 9/11/2023
4.0.44 120 9/11/2023
4.0.43 221 9/7/2023
4.0.42 122 9/6/2023
4.0.41 167 9/5/2023
4.0.40 125 9/4/2023
4.0.39 129 9/4/2023
4.0.38 140 9/1/2023
4.0.37 171 8/31/2023
4.0.36 157 8/30/2023
4.0.35 181 8/29/2023
4.0.34 120 8/29/2023
4.0.33 188 8/28/2023
4.0.32 176 8/25/2023
4.0.31 164 8/24/2023
4.0.30 160 8/23/2023
4.0.29 161 8/22/2023
4.0.28 162 8/18/2023
4.0.27 160 8/17/2023
4.0.26 153 8/17/2023
4.0.25 137 8/16/2023
4.0.24 214 8/10/2023
4.0.23 181 8/9/2023
4.0.22 177 8/8/2023
4.0.21 149 8/8/2023
4.0.20 259 8/7/2023
4.0.19 165 8/4/2023
4.0.18 222 8/3/2023
4.0.17 186 8/2/2023
4.0.16 194 7/26/2023
4.0.15 176 7/25/2023
4.0.14 196 7/20/2023
4.0.13 176 7/19/2023
4.0.12 171 7/18/2023
4.0.11 134 7/18/2023
4.0.10 174 7/18/2023
4.0.9 139 7/18/2023
4.0.8 219 7/17/2023
4.0.7 150 7/17/2023
4.0.6 498 1/30/2023
4.0.5 369 1/30/2023
4.0.4 368 1/27/2023
4.0.3 471 12/13/2022
4.0.0 295 12/12/2022
3.0.47 1,454 6/10/2022
3.0.45 924 4/20/2022
3.0.44 947 1/11/2022
3.0.43 576 1/10/2022
3.0.42 1,032 6/17/2021
3.0.41 706 6/16/2021
3.0.40 666 6/16/2021
3.0.39 478 6/16/2021
3.0.38 935 1/7/2021
3.0.37 752 12/16/2020
3.0.36 710 12/14/2020
3.0.35 2,203 9/13/2020
3.0.34 819 6/19/2020
3.0.33 1,763 5/12/2020
3.0.32 1,322 5/12/2020
3.0.31 841 4/28/2020
3.0.30 801 4/24/2020
3.0.29 780 4/16/2020
3.0.28 842 4/16/2020
3.0.27 536 4/15/2020
3.0.26 812 4/15/2020
3.0.25 859 4/14/2020
3.0.24 563 4/14/2020
3.0.23 879 4/10/2020
3.0.22 837 4/10/2020
3.0.21 875 4/7/2020
3.0.20 2,642 3/26/2020
3.0.19 873 3/26/2020
3.0.18 547 3/25/2020
3.0.17 551 3/25/2020
3.0.16 567 3/25/2020
3.0.15 574 3/25/2020
3.0.13 564 3/25/2020
3.0.12 576 3/25/2020
3.0.11 543 3/25/2020
3.0.10 1,093 3/25/2020
3.0.9 901 3/22/2020
3.0.8 534 3/22/2020
3.0.7 912 3/21/2020
3.0.6 1,517 3/13/2020
3.0.5 582 3/13/2020
3.0.4 1,263 2/28/2020
3.0.3 1,131 2/21/2020
3.0.2 608 2/11/2020
3.0.1 583 2/11/2020
3.0.0 1,704 12/23/2019
2.0.13 604 11/4/2019
2.0.12 668 6/19/2019
2.0.11 642 6/19/2019
2.0.10 946 4/17/2019
2.0.9 1,482 2/21/2019
2.0.8 3,759 8/1/2018
2.0.7 1,174 8/1/2018
2.0.6 1,569 6/26/2018
2.0.5 955 6/14/2018
2.0.4 1,524 6/1/2018
2.0.3 1,500 5/22/2018
2.0.2 2,063 5/11/2018
2.0.1 2,124 2/13/2018
2.0.0 2,019 1/2/2018
1.0.29 3,705 11/16/2017
1.0.28 888 11/16/2017
1.0.27 6,113 10/18/2017
1.0.26 4,395 9/22/2017
1.0.24 982 9/22/2017
1.0.23 1,294 9/22/2017
1.0.22 966 9/22/2017
1.0.21 972 9/22/2017
1.0.19 988 9/22/2017
1.0.18 974 9/21/2017
1.0.17 1,982 8/4/2017
1.0.16 988 7/3/2017
1.0.15 998 6/16/2017
1.0.13 985 6/16/2017
1.0.12 993 6/16/2017
1.0.11 1,013 5/30/2017
1.0.9 1,007 5/25/2017
1.0.8 985 5/24/2017
1.0.7 1,009 5/19/2017
1.0.6 1,050 5/17/2017
1.0.4 1,104 4/3/2017
1.0.3 1,112 3/22/2017
1.0.2 1,095 2/2/2017