vote up 5 vote down star
2

From my experience the major ORM frameworks for .NET (NHibernate, LinqToSql, Entity Framework) work best if they keep track of loaded objects. this works fine with simple client-server applications, but when using three or more tier architecture with web service this is not possible. Actually with writing a lot of code to do tracking yourself it can be done, but isn't ORM supposed to simplify DB access?
Is the idea to use ORM in service oriented architecture good at all?

flag
What kind of problems do you have with the tracking? – Paco Mar 12 at 21:02

6 Answers

vote up 4 vote down

LLBLGen Pro has change tracking inside the entities. This means that you can fetch a graph from the database using prefetch paths (so one query per graph node) and serialize it over the wire to the client, change it there, send it back and directly save the graph as all change tracking is inside the entities (and is serialized inside the XML as compact custom elements).

Disclaimer: I'm the lead developer of llblgen pro.

link|flag
Thanks for the suggestion, sounds great, exactly what I miss. I'll take a look when I can. – Rumen Georgiev Jan 5 '09 at 11:57
My understanding from this podcast (dotnetrocks.com/default.aspx?showNum=451/…) is that Entity Framework v4 (ships with VS2010) also has this capability. It allows its entities to be serialised to other tiers in the architecture, changes made, then serialised back to the tier where the original context is and persisted back to the DB. – Colin Desmond Jun 9 at 13:40
vote up 3 vote down

It depends what you mean by 'SOA'. Exposing domain objects in service contracts is rarely good service design - it exposes internal implementation details, there's a greater likelihood of change to a published contract, and versioning becomes very difficult.

If you create custom message documents (eg WCF DataContracts) for your service endpoints, it's relatively easy to use ORM to implement the service. Typically you would reload the domain object from the database and map changed properties (or call a method), then persist the changes.

If your service is mostly CRUD methods, your custom message will effectively be a DTO. You will need to manually manage optimistic concurrency and domain object mapping.

link|flag
This approach is good from SOA point of view, because it keeps contracts as simple as possible. But the additional reloading before saving objects hits performance. If we use direct DB access from the client, we can just call save. My idea is to achieve this pattern with web service. – Rumen Georgiev Jan 8 '09 at 9:49
It sounds like you're looking for something like ADO.NET Data Services. I would be questioning whether the value delivered by a web service layer outweighs the additional complexity over direct DB access from the client. Two-tier systems are unfashionable, but are more performant & with less code. – Sam Jan 9 '09 at 4:44
I'd also point out that SOAP serialisation/deserialisation is sometimes more of a performance bottleneck than one extra query hitting the database - if performance is your main objective, ensure you measure, measure, measure. – Sam Jan 9 '09 at 4:50
Wah! SOA, WCF, ORM, CRUD, DTO! My brain's going to explode ... ;) – Lucas Jones Jul 3 at 20:44
vote up 3 vote down

Take a look at the description of upcoming synchronization and disconnected sets in DataObjects.Net

link|flag
vote up 1 vote down

The ORM framework will help you only when directly talking to the database. Even in service oriented architectures, ORMs can only help to reduce the load when programming that final layer. You'll need other techniques -- like WCF -- to handle the service part. I'm not aware of anyone integrating ORM and services yet, but it should be pretty straight forward to annotate the same classes as entities and DataContracts.

link|flag
vote up 0 vote down

SignumFramework has tracking inside of the entities as well. It also has a full Linq provider, but is ment to work with new databases only (it generates the schema from your c# entities, not the oposite).

Change Tracking: http://www.signumframework.com/ChangeTracking.ashx

Disclaimer: I'm the lead developer of Signum Framework :)

link|flag
vote up 0 vote down

I would humbly suggest that you stop trying to use distributed objects as an architectural pattern. It is just not as effective as either a messaging architecture or a RESTful style.

If you don't like the overhead of transferring data in and out of messages then I would suggest you look at REST. However, not REST in the way ADO.NET Data services does it, that is just distributed objects over HTTP.

REST is more about exposing an ugly(but machine readable) UI on the server and using the client to make it look pretty. In REST there is no knowledge of domain entities on the client so you don't need to send them across the wire.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.