views:

41

answers:

1

Hello I wonder what's the difference between standard EF objects, POCO and Self Tracking Entities. I was looking the web but couldn't find a valuable introduction. Any help would be appreciated.

+1  A: 

POCO is plain class with only mapped fields. STE is very similar but in advance it contains logic implemented to each property and some collections which are used to tracking changes made to entity.

Ladislav Mrnka
Could you be more specific please? or do you have a link for any introduction article? Thanks
Davita