/// <summary> /// 构造函数 /// </summary> /// <param name="dbContext"></param> public EfRepository(GeneralDbContext dbContext) { _dbContext = dbContext; }
public RepositoryBase(GeneralDbContext generalDbContext) { this._dbContext = generalDbContext; }