19 lines
507 B
C#
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");
|
|
}
|
|
}
|
|
}
|