ApiSoftway/Models/Gesa_DbContext/GESA_GIRI_DbContext.cs
2024-06-17 15:50:52 +02:00

17 lines
469 B
C#

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