Skip to content

Instantly share code, notes, and snippets.

@mertmtn
Last active July 12, 2022 23:05
EFCore InMemory implementation to Program.cs
builder.Services.AddDbContext<ECommerceDbContext>(options =>
{
options.UseInMemoryDatabase("ECommerceDb");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment