GeoFeed/AS1024.GeoFeed.Core.GeoFeed.../GeoFeedSqliteLocalCache/GeoFeedCacheDbContext.cs

15 lines
356 B
C#

using Microsoft.EntityFrameworkCore;
namespace AS1024.GeoFeed.Core.GeoFeedSqliteLocalCache
{
public class GeoFeedCacheDbContext : DbContext
{
public GeoFeedCacheDbContext(DbContextOptions options)
: base(options)
{
}
public virtual DbSet<GeoFeedCacheEntry> GeoFeedCacheEntries { get; set; }
}
}