什么是强类型数据集?

发布于 2024-07-07 15:21:38 字数 23 浏览 9 评论 0原文

什么是强类型数据集? (。网)

What is a strongly typed dataset? (.net)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

一笑百媚生 2024-07-14 15:21:38

强类型数据集是具有特定类型的表及其列的数据集。

您可以说

EmployeeDataset ds = ...
EmployeeRow row = ds.Employees.Rows[0];
row.Name = "Joe";

而不是:

DataSet ds = ...
DataRow row = ds.Tables["Employees"].Rows[0];
row["Name"] = "Joe";

这很有帮助,因为您可以在编译时(而不是运行时)捕获命名错误,并且还可以强制列上的类型。

A strongly typed dataset is one that has specific types for the tables and their columns.

You can say

EmployeeDataset ds = ...
EmployeeRow row = ds.Employees.Rows[0];
row.Name = "Joe";

instead of:

DataSet ds = ...
DataRow row = ds.Tables["Employees"].Rows[0];
row["Name"] = "Joe";

This helps because you catch mistakes in naming at compile time, rather than run time and also enforces types on columns.

反目相谮 2024-07-14 15:21:38

简短回答:(由编译器)保证保存特定类型的数据集。

Short answer: A dataset which is guaranteed (by the compiler) to hold a specific type.

坐在坟头思考人生 2024-07-14 15:21:38

看起来 DataSet 已经被涵盖了,但为了完整起见,请注意,在 .NET 3.5 中,对于简单的数据访问有很好的替代方案; 特别是 LINQ to SQL 之类的东西。 这具有类似的目标,但为您的数据类保留了更纯粹、简单的 OO 模型。

It looks like DataSet has already been covered, but for completeness, note that in .NET 3.5 there are good alternatives for simple data access; in particular, things like LINQ to SQL. This has a similar objective, but retains a much purer simple OO model to your data classes.

流星番茄 2024-07-14 15:21:38

在编译时与特定表紧密结合的数据集,因此您可以使用实际列名而不是索引来访问表的列。

A dataset which is tightly to a specific table at compile time so you can access the columns of a table using actual column name instead of index.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文