Aranasoft.Cobweb.FluentMigrator.Extensions
3.1.0
Prefix Reserved
dotnet add package Aranasoft.Cobweb.FluentMigrator.Extensions --version 3.1.0
NuGet\Install-Package Aranasoft.Cobweb.FluentMigrator.Extensions -Version 3.1.0
<PackageReference Include="Aranasoft.Cobweb.FluentMigrator.Extensions" Version="3.1.0" />
paket add Aranasoft.Cobweb.FluentMigrator.Extensions --version 3.1.0
#r "nuget: Aranasoft.Cobweb.FluentMigrator.Extensions, 3.1.0"
// Install Aranasoft.Cobweb.FluentMigrator.Extensions as a Cake Addin #addin nuget:?package=Aranasoft.Cobweb.FluentMigrator.Extensions&version=3.1.0 // Install Aranasoft.Cobweb.FluentMigrator.Extensions as a Cake Tool #tool nuget:?package=Aranasoft.Cobweb.FluentMigrator.Extensions&version=3.1.0
An alternative fluent interface for FluentMigrator.
Cobweb was created by Arana Software, a software agency in Las Vegas, Nevada.
Alternate Syntax for FluentMigrator
Aranasoft.Cobweb.FluentMigrator.Extensions
provides an alternate syntax style for FluentMigrator, a database migration framework for .NET, using lambda expression syntax instead of method chains.
FluentMigrator's Method Chain Syntax
FluentMigrator employes a series of chained expression to build database schema.
Create.Table("TestTable")
.WithColumn("FirstColumn").AsString().Nullable().WithDefaultValue("test")
.WithColumn("SecondColumn").AsString().NotNullable().WithDefaultValue("sample");
Though this style is effective, some may find the syntax confusing, as there is no clear delineation between setting column properties and transitioning additional columns. Because this grouping can only be resolved through the context of method names, it is also impossible for code-formatting tools to organize and group applicable code.
Cobweb's Lambda Expression Syntax
Cobweb uses lambda expressions to define column properties.
Create.Table("TestTable")
.WithColumn("FirstColumn", col => col.AsString().Nullable().WithDefaultValue("test"))
.WithColumn("SecondColumn, col => col.AsString().NotNullable().WithDefaultValue("sample"));
Under the covers, Cobweb passes these lambda expressions to FluentMigrator's method chains. The lambda syntax will naturally group column properties and delineate from other columns. This grouping also enables code formating support from editor tooling.
Usage
Create Table: WithColumn
Syntax: WithColumn(string columnName, Func columnOptions)
Create.Table("TestTable")
.WithColumn("FirstColumn", col => col.AsString().Nullable())
.WithColumn("SecondColumn, col => col.AsString().NotNullable().WithDefaultValue("sample"));
Alter Table: AddColumn
Syntax: AddColumn(string columnName, Func columnOptions)
Alter.Table("TestTable")
.AddColumn("FirstColumn", col => col.AsInt32().Nullable())
.AddColumn("SecondColumn", col => col.AsInt32().NotNullable().WithDefaultValue(5)));
Alter Table: AlterColumn
Syntax: AlterColumn(string columnName, Func columnOptions)
Alter.Table("TestTable")
.AlterColumn("FirstExistingColumn", col => col.AsInt32())
.AlterColumn("SecondExistingColumn", col => col.AsInt32().NotNullable().WithDefaultValue(5)));
Create Index: OnColumn
Syntax: OnColumn(string columnName, Func columnOptions)
Create.Index("TestIndex")
.OnColumn("FirstColumn", col => col.Ascending())
.OnColumn("SecondColumn", col => col.Descending());
Release Notes: 3.1.0 (2019-12-10)
Code Refactoring
- namespaces: revise namespaces to Aranasoft.Cobweb (56aa10b)
BREAKING CHANGES
- namespaces: the root namespace has been changed from
Cobweb
toAranasoft.Cobweb
. For example, theMigrationExtensions
class is now located withinAranasoft.Cobweb.FluentMigrator.Extensions
. (56aa10b)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. 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. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 is compatible. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.6.1
- FluentMigrator (>= 3.0.0 && < 4.0.0)
-
.NETStandard 2.0
- FluentMigrator (>= 3.0.0 && < 4.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.