Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
7answers
2k views

What exactly is “persistence ignorance”?

Persistence ignorance is typically defined as the ability to persist & retrieve standard .NET objects (or POCOs if you really insist on giving them a name). And a seemingly well accepted ...
8
votes
3answers
561 views

Can Persistence Ignorance Scale?

I've been having a brief look at NHibernate and Linq2Sql. I'm also intending to have a peek at Entity Framework. The question that gets raised, when I talk of these ORM's is "They can't scale", so ...
7
votes
3answers
3k views

What are the benefits of Persistence Ignorance?

I am a newbie in the DDD+TDD World. But I have been in programming for almost 9 years. Can someone please explain me the benefits of persistance ignornace ? Typical nHibernate application just pushes ...
4
votes
1answer
730 views

Efficiently Determine if EF 4 POCO Already in ObjectSet

I'm trying EF 4 with POCO's on a small project for the first time. In my Repository implementation, I want to provide a method AddOrUpdate that will add a passed-in POCO to the repository if it's ...
3
votes
2answers
106 views

Ataching entity with association for modify

I would modify detached entity with associated collection, ex : Person and Address are POCO. When I attach entity and save changes, the collection changes isn't detected, how can I update Person ...
3
votes
2answers
488 views

NHibernate ITransaction and pure domain model

I'm trying to write my Domain Model as persistence-ignorant as possible. The only thing I'm doing right now is marking every property and method virtual, as NHibernate requires that for lazy-loading. ...
2
votes
2answers
381 views

Entity Framework - Schema Upgrade, Multiple DBMS, and Code First

I'm looking into using Microsoft's Entity Framework in an upcoming project which is a point release of an existing product. Our current product supports two DBMS (Oracle and SQL Server), the schema ...
2
votes
2answers
292 views

Persistance Ignorance Linq to SQL

I have an existing domain layer. I want to develop the persistence layer using Linq to SQL. I am currently using an external map file. I am trying to use lazy loading for my child collections but am ...
1
vote
2answers
120 views

How to unit test with persistence ignorance

I'm working on a new project where I'm actively trying to honor persistence ignorance. As an example, in my service layer I retrieve an entity from my ORM and I call a routine defined on the entity ...
1
vote
2answers
1k views

What design pattern to locate my IUnitOfWork?

I've implemented a repository pattern with persistence ignorance. The repository implementation only interacts with my entity objects, IUnitOfWork and ITable<T> interfaces. The intention is that ...
0
votes
1answer
50 views

Custom Data Access in EF for POCO

I am currently writing a WCF data service that is meant to extract data from any database in a predefined standard structure. I was thinking of using POCO entities. I can design my entities on EF ...
0
votes
1answer
119 views

Help w/ DDD, SOA and PI

Without getting into all of the gory details, I am trying to design a service-based solution that will be consumed by several client applications. The solution allows admins to create and modify ...
0
votes
2answers
170 views

If your models are persistence agnostic, how do you save them?

I'm new to ASP.NET MVC, coming from a PHP MVC background. It's been kind of an awkward transition (see my question history, heh.) One thing I like a lot in theory that's big in the .Net world is the ...
0
votes
2answers
296 views

DDD: Persisting aggregates

Let's consider the typical Order and OrderItem example. Assuming that OrderItem is part of the Order Aggregate, it an only be added via Order. So, to add a new OrderItem to an Order, we have to load ...