InterviewSolution
| 1. |
Differences Between Poco, Model First And Data First Approach? |
|
Answer» Database first: 1. Database create before generation of code. Code First Approach: 1. Database GENERATED from POCO classes. MODEL First Approach: 1. Creation of CONTEXT and tables using the Designer tool. Database first: 1. Database create before generation of code. Code First Approach: 1. Database generated from POCO classes. Model First Approach: 1. Creation of Context and tables using the Designer tool. |
|