가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

Entity Framework 면접 질문과 답변

Ques 1. What is Entity Framework (EF)?

Entity Framework (EF) is an object-relational mapping (ORM) framework that enables developers to work with relational data using domain-specific objects.

도움이 되었나요? Add Comment View Comments
 

Ques 2. Explain Code First approach in Entity Framework.

Code First is an approach where you define your data model using C# or VB.NET classes, and the database is generated based on these classes.

도움이 되었나요? Add Comment View Comments
 

Ques 3. What is DbContext in Entity Framework?

DbContext is a class in EF that represents a session with the database, allowing you to query and save data.

도움이 되었나요? Add Comment View Comments
 

Ques 4. Differentiate between DbSet and DbContext in Entity Framework.

DbContext is a representation of a session with the database, while DbSet is a collection of entities that are used to perform database operations on those entities.

도움이 되었나요? Add Comment View Comments
 

Ques 5. Explain Lazy Loading in Entity Framework.

Lazy Loading is a feature in EF where related entities are not loaded from the database until they are explicitly accessed in code.

도움이 되었나요? Add Comment View Comments
 

Most helpful rated by users:

Copyright © 2026, WithoutBook.