اكثر اسئلة واجوبة المقابلات طلبا والاختبارات عبر الإنترنت
منصة تعليمية للتحضير للمقابلات والاختبارات عبر الإنترنت والدروس والتدريب المباشر

طوّر مهاراتك من خلال مسارات تعلم مركزة واختبارات تجريبية ومحتوى جاهز للمقابلات.

يجمع WithoutBook أسئلة المقابلات حسب الموضوع والاختبارات العملية عبر الإنترنت والدروس وأدلة المقارنة في مساحة تعلم متجاوبة واحدة.

التحضير للمقابلة

Entity Framework اسئلة واجوبة المقابلات

سؤال 6. What is Eager Loading in Entity Framework?

Eager Loading is the opposite of Lazy Loading. It loads the related entities along with the main entity in a single database query.

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 7. How can you disable Lazy Loading in Entity Framework?

You can disable Lazy Loading by setting the LazyLoadingEnabled property of the DbContext to false.

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 8. Explain the Code First Conventions in Entity Framework.

Code First Conventions are a set of rules that automatically configure the database schema based on the shape of your entity classes and their relationships.

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 9. What is the Database First approach in Entity Framework?

Database First is an approach where the data model is generated from an existing database, and the corresponding classes are created in the application.

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

سؤال 10. How can you execute raw SQL queries in Entity Framework?

You can use the SqlQuery method of the Database property in DbContext to execute raw SQL queries.

Example:

var result = context.Database.SqlQuery("SELECT * FROM MyTable");

هل هذا مفيد؟ اضف تعليقا عرض التعليقات
 

الاكثر فائدة حسب تقييم المستخدمين:

حقوق النشر © 2026، WithoutBook.