C# SQL Data Adapter System.Data.StrongTypingException(C# SQL 数据适配器 System.Data.StrongTypingException)
问题描述
我通过填充将数据从 SQL 获取到数据集.它只是一个包含两列(CategoryId (int) 和 CategoryName (varchar))的表.
I get my data from SQL to Dataset with Fill. It's just one table with two columns (CategoryId (int) and CategoryName (varchar)).
当我在填充方法后查看我的数据集时,CategoryId 列似乎是正确的.但在 CategoryName 我有一个 System.Data.StrongTypingException.
When I look at my dataset after fill method, CategoryId Columns seems to be correct. But in the CategoryName I have a System.Data.StrongTypingException.
这意味着什么?
有什么想法吗?
推荐答案
当你获取类型化数据集中的行/列的值时,默认情况下,当值为 DBNull 时会引发此异常.所以
When you get the value of a row/column in a typed dataset, by default it raises this exception when the value is DBNull. So
string x = Row.CategoryName;//Raises this exception when CategoryName is null.
您可以使用类型化数据集设计器更正此问题.
将 CategroyName 列的属性Nullvalue"设置为(Empty)"
You can correct this with the typed dataset designer.
Set the property "Nullvalue" of the CategroyName column to "(Empty)"
这篇关于C# SQL 数据适配器 System.Data.StrongTypingException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:C# SQL 数据适配器 System.Data.StrongTypingException


- 如何用自己压缩一个 IEnumerable 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01