For simple integration into ASP.NET Core projects, the Kros.KORM.Extensions.Asp package was created.
For configuration, general information and examples see the documentation.
Kros.KORM.Extensions.Asp is available from Nuget Kros.KORM.Extensions.Asp.
To contribute with new topics/information or make changes, see contributing for instructions and guidelines.
You can use the AddKorm
extension methods to register databases to the DI container. This registers IDatabaseFactory
into DI container. This factory can be used to retrieve IDatabase
instances by name. If no name is specified, default name DefaultConnection
will be used. IDatabase
instances has scoped lifetime.
The first database registered by AddKorm
method is also added to the DI container directly as IDatabase
dependency. This is for simple use case, when only one database is used. So there is no need for using IDatabaseFactory
.
public void ConfigureServices(IServiceCollection services)
{
services.AddKorm(Configuration);
}
The configuration file (typically appsettings.json
) must contain a standard connection strings section (ConnectionStrings
). Name of the connection string can be specified as second parameter. If the name is not specified, default name DefaultConnection
will be used.
"ConnectionStrings": {
"DefaultConnection": "Server=ServerName\\InstanceName; Initial Catalog=database; Integrated Security=true",
"localConnection": "Server=Server2\\Instance; Integrated Security=true;"
}
Connection string can be passed directly to AddKorm
method, together with its name. The name DefaultConnection
will be used if no name is specified.
public void ConfigureServices(IServiceCollection services)
{
// Added from appsettings.json under "localConnection" name.
services.AddKorm(Configuration, "localConnection");
// Added directly with the name "db2".
services.AddKorm("Server=ServerName\\InstanceName; Initial Catalog=database; Integrated Security=true", "db2");
}
KORM supports additional settings for connections:
AutoMigrate
: The value is booleantrue
/false
. If not set (or the value is invalid), the default value isfalse
. If it istrue
, it allows automatic database migrations.KormProvider
: This specifies database provider which will be used. If not set, the valueSystem.Data.SqlClient
will be used. KORM currently supports only Microsoft SQL Server, so there is no need to use this parameter.
These settings (if needed) can also be set in configuration file under the KormSettings
section. Settings are identified by connection string name.
"KormSettings": {
"DefaultConnection": {
"AutoMigrate": true
},
"localConnection": {
"AutoMigrate": true
}
}
For simple database migration, you must call:
public void ConfigureServices(IServiceCollection services)
{
services.AddKorm(Configuration)
.AddKormMigrations()
.Migrate();
}
Migrations are disabled by default, so the previous code requires that the automatic migrations are enabled in KormSettings for each connection string: AutoMigrate=true
Korm by default performs migrations by searching the main assembly for files in SqlScripts
directory. The script file name must match pattern {migrationId}_{MigrationName}.sql
. MigrationId
is increasing number over time.
For example: 20190301001_AddPeopleTable.sql
CREATE TABLE [dbo].People (
[Id] [int] NOT NULL,
[Name] [nvarchar](255)
CONSTRAINT [PK_People] PRIMARY KEY CLUSTERED ([Id] ASC)
WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
Migration can also be executed through an HTTP request. By calling the /kormmigration
endpoint, the necessary migrations will be executed. However, you need to add middleware:
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseKormMigrations();
}
You can change the endpoint URL by configuration:
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseKormMigrations(options =>
{
options.EndpointUrl = "/loremipsum";
});
}
If multiple KORM databases are registered, all of them have unique name. Migrations are performed per database and the name of the database is specified in URL as another path segment: /kormmigration/dbname
If the name is not specified, default connection string will be used (DefaultConnection
).
If you have scripts stored in a different way (for example, somewhere on a disk or in another assembly), you can configure your own providers to get these scripts.
public void ConfigureServices(IServiceCollection services)
{
services.AddKorm(Configuration)
.AddKormMigrations(o =>
{
var assembly = AppDomain.CurrentDomain.GetAssemblies() .FirstOrDefault(x => x.FullName.StartsWith ("Demo.DatabaseLayer") );
o.AddAssemblyScriptsProvider(assembly, "Demo.DatabaseLayer.Resources");
o.AddFileScriptsProvider(@"C:\scripts\");
o.AddScriptsProvider(new MyCustomScriptsProvider());
})
.Migrate();
}
It is possible to set your own timeout for running migration script. Defaul timeout is 30 seconds.
public void ConfigureServices(IServiceCollection services)
{
services.AddKorm(Configuration)
.AddKormMigrations(o =>
{
o.Timeout = TimeSpan.FromMinutes(1);
})
.Migrate();
}
KORM creates a __KormMigrationsHistory
table in which it has a history of individual migrations.
If you need to initialize the database for IIdGenerator then you can call InitDatabaseForIdGenerator
.
public void ConfigureServices(IServiceCollection services)
{
services.AddKorm(Configuration)
.InitDatabaseForIdGenerator();
}
KORM supports custom converters (via IConverter implementation) for converting values from DB to objects and vice versa. These converters are set for individual columns in OnModelCreating
method of database configuration class (DatabaseConfigurationBase
).
If you need to convert text formatted as JSON from database to entity, you can use pre-defined converter - JsonConverter
:
public override void OnModelCreating(ModelConfigurationBuilder modelBuilder)
{
modelBuilder.Entity<MyEntity>()
.HasTableName(MyEntityTableName)
.Property(x => x.MySerializableProperty).UseConverter<JsonConverter>();
}