ApiSoftway/Models/Gesa_DbContext/GESA_GIRICONSEGNEDACREARE_DbContext.cs
2024-06-27 17:39:12 +02:00

17 lines
575 B
C#

using Microsoft.EntityFrameworkCore;
namespace ApiSoftway.Models.Gesa_DbContext
{
public class GESA_GIRICONSEGNEDACREARE_DbContext : DbContext
{
public DbSet<GiriConsegnaDaCreare>? GiriDaCreare { get; set; }
public GESA_GIRICONSEGNEDACREARE_DbContext(DbContextOptions<GESA_GIRICONSEGNEDACREARE_DbContext> options) : base(options)
{
}
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<GiriConsegnaDaCreare>().ToView("API_GIRICONSEGNA_DA_CREARE");
}
}
}