Skip to content

Instantly share code, notes, and snippets.

@httpmurilo
Created May 7, 2020 02:56
Show Gist options
  • Save httpmurilo/55c8cf5e6640fc102f4d94070afbe544 to your computer and use it in GitHub Desktop.
Save httpmurilo/55c8cf5e6640fc102f4d94070afbe544 to your computer and use it in GitHub Desktop.
trecho do configure service
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<DataContext>(opt => opt.UseInMemoryDatabase("InMemory"));
services.AddTransient<DataContext, DataContext>();
services.AddControllers();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment