DS0-001 · Question #88
DS0-001 Question #88: Real Exam Question with Answer & Explanation
The correct answer is B: Entity Framework. Entity Framework is Microsoft's official ORM (Object-Relational Mapper) for .NET, allowing developers to interact with databases using C# or VB.NET objects instead of raw SQL - making B the correct choice. Ebean (A) is a valid ORM, but it targets the Java ecosystem, not .NET. Ecl
Question
Which of the following ORM tools enables developers to work with a database using .NET objects?
Options
- AEbean
- BEntity Framework
- CEclipse
- DHibernate
Explanation
Entity Framework is Microsoft's official ORM (Object-Relational Mapper) for .NET, allowing developers to interact with databases using C# or VB.NET objects instead of raw SQL - making B the correct choice.
Ebean (A) is a valid ORM, but it targets the Java ecosystem, not .NET. Eclipse (C) is an IDE (Integrated Development Environment), not an ORM at all - it's a common distractor because it sounds technical. Hibernate (D) is also a popular ORM, but like Ebean, it's designed for Java (and JVM languages), not .NET.
Memory tip: Think "Entity Framework = .NET (Microsoft)Ecosystem" - both Entity Framework and .NET belong to Microsoft's stack. If you see a .NET/C# context, Entity Framework is your ORM.
Community Discussion
No community discussion yet for this question.