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

23 lines
624 B
C#

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