ddd-repositories
Domain Model – Repositories – Communication across Sub-Systems
I am currently in the process of designing a system which will use multiple data sources to consume the required data. I am attempting to model the concepts shown below (would post an image but don\'t[详细]
2023-02-23 03:15 分类:问答Structure Question with EF 4.1
What are any reccomendations for the following. I have a structure like this. --ApplicationServices --Domain[详细]
2023-02-22 14:06 分类:问答Try Catch in Repository
None of the examples I have looked at for Repository Patterns include any kind of error handling. Why is this? Say for instance I have this:[详细]
2023-02-22 03:24 分类:问答Loading a Value object in List or DropdownList, DDD
I need to clarify something. Have Person Aggreagate , 2 VOs (Country, StateProvince). I want to load all country in my presentation layer (i am using mvc)[详细]
2023-02-21 03:27 分类:问答Repository pattern: repository per aggregate or per underlying data store?
It is recommended to have one repository per aggregate. However, I have a case where the same aggregate object can be fetched from 2 heterogeneous data stores. For the background, that object is:[详细]
2023-02-16 12:45 分类:问答C# Respository interface with select by id method using generics?
I am trying to come up with a generic way to pull an object by its Id in my repository. In my database, generally, all the IDs are primary keys and are of the type integer. There may be a case, down t[详细]
2023-02-16 05:05 分类:问答How do you persist/restore aggregate roots with entities in DDD?
Based on the following definitions from Domain-Driven Design: Tackling Complexity in the Heart of Software,[详细]
2023-02-14 02:58 分类:问答Architectural concerns: Fluent NHibernate, The Repository pattern and ASP.NET MVC
I\'ve just started a new project and have naturally opted to use a lot of new tech. I\'m using (Fluent) NHibernate, ASP.NET MVC 3 and am trying to apply the Repository pattern.[详细]
2023-02-12 01:03 分类:问答How to test my repositories implementation?
I am using NUnit for test units. I have my interface on the domain so i am ready to make implementation of those interfaces in the persistence layer. My question is how do you actually make the unit t[详细]
2023-02-11 03:13 分类:问答Repository or ServiceAgent in DDD
I have a system that talks with the database using repositories. What is the correct definition when it is a remote service? Or better,[详细]
2023-02-09 23:18 分类:问答