25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

AppDbContext.cs 288 B

3 yıl önce
1234567891011121314
  1. using Microsoft.EntityFrameworkCore;
  2. using Microsoft.Extensions.Options;
  3. namespace Sample.Redis.SqlServer
  4. {
  5. public class AppDbContext : DbContext
  6. {
  7. public AppDbContext(DbContextOptions<AppDbContext> optionsBuilder) : base(optionsBuilder)
  8. {
  9. }
  10. }
  11. }