using Microsoft.EntityFrameworkCore; namespace ApiPolo.Models.Sicilia_dbcontext { /// public class SICILIA_COMMESSEDbContext : DbContext { /// public DbSet? Commesse { get; set; } /// public SICILIA_COMMESSEDbContext(DbContextOptions options) : base(options) { } /// protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.Entity().ToView("API_COMMESSE"); } } }