0
votes
5answers
150 views
How many levels of abstraction do I need in the data persistence layer?
I'm writing an application using DDD techniques. This is my first attempt at a DDD project. It is also my first greenfield project and I am the sole developer. I've fleshed out the …
1
vote
3answers
68 views
Entity Framework POCO Does Not Fit Nicely with Domain Objects
I have taken a model first approach for a project i'm working on. An example of a class relationship is shown as follows, pretty strightforward:
public class Product
{
public i …
3
votes
2answers
61 views
rich domain model example
Hi,
I'm looking for a simple example to illustrate the benefits of using a rich domain model. Ideally, I'd like a before and after code listing (which should be as short as possib …
2
votes
2answers
47 views
Multiple Service Layers and Database Transactions
I'm just wondering how to best handle transactions across multiple service layers. The service layers use an ORM to store and retrieve from the database. Should the transactions be …
0
votes
2answers
58 views
How to solve state-stateless in a client-server application?
I've read some books on creating stateless websites, I've read some about stateful client applications, but a lot of complexity comes along when you have to combine both. We have a …
0
votes
2answers
77 views
Design Patterns: Factory and Repository
Hello,
I have been wondering if the Factory Pattern and the Repository Pattern is keened to go hand in hand in a Domain Driven Design project?
The reason i ask is the way i'm doi …
0
votes
2answers
31 views
Should a Repository be responsible for “flattening” a domain?
Disclaimer: I'm pretty new to DDD and its associated terminology, so if i'm mislabeling any concepts, please correct me.
I'm currently working on a site with a relatively simple …
3
votes
2answers
51 views
C# Advanced XML Serializer that doesn’t require domain object pollution
Are there any closed or open source projects for a XML serializer for C# that can serialize for the most part any object without the need to pollute my domain objects with tons of …
2
votes
1answer
69 views
Domain Driven Design - Repositories and aggregate roots
I have a domain model that contains a forum.
I have forum, thread and post entities.
The forum is a standalone entity. Ie it does not contain thread as part of an aggregate. Thi …
0
votes
2answers
37 views
ASP.NET MVC models when using external web services
I'm getting started on a new MVC project where there are some peculiar rules and a little bit of strangeness, and it has me puzzled. Specifically, I have access to a database conta …
0
votes
3answers
35 views
How do restrict access to a class property to only within the same namespace
How do restrict access to a class property to within the same namespace? Consider the following class. The Content class cannot Publish itself, instead the ContentService class
…
2
votes
3answers
42 views
Why would be the drawback of forcing my domain objects to implement INotifyPropertyChanged ?
I am thinking of making all my entities in my domain model implement INotifyPropertyChanged . My main reason behind this would be:
If some entity gets changed in the domain the pr …
5
votes
4answers
124 views
Domain Objects containing lots of Data
Our Domain has a need to deal with large amounts (possibly more than 1000 records worth) of objects as domain concepts. This is largely historical data that Domain business logic n …
0
votes
1answer
21 views
Handling data content security
So let's say that in your application you have to handle data content security, in such a way that application defines several "Entities" that have to be secured so that user canno …
0
votes
6answers
106 views
DDD: Should everything fit into either Entity or Value Object?
Hi,
I'm trying to follow DDD, or a least my limited understanding of it.
I'm having trouble fitting a few things into the DDD boxes though.
An example: I have a User Entity. T …
