什么是强类型数据集?
什么是强类型数据集? (。网)
What is a strongly typed dataset? (.net)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
什么是强类型数据集? (。网)
What is a strongly typed dataset? (.net)
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
强类型数据集是具有特定类型的表及其列的数据集。
您可以说
而不是:
这很有帮助,因为您可以在编译时(而不是运行时)捕获命名错误,并且还可以强制列上的类型。
A strongly typed dataset is one that has specific types for the tables and their columns.
You can say
instead of:
This helps because you catch mistakes in naming at compile time, rather than run time and also enforces types on columns.
简短回答:(由编译器)保证保存特定类型的数据集。
Short answer: A dataset which is guaranteed (by the compiler) to hold a specific type.
看起来 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.
在编译时与特定表紧密结合的数据集,因此您可以使用实际列名而不是索引来访问表的列。
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.