I feel like I've missed something obvious.
I want to test my EF Core DbContext
in LinqPad like I usually do with regular EF.
I have a simple DbContext
:
public class NotificationManagerContext : DbContext
{
public virtual DbSet<Notification> Notifications { get; set; }
}
I've registered it in LinqPad using the new EF Core 2.0.1 driver:
In an MCV Core app I'd register EF and the SQL driver in the app builder and pass it a connection string. I don't see how to do the same config in LinqPad?