ApiSoftway/Models/Gesa_DbContext/GESA_AUTOMEZZI_DbContext.cs
2024-07-15 16:06:27 +02:00

19 lines
507 B
C#

using Microsoft.EntityFrameworkCore;
namespace ApiSoftway.Models.Gesa_DbContext
{
public class GESA_AUTOMEZZI_DbContext : DbContext
{
public DbSet<Automezzi>? Automezzi { get; set; }
public GESA_AUTOMEZZI_DbContext(DbContextOptions<GESA_AUTOMEZZI_DbContext> options): base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Automezzi>().ToTable("GESASAUTOMEZZI");
}
}
}