在 Visual Studio 中添加新数据项时 EF 6.x DbContext Generator 选项的用途

Purpose of EF 6.x DbContext Generator option when adding a new data item in Visual Studio(在 Visual Studio 中添加新数据项时 EF 6.x DbContext Generator 选项的用途)
本文介绍了在 Visual Studio 中添加新数据项时 EF 6.x DbContext Generator 选项的用途的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我有一个使用 LINQ to SQL 构建的 Web 应用程序,我希望将其升级到 LINQ to Entity Framework.我查看了一些教程,我了解到基本上在数据库优先的场景中,您创建了一个 ADO.NET 实体数据模型.然后,您可以选择要包含在模型中的表(与 LINQ to SQL 非常相似).

I have a web app that I built using LINQ to SQL and I'm looking to upgrade it to LINQ to Entity Framework. I've looked at some tutorials and what I've learned is that basically in the database-first scenario, you create an ADO.NET Entity Data Model. And from there, you select which tables to include in the model (very similar to LINQ to SQL).

添加新项目对话框中,我看到还有另一个选项可以创建EF 6.x DbContext Generator:

Within the Add New Item dialog, I see that there is another option that creates an EF 6.x DbContext Generator:

ADO.NET 实体数据模型(对话框中的第一个选项)相比,EF 6.x DbContext Generator 的目的是什么?而且,EF 6.x DbContext Generator 有什么用?它似乎创建了一个文本文件.我该怎么办?

What is the purpose of EF 6.x DbContext Generator compared to ADO.NET Entity Data Model (first option in dialog)? And, what is EF 6.x DbContext Generator for? It seems to create a text file. What should I do with it?

推荐答案

如果您已经有一个数据库,那么第一个选项更好,因为该方法与您已经在 LinqToSQL 中使用的方法非常相似..EDMX 文件还可以为您提供数据库的图形可视化,而您不必担心其他任何事情.

If you already have a database, the first option is better, given that the approach is very similar to the one you are already working in LinqToSQL. The .EDMX file also can provide you a graphical visualization of your database, and you don't have to worry about anything else.

这篇关于在 Visual Studio 中添加新数据项时 EF 6.x DbContext Generator 选项的用途的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

How to know if a field is numeric in Linq To SQL(如何在 Linq To SQL 中知道字段是否为数字)
Extract sql query from LINQ expressions(从 LINQ 表达式中提取 sql 查询)
LINQ Where in collection clause(LINQ Where in collection 子句)
Orderby() not ordering numbers correctly c#(Orderby() 没有正确排序数字 c#)
Why do I get quot;error: ... must be a reference typequot; in my C# generic method?(为什么我会收到“错误:...必须是引用类型?在我的 C# 泛型方法中?)
Strange LINQ Exception (Index out of bounds)(奇怪的 LINQ 异常(索引越界))