Advertisement
Guest User

Untitled

a guest
May 20th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. services
  2. .AddDbContext<MusicDemonsContext>(options => {
  3. options.UseSqlServer(connection_string, b => b.MigrationsAssembly("MusicDemons.Data"));
  4. })
  5. .AddScoped<IAccountRepository, AccountRepository>()
  6. .AddScoped<IRoleRepository, RoleRepository>();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement