Entity Framework Question:

What is IObjectSet?

ADO.Net Entity Framework Interview Question
ADO.Net Entity Framework Interview Question

Answer:

IObjectSet is a interface which gives collection like functionality. ObjectSet<> also implements IObjectSet. IObjectSet is useful in unit testing where you can create fake EntitySet (of type IObjectSet<>). We have used IObjectSet in our sample project.


Previous QuestionNext Question
What is ObjectSet?What is EntityTypes?