Davita
Davita

Reputation: 9144

Entity Framework POCO and Self Tracking entities

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.

Upvotes: 0

Views: 335

Answers (1)

Ladislav Mrnka
Ladislav Mrnka

Reputation: 364399

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.

Upvotes: 1

Related Questions