What are diff types of entityframework explain with examople
Answers
Answered by
4
Answer:
The Code First approach allows you to use Entity Framework and define the entity model sans the designer or XML files. You can use the POCO (Plain Old CLR Objects) approach to define the model and generate your database. In this approach you would typically create the entity classes.
Similar questions