2022-08-13 06:35:36 +03:00
|
|
|
using BlueWest.Data;
|
2022-09-19 05:50:15 +03:00
|
|
|
using BlueWest.Domain.Model;
|
|
|
|
using BlueWest.Domain.Extensions;
|
2022-08-13 06:35:36 +03:00
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
using Microsoft.Extensions.Configuration;
|
2022-09-19 05:50:15 +03:00
|
|
|
using BlueWest.EfMethods;
|
2022-08-13 06:35:36 +03:00
|
|
|
|
2022-09-19 05:50:15 +03:00
|
|
|
namespace BlueWest.Domain
|
2022-08-13 06:35:36 +03:00
|
|
|
{
|
2022-08-20 05:47:32 +03:00
|
|
|
|
2022-08-13 20:15:43 +03:00
|
|
|
/// <summary>
|
2022-08-20 05:47:32 +03:00
|
|
|
/// Countries and Currencies
|
2022-08-13 20:15:43 +03:00
|
|
|
/// </summary>
|
2022-09-05 05:58:37 +03:00
|
|
|
[EfGenerator]
|
2022-08-22 02:51:45 +03:00
|
|
|
public sealed class CountryDbContext : DbContext
|
2022-08-13 06:35:36 +03:00
|
|
|
{
|
|
|
|
|
2022-09-06 00:42:45 +03:00
|
|
|
#region Countries
|
2022-09-08 06:15:44 +03:00
|
|
|
|
2022-08-22 02:51:45 +03:00
|
|
|
/// <summary>
|
2022-09-08 06:15:44 +03:00
|
|
|
/// Countries
|
2022-08-22 02:51:45 +03:00
|
|
|
/// </summary>
|
2022-09-06 00:42:45 +03:00
|
|
|
|
2022-09-08 06:15:44 +03:00
|
|
|
[EfGetOneBy(nameof(Country.Id), typeof(CountryUnique))]
|
2022-09-06 00:42:45 +03:00
|
|
|
[EfGetOne(typeof(CountryUnique))]
|
2022-09-09 06:26:16 +03:00
|
|
|
|
2022-09-08 06:15:44 +03:00
|
|
|
[EfAddMethods(createType: typeof(CountryCreate), returnType: typeof(CountryUnique))]
|
|
|
|
[EfUpdateMethods( updateType: typeof(CountryUpdate), returnType: typeof(CountryUnique), keyPropertyMemberName: nameof(Country.Id))]
|
2022-09-09 06:26:16 +03:00
|
|
|
|
2022-09-06 00:42:45 +03:00
|
|
|
[EfGetMany(typeof(CountryUnique))]
|
2022-08-20 05:47:32 +03:00
|
|
|
public DbSet<Country> Countries { get; set; }
|
2022-09-06 00:42:45 +03:00
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
|
|
#region Initialization
|
2022-08-22 02:51:45 +03:00
|
|
|
/// <summary>
|
|
|
|
/// App Configuration
|
|
|
|
/// </summary>
|
2022-08-20 05:47:32 +03:00
|
|
|
public IConfiguration Configuration;
|
2022-08-13 06:35:36 +03:00
|
|
|
|
2022-09-06 00:42:45 +03:00
|
|
|
|
2022-08-20 05:47:32 +03:00
|
|
|
/// <summary>
|
2022-08-22 05:13:53 +03:00
|
|
|
/// CountryDbContext Constructor.
|
2022-08-20 05:47:32 +03:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="options"></param>
|
|
|
|
public CountryDbContext(DbContextOptions<CountryDbContext> options) : base(options)
|
|
|
|
{
|
|
|
|
Database.EnsureCreated();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2022-08-22 05:13:53 +03:00
|
|
|
/// On model creating.
|
2022-08-20 05:47:32 +03:00
|
|
|
/// </summary>
|
|
|
|
/// <param name="modelBuilder"></param>
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
|
|
{
|
|
|
|
base.OnModelCreating(modelBuilder);
|
|
|
|
modelBuilder.ConfigureCurrentDbModel();
|
|
|
|
}
|
2022-09-06 00:42:45 +03:00
|
|
|
#endregion
|
2022-08-22 00:14:50 +03:00
|
|
|
|
2022-09-06 00:42:45 +03:00
|
|
|
}
|
2022-08-20 05:47:32 +03:00
|
|
|
}
|