17 lines
504 B
C#
17 lines
504 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ApiSoftway.Models.Gesa_DbContext
|
|
{
|
|
public class GESA_PERSONALE_DbContext : DbContext
|
|
{
|
|
public DbSet<Personale>? Personale { get; set; }
|
|
public GESA_PERSONALE_DbContext(DbContextOptions<GESA_PERSONALE_DbContext> options) : base(options)
|
|
{
|
|
}
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
modelBuilder.Entity<Personale>().ToView("API_PERSONALE");
|
|
}
|
|
}
|
|
}
|