Skip to content

Instantly share code, notes, and snippets.

@AndreasLazar
Last active June 15, 2018 13:47
Show Gist options
  • Save AndreasLazar/2b0a676dceaacedf5b08a9431db2cd01 to your computer and use it in GitHub Desktop.
Save AndreasLazar/2b0a676dceaacedf5b08a9431db2cd01 to your computer and use it in GitHub Desktop.
[...]
using MeineApp.Data;
using Microsoft.EntityFrameworkCore;
namespace MeineApp
{
public class Startup
{
[...]
public void ConfigureServices(IServiceCollection services)
{
string connString = Configuration.GetConnectionString("DefaultConnection");
services.AddDbContext<KcDbContext>(
options => options.UseSqlite(connString)
);
[...]
}
[...]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment