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
基础教程推荐
- Moq It.Is<>不匹配 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- WPF 模态进度窗口 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
