ApiManutenzioni/ApiPolo/Models/Siet_dbcontext/SIET_COMPO_IMPIA_DbContext.cs
2024-01-23 11:59:33 +01:00

23 lines
635 B
C#

using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models.Siet_dbcontext
{
/// <summary></summary>
public class SIET_COMPO_IMPIA_DbContext : DbContext
{
/// <summary></summary>
public DbSet<Compo_Impia>? Componen { get; set; }
/// <summary></summary>
public SIET_COMPO_IMPIA_DbContext(DbContextOptions<SIET_COMPO_IMPIA_DbContext> options) : base(options)
{
}
/// <summary></summary>
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Compo_Impia>().ToView("API_MICOMIMP");
}
}
}