using PoweredSoft.DynamicLinq.Dal.Pocos; using Microsoft.EntityFrameworkCore; using JetBrains.Annotations; using System.Diagnostics.CodeAnalysis; namespace PoweredSoft.DynamicLinq.Dal { public class BlogCoreContext : DbContext { public BlogCoreContext([NotNull] DbContextOptions options) : base(options) { } protected BlogCoreContext() { } public DbSet Authors { get; set; } public DbSet Comments { get; set; } public DbSet Posts { get; set; } } }