I\'m working on a project with NHibernate that classes similar to the following: public class Parent {
I\'m trying to figure out where (in the various layers) the business entities should start and the object to table mapping end.
In a blog application developed using domain driven design a \'Post\' entity has a related collection of tag entities.
We are trying to find out the best practice when using DDD and we are having some discussions on what makes the most sense or is the \"right way\".
With the new ASP.NET MVC 2 validation features, we can decorate the properties of our domain model objects with DataAnnotations attributes that describe criteria for valid values. The DefaultModelBind
Closed. This question needs to be more focused. It is not currently accepting answers. 开发者_如何学运维
I downloaded the DDD Sample Application (based on book by Eric Evans) and it uses a hsqldb. However, I can\'t seem to find how this db is set up. I opened the project in Intellij and everything builds
In Eric Evans\' Domain Driven Design开发者_Python百科 approach, would it be a good idea to use Rocky Lhotka\'s CSLA.NET for designing Business Entities for Domain Layer?Looks like we can do that.It\'s
Since there aren no respositories for value objects. How can I load all value objects? Suppose we are modeling a blog application and we have t开发者_JS百科his classes:
I have been trying to find some examples of how to implement the Repository pattern with SQLAlchemy. Specifically, implementing more than one Repository.