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