選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TestDbContext.cs 377 B

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. }