CodeLiturgy.Dashboard/BlueWest.Api/Context/CompanyDbContext.cs

93 lines
2.3 KiB
C#
Raw Normal View History

2022-08-22 00:14:50 +03:00
using BlueWest.Data;
using BlueWest.WebApi.EF.Model;
2022-09-06 01:17:47 +03:00
using BlueWest.EfMethods;
2022-08-22 00:14:50 +03:00
using Microsoft.EntityFrameworkCore;
namespace BlueWest.WebApi.EF
{
2022-08-22 02:51:45 +03:00
/// <summary>
/// Context for accessing company data
/// </summary>
2022-09-06 00:42:45 +03:00
[EfGenerator]
2022-08-22 02:51:45 +03:00
public sealed class CompanyDbContext : DbContext
2022-08-22 00:14:50 +03:00
{
2022-09-06 00:42:45 +03:00
#region Companies
2022-08-22 02:51:45 +03:00
/// <summary>
/// Companies.
2022-08-22 02:51:45 +03:00
/// </summary>
2022-08-24 19:56:51 +03:00
[EfAddMethods(typeof(CompanyCreate), typeof(CompanyUnique))]
2022-09-06 01:37:52 +03:00
2022-08-29 03:40:57 +03:00
[EfUpdateMethods(
updateType: typeof(CompanyUpdate),
returnType: typeof(CompanyUnique),
2022-09-01 08:54:42 +03:00
keyPropertyMemberName: nameof(Company.Id))
2022-08-28 21:39:40 +03:00
]
2022-08-29 03:40:57 +03:00
2022-08-22 00:14:50 +03:00
public DbSet<Company> Companies { get; set; }
2022-09-06 00:42:45 +03:00
#endregion
#region Industries
2022-08-22 02:51:45 +03:00
/// <summary>
/// Industries.
2022-08-22 02:51:45 +03:00
/// </summary>
2022-08-24 19:56:51 +03:00
[EfAddMethods(typeof(IndustryCreate), typeof(IndustryUnique))]
2022-09-06 01:37:52 +03:00
2022-08-29 03:40:57 +03:00
[EfUpdateMethods(
updateType: typeof(IndustryUpdate),
returnType: typeof(IndustryUnique),
2022-09-01 08:54:42 +03:00
keyPropertyMemberName: nameof(Industry.Id)
)
2022-08-29 03:40:57 +03:00
]
2022-08-22 00:14:50 +03:00
2022-08-24 19:56:51 +03:00
public DbSet<Industry> Industries { get; set; }
2022-09-06 00:42:45 +03:00
#endregion
2022-09-06 01:37:52 +03:00
#region Products
/// <summary>
/// Products
/// </summary>
2022-08-22 00:14:50 +03:00
2022-09-06 01:37:52 +03:00
[EfAddMethods(typeof(ProductCreate), typeof(ProductUnique))]
[EfUpdateMethods(
updateType: typeof(ProductUpdate),
returnType: typeof(ProductUnique),
keyPropertyMemberName: nameof(Product.Id)
)
]
2022-08-22 00:14:50 +03:00
2022-09-06 01:37:52 +03:00
public DbSet<Product> Products { get; set; }
#endregion
2022-08-22 00:14:50 +03:00
2022-09-06 01:37:52 +03:00
#region Initialization
2022-08-22 00:14:50 +03:00
/// <summary>
/// CompanyDbContext constructor.
2022-08-22 00:14:50 +03:00
/// </summary>
/// <param name="options"></param>
public CompanyDbContext(DbContextOptions<CompanyDbContext> options) : base(options)
{
Database.EnsureCreated();
}
2022-08-22 02:51:45 +03:00
/// <summary>
/// On model creating.
2022-08-22 02:51:45 +03:00
/// </summary>
/// <param name="modelBuilder">Builder model of the database</param>
2022-08-22 00:14:50 +03:00
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.ConfigureCurrentDbModel();
}
2022-09-06 01:37:52 +03:00
#endregion
2022-08-22 00:14:50 +03:00
}
}