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