I\'ve been studying DDD for the past 2 weeks, and one of the things that really stuck out to me was how aggregate roots can contain other aggregate roots. Aggregate roots are retrieved from the reposi
What are the pros and cons of using static repositories in an ASP.NET MVC application? Wouldn\'t it be bette开发者_开发技巧r to have all the methods available all the time -> means that the class get
I am trying to figure out the repository pattern for .NET.I think I have a pretty decent understanding of it, but I still don\'t feel comfortable using it.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
I\'ve a problem with saving changes to database, I\'m using LINQ2SQL mapping. I\'ve implemented M:M relation (User <= UserRole => Role) based on tutorial: http://www.codeproject.com/KB/linq/linqtut
I am considering refactoring a repository I have to improve its flexibility and reduce the method count.
I\'m writting an ASP.NET MVC e-commerce app using NHibernate and I want the end-user to be able to control the ordering of Product Categories (not just have them appear alphebetically etc.).
I am getting an XAMLParseException that is really covering up another exception. Here is part of the stacktrace:
Aft开发者_JS百科er reading thorugh plenty of articles I am still unsure about the responsibilities of Unit of Work pattern when interacting with repositories.
I\'m trying to use the Repository pattern for my current project and i\'m currently in the proc开发者_JAVA百科ess of trying to model the domain and find the aggregate roots.