1
vote
2answers
24 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
3answers
34 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
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 …
0
votes
0answers
16 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
26 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
72 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 …
2
votes
4answers
107 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 …
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 …
0
votes
1answer
78 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
1answer
34 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 …
0
votes
1answer
50 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 …
10
votes
8answers
985 views
Are there any open source projects using DDD (Domain Driven Design)?
I'm trying to understand the concepts behind DDD, but I find it hard to understand just by reading books as they tend to discuss the topic in a rather abstract way. I would like to see some good …
4
votes
3answers
84 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 …
1
vote
2answers
83 views
Table module samples
Hello,
I'm looking for some good open-source sample applications that use the Table Module pattern to organize the business logic (can be any language).
Any suggestions?
