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.
 
 
 

15 lines
288 B

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