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