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