- ASP.NET MVC 4 Mobile App Development
- Andy Meadows
- 232字
- 2021-08-13 16:48:11
Chapter 4. Modeling BrewHow in EF5
If you're developing a new application, Microsoft would very much like you to use Entity Framework 5.0 (EF5). Entity Framework is Microsoft's officially supported Object-Relational Mapping (ORM) tool, finally coming on its own after a much maligned introduction with .NET 3.5 SP1.
As with any ORM, Entity Framework is designed to separate the domain model of an application from the actual storage mechanism. This allows the developer to focus on the actual problem they're trying to solve and spend less time worrying about the tables and columns underneath the model.
Having a framework provide the underlying storage mechanism does have its own set of issues. As almost any DBA will tell you, ORMs will often generate substandard storage models and Entity Framework is not excluded from this issue. However, Entity Framework allows you to customize the translation between the domain and database to match almost any conceivable underlying data store, allowing you and your DBA to work in relative harmony.
In this chapter, we will create the persistence layer for the BrewHow app using Entity Framework 5. We will explore migrations and how we can use them to apply and remove changes to the database. Additionally, we will look at some of the conventions and configurations used by Entity Framework 5.0 to tailor our model to a database mapping we or our DBA prefer.
- Dynamics 365 for Finance and Operations Development Cookbook(Fourth Edition)
- Reactive Programming with Swift
- C#程序設計(慕課版)
- C/C++常用算法手冊(第3版)
- Getting Started with Python Data Analysis
- 網站構建技術
- Learning Laravel's Eloquent
- Web前端應用開發技術
- 新印象:解構UI界面設計
- JavaScript悟道
- Hands-On Robotics Programming with C++
- ABAQUS6.14中文版有限元分析與實例詳解
- Learning Image Processing with OpenCV
- Java EE 8 and Angular
- Socket.IO Cookbook