Is there any way to share self tracking entities with client tier(from server tier wich is WCF) like Data Contract.
I mean, do not include any assembly with STE to client, just get them from server e.g.

If "DAL" is the service reference, I want some like:

DAL.SomeEntity = new DAL.SomeEntity();
link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Self tracking entities must be shared with client in form of code or assembly. That is the main requirement to use them because they are not just a contract they also contain logic responsible for change tracking and this logic cannot be shared with the client in any other form.

link|improve this answer
Thanks! So i need to use DTO or POCO. – ard Jan 15 at 20:59
If you use DTO or POCO why did you use STEs? Their purpose is to only for scenarios where they are transferred to client. – Ladislav Mrnka Jan 15 at 21:11
The purpose of STEs was get lover DataBase load. As I understad while we calling e.g. context.DeleteObject(someobj) it`s executing only DELETE query, finding id object by key. In case of POCO i need to select proper object from context, and then delete it, so it`s two querys SELECT & DELETE. – ard Jan 16 at 3:53
feedback

Your Answer

 
or
required, but never shown

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