1
vote
2answers
27 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
45 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 …
0
votes
0answers
19 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 …
3
votes
1answer
30 views
Where would you typically implement transaction logic in domain-driven design?
In the consumer code? (like a controller)
In repositories?
In services?
3
votes
2answers
74 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
75 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 …
0
votes
1answer
54 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
1answer
82 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 …
1
vote
3answers
38 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 …
1
vote
1answer
39 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 …
4
votes
3answers
87 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, …
0
votes
0answers
6 views
Which validation tags are appropriate for the model?
For proper separation of concerns on a domain/business assembly/layer it seems to me that a good practice would be to go ahead and system.ComponentModel.DataAnnotations mark up my fields in the domain …
2
votes
4answers
109 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 …
0
votes
5answers
47 views
Is a guid as identity field better in domain-driven design?
Is it easier to implement domain-driven design when using guids as identity fields instead of auto incrementing integers? With guids you don't have to jump to the database to get the actual value.
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 …
