ApiSoftway/Models/Gesa_DbContext/GESA_DESTINAZIONI_DbContext.cs
2024-06-17 15:50:52 +02:00

18 lines
566 B
C#

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