c# - What is POCO in Entity Framework? -
i started learning poco cannot understand use , advantage. following link of stackoverflow did not me.
can explain usage of poco simple example?
pocos(plain old clr objects) entities of domain. when use entity framework entities generated automatically you. great unfortunately these entities interspersed database access functionality against soc (separation of concern). pocos simple entities without data access functionality still gives capabilities entityobject functionalities like
- lazy loading
- change tracking
here start this
you can generate pocos existing entity framework project using code generators.
Comments
Post a Comment