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