This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
DevOpsOpenHack/apis/poi/web/Data/POIContext.cs

15 lines
277 B
C#
Raw Normal View History

2022-11-03 20:41:13 +00:00
using Microsoft.EntityFrameworkCore;
using poi.Models;
namespace poi.Data
{
public class POIContext : DbContext
{
public POIContext(DbContextOptions<POIContext> options) : base(options)
{
}
public DbSet<POI> POIs { get; set; }
}
}