using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models.Sarom_dbcontext
{
///
public class SAROM_MAGAZZINIDbContext : DbContext
{
///
public DbSet? Magaz { get; set; }
///
public SAROM_MAGAZZINIDbContext(DbContextOptions options) : base(options)
{
}
///
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity().ToTable("SAROMMAGAZZIN");
modelBuilder.Entity().HasKey(table => new
{
table.mgcodmag
});
}
}
}