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