1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| public class DaimuDbContext : DbContext { public readonly string connectionString;
public DaimuDbContext() : this(null) { } public DaimuDbContext(string ConnectionString) { if (ConnectionString == null || ConnectionString.Length == 0) { //Configuration connectionString = "ConnectionString"; } else { connectionString = ConnectionString; } }
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { if (optionsBuilder != null) { optionsBuilder.UseSqlServer(connectionString); } }
public DbSet<UserInfo> UserInfo { get; set; }
public DbSet<OrderInfo> OrderInfo { get; set; } }
|