I\'m in the process of designing my ASP.NET MVC application and I ran across a couple of interesting thoughts.
Many samples I have seen describe and use the Reposito
Do people have individual repositorys based on each table (IUserRepository)? I tend to have a repository for each aggregate, not each table.
Do they use a generic IRepository? if possible, yes
Do they use a static repository factory? I prefer the injection of a Repository instance through an IOC container