问题
I just started learning POCO but cannot understand its use and advantage. Even following link of stackoverflow did not help me.
what is Entity Framework with POCO
Can anybody explain the usage of POCO with a simple example?
回答1:
POCOs(Plain old CLR objects) are simply entities of your Domain. Normally when we use entity framework the entities are generated automatically for you. This is great but unfortunately these entities are interspersed with database access functionality which is clearly against the SOC (Separation of concern). POCOs are simple entities without any data access functionality but still gives the capabilities all EntityObject functionalities like
- Lazy loading
- Change tracking
Here is a good start for this
POCO Entity framework
You can also generate POCOs so easily from your existing Entity framework project using Code generators.
EF 5.X DbContext code generator
来源:https://stackoverflow.com/questions/16075245/what-is-poco-in-entity-framework