You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestDbContext.cs 377 B

7 vuotta sitten
12345678910111213
  1. using Microsoft.EntityFrameworkCore;
  2. namespace DotNetCore.CAP.SqlServer.Test
  3. {
  4. public class TestDbContext : DbContext
  5. {
  6. protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
  7. {
  8. var connectionString = ConnectionUtil.GetConnectionString();
  9. optionsBuilder.UseSqlServer(connectionString);
  10. }
  11. }
  12. }