1
Answer

How to Create a object of linq.edmx file?

Dhaval Kapupara

Dhaval Kapupara

10y
1.1k
1
I am create linq.edmx file in asp.net file but how to create object of .edmx file? 
Answers (1)
1
Nitin

Nitin

309 6k 5.1m 10y
Hi

When you add an Entity Data Model in your application then it adds few class files also. In one of the class files it has a context mentioned in it. This class inherits from dbContext class and has Dbset of all the entities that you have selected as part of your entity model.You have to create an object of this context class.
Accepted