5
votes
2answers
234 views
Corrupting POCO Domain Model when creating LINQ Entity Classes?
Say I've got a domain model created from C# classes like this:
public class MyClass
{
public string MyProperty { get; set; }
}
Along with the model, I have defined repository interfaces classes for …
1
vote
1answer
46 views
Mapping vs. service layer, or business logic position
I got a Product and a collection of Payers. The Payers can pay for the product in three different ways, either but manually set the percentage, by Payers income or by the value of the Payers …
0
votes
2answers
48 views
Mapping from Entity Framework to custom domain model classes?
I wonder how could I obtain an automatic mapping between entities generated by entity framework (.NET Framework 3.5 SP1) and custom domain model classes? I know I can create some data converters that …
0
votes
2answers
59 views
Is it possible to modify methods of an object instance using reflection
What I'm trying to do is create a domain model with a Plain Old PHP Object.
The I'm creating a library which will do all the infrastructure stuff.
So one of my models looks like this
class Project {
…
2
votes
4answers
118 views
Zend Framework / MVC: What type of objects to push to the View?
Hey guys - here's a question on Zend Framework or better on MVC in general:
I am asking myself for a quiet a long time now, if it is a good idea to push business objects (User, Team, etc.) to my …
1
vote
3answers
131 views
What are good python libraries for the following needs?
What are good python libraries for the following needs:
MVC
Domain Abstraction
Database Abstraction
Video library (just to create thumbnails)
I already know that SQLAlchemy is really good for …
1
vote
1answer
158 views
AutoMapper flattens Domain Models but does it do the opposite? If not, what does?
I've been reading up on AutoMapper because of a response to one of my earlier questions here. It says that AutoMapper flattens complex domain models, but I need something that does the opposite. I …
2
votes
6answers
220 views
Should we use foreign-key constraints when persisting Domain Models?
A while ago I had a discussion with my colleagues about the persistence of Domain Models and whether we should enforce foreign-key constraints at the database level.
My first reaction was that the …
2
votes
4answers
276 views
Dealing with an anemic domain model
I was trying to separate my DAL from my Business Layer, and in doing so, I decided to eschew any ActiveRecord approach and go for a DataMapper approach.
In other words, my domain objects would not …
0
votes
1answer
102 views
NHibernate Traversal Question - Creating a Fluent Interface
I'm stumped with NHibernate and my Domain Model right now. I'm imagining a nice API in my head but I'm having a really hard time making it a reality. Here's an example of what I'm trying to …
2
votes
3answers
285 views
LINQ Entities as business objects - pro/cons
Hello all,
the dbml file generated by Visual Studio (sqlmetal) comes with entities mapped to database tables. In your opinion, these clases are suitable to be used as domain model classes? Or should …
1
vote
2answers
98 views
Domain Model Saving
Recently finished reading Eric Evans Domain Driven Design (very informative, very enjoyable) however come to first major project since completing the book and got the issue how to handle the domain …
1
vote
2answers
311 views
Domain Model + LINQ to SQL sample
Hello all,
I wonder if there is an enterprise application sample, designed with Domain Model in the Business Logic layer and LINQ for the Data Mapper? I'm not so sure of how to use the UnitOfWork …
1
vote
1answer
162 views
Domain Model - Identifier Relationships vs. Hierarchal Objects
While fleshing out a hypothetical domain model, I have found myself wondering whether the better approach in relating domain objects would be to have a parent domain object contain a pointer (the …
