ApiVirtualTask/ApiPolo/Models/VT_dbcontext/VT_SALDIART_DbContext.cs
2025-05-08 17:41:48 +02:00

19 lines
498 B
C#

using Microsoft.EntityFrameworkCore;
namespace ApiPolo.Models.VT_dbcontext
{
public class VT_SALDIART_DbContext : DbContext
{
public DbSet<Articoli>? SaldiArt_VT { get; set; }
public VT_SALDIART_DbContext(DbContextOptions<VT_SALDIART_DbContext> options) : base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Articoli>().ToView("API_SALDIART_PREZZI");
}
}
}