ddd-repositories
Book suggestion on this DDD concept specific to ASP.NET MVC and JSON? [closed]
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.[详细]
2023-01-06 01:32 分类:问答DDD and MVC Models hold ID of separate entity or the entity itself?
If you have an Order that references a customer, does the model include the ID of the customer or a copy of the customer object like a value object (thinking DDD)?[详细]
2023-01-01 23:00 分类:问答How do I implement repository pattern and unit of work when dealing with multiple data stores?
I have a unique situation where I am building a DDD based system that needs to access both Active Directory and a SQL database as persistence. Initially this wasnt a problem because our design was set[详细]
2023-01-01 07:00 分类:问答How to keep your unit tests simple and isolated and still guarantee DDD invariants?
DDD recommends that the domain objects should be in a valid state at any time. Aggregate roots are responsible for guaranteeing the invariants and Factories for assembling objects with all the require[详细]
2022-12-30 20:29 分类:问答Linq to Sql, Repositories, and Asp.Net MVC ViewData: How to remove redundancy?
Linq to SQL creates objects which are IQueryable and full of relations. Html Helpers require specific interface objects like IEnumerabl开发者_如何学Ce<SelectListItem>.[详细]
2022-12-26 07:37 分类:问答What is the best way to use EF 4 and DDD
I would like to use EFf 4 as my ORM in my DDD project. I am going to generate 开发者_如何学Cmy model based on my classes.Should I create classes that are basically dto objects for my business objects[详细]
2022-12-26 06:23 分类:问答DDD: Trying to code sorting and filtering as it pertains to Poco, Repository, DTO, and DAO using C#?
I get a list of items from my Repository.Now I need to sort and filter them, which I believe would be done in the Repository for efficiency.I think there would be two ways of doing this in a DDD way:[详细]
2022-12-23 02:23 分类:问答Applying DDD to Northwind database
I would like to do some exercice and apply DDD to my Domain Model applied to Northwind database. Even if Northwind is an example I imagine that it was done to satisfy some \" virtual business\" requir[详细]
2022-12-21 19:22 分类:问答How do I effectively use SQLAlchemy with multiple DDD Repositories?
I have been trying to find some examples of how to implement the Repository pattern with SQLAlchemy. Specifically, implementing more than one Repository.[详细]
2022-12-20 03:54 分类:问答DDD - How to implement high-performing repositories for searching
I have a question regarding DDD and the repository pattern. Say I have a Customer repository for the Customer aggregate root. The Get & Find methods return the fully populated aggregate, which i[详细]
2022-12-16 18:54 分类:问答