15 lines
277 B
C#
15 lines
277 B
C#
|
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; }
|
||
|
}
|
||
|
}
|