- 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.
- JavaScript修煉之道
- Python機器學習:數據分析與評分卡建模(微課版)
- Machine Learning with R Cookbook(Second Edition)
- Scratch真好玩:教小孩學編程
- PLC編程及應用實戰
- Java程序設計:原理與范例
- 從Java到Web程序設計教程
- 移動互聯網軟件開發實驗指導
- Node.js 12實戰
- Zabbix Performance Tuning
- Clojure for Java Developers
- Java 從入門到項目實踐(超值版)
- JSP程序設計與案例實戰(慕課版)
- Apache Solr PHP Integration
- Laravel Design Patterns and Best Practices