/// <summary> /// Initializes a new instance of the <see cref="Storage">Storage</see> class. /// </summary> public Storage() { this.StorageContext = new StorageContext(Storage.ConnectionString); }
public void SetStorageContext(IStorageContext dbContext) { this.dbContext = dbContext as StorageContext; this.dbSet = this.dbContext.Set <TEntity>(); }