public EcommInMemoryContext(DbContextOptions <EcommInMemoryContext> options) : base(options) { Database.EnsureCreated(); // In memory we do not need async if (!Orders.AnyAsync().Result) { SeedData.Initialize(this); } }