1
vote
2answers
14 views
Using MS MVC and DDD, How and where to define a MVC ActionMethod parameter class that involves an entity, a value object, and a few extra fields?
I am just at the brink of going "Ah HA!" when it comes to coding Domain Driven Design. The question is How and where to define a MVC ActionMethod parameter class that involves an entity, a value …
1
vote
1answer
42 views
Should domain objects implement IXmlSerializable?
I'm building a REST API that exposes data as XML. I've got a whole bunch of domain classes in my domain layer that are intended for consumption by both the service layer behind the API, and the client …
3
votes
2answers
71 views
Best practice advice in generating and consuming business level events
Hi,
We are currently finishing an architecture plan for a new software application we are developing next year in ASP.NET MVC / C#.
We are planning to construct the application following …
4
votes
4answers
73 views
DDD “View Objects”?
Given an application that involves, say, Companies, I might have a Company class. I will have a data access layer that populates a List <Company>. However, there will be times (such as …
3
votes
1answer
23 views
Where would you typically implement transaction logic in domain-driven design?
In the consumer code? (like a controller)
In repositories?
In services?
0
votes
1answer
73 views
DDD: Can a Value Object have lists inside them?
I'm not well versed in domain driven design and I've recently started created a domain model for a project. I still haven't decided on an ORM (though I will likely go with NHibernate) and I am …
0
votes
1answer
48 views
Can I use a rich domain model with WCF?
Is it possible to use DDD and a rich domain model if your application is like:
windows client (WPF)
windows service
And communication happens with WCF?
I'm used to have DTO's with only data …
0
votes
0answers
15 views
Where does a many to many relationship go in domain driven design?
In the model I currently have an interface as such:
public interface IAmAnAssessment
{
int AssessmentId { get; set; }
string UserName { get; set; }
string DefectCode { get; set; }
string …
1
vote
3answers
33 views
EntityFramework or LinqToSql Entity Namespace
Hi,
I want to specify entity namespace based on my domain structure.
Usually like that :
Infrastructure.SqlServer
Customers (NS : Infrastructure.SqlServer.Customers)
Customer
Address
Products …
4
votes
3answers
83 views
anemic domain model versus domain model
Being confused again after reading about this anti-pattern and the many concerns about it here on SO.
If I have a domain model and capture the data that must be persisted in a data transfer object, …
2
votes
4answers
106 views
Domain Language: What is the best way to express?
One of my client sent me a requirement document and while reading that document there was a flash came in my mind. I started rewriting that big document similar like below. Do you think, an automated …
1
vote
1answer
31 views
DDD Projects Structure With WCF
Hi,
I'm starting a new WCF-based project which is composed by an "Engine" and some desktop applications.
But i found it difficult to make my project structure.
Engine (Windows Service, which host …
3
votes
2answers
82 views
Reading code of real production projects. How to find?
I really like the idea of reading others people code to improve your design skills. Open source can help here a lot.
This can teach you basic OO principles. But I'm not writing frameworks, I'm …
4
votes
4answers
112 views
Opinion wanted: Intercepting changes to lists/collections
Although BindingList<T> and ObservableCollection<T> provide mechanisms to detect list changes, they don't support mechanisms to detect/intercept changes before they happen.
I'm writing a …
6
votes
3answers
98 views
IoC Containers and Domain Driven Design
I've been searching for guidance for using IoC containers in domain driven design. Evan's book unfortunately doesn't touch on the subject. The only substantial guidelines I could find on the internet …
