我正在尝试使用Simple Injector来创建我的存储库并在业务逻辑层中使用它(我也想使用PerWebRequest方法)。
在DAL层我有:
public interface IRepository<T> where T : class
{
void Add(T entity);
void Delete(T entity);
void Delete(int id);
void Update(T entity);
T GetById(int Id);
IQueryable<T> All();
IEnumerable<T> Find(Func<T, bool> predicate);
}
并且:
public class EFRepository<T> : IRepository<T>, IDisposable where T : class
{
#region Members
protected DbContext Context { get; set; }
protected DbSet<T> DbSet { get; set; }
#endregion
#region Constructors
public EFRepository(DbContext dbContext)
{
if (dbContext == null)
throw new ArgumentNullException("dbContext");
Context = dbContext;
DbSet = Context.Set<T>();
}
和我的背景:
public class PASContext : DbContext, IDbContext
{
public DbSet<Product> Products { get; set; }
public DbSet<User> Users { get; set; }
public PASContext()
: base("PostAndSell")
{ }
}
如你看到的 EFRepository
只有一个构造函数接受一个参数 - 这是因为我想使用Simple Injector创建上下文的实例,并在创建时将其传递给存储库。
在BLL我有一个班级 ProductBLL
我希望从数据库中获取该类中的所有产品(使用一些GetAll方法)并传递它,比如HomeController。
我真的需要有人跟我说说。
我首先从nuger安装正确的软件包(Simple Injector和Simple Injector ASP.NET Integration)
也可以在我的global.asax.cs文件中 Application_Start()
功能我添加:
var container = new SimpleInjector.Container();
container.RegisterPerWebRequest<IRepository<Product>, EFRepository<Product>>();
但是我在哪里创建Context实例?以及如何在业务层中访问它?