C# SQL Data Adapter System.Data.StrongTypingException
问题 I get my data from SQL to Dataset with Fill. It's just one table with two columns (CategoryId (int) and CategoryName (varchar)). When I look at my dataset after fill method, CategoryId Columns seems to be correct. But in the CategoryName I have a System.Data.StrongTypingExceptio n. What could that mean? Any Ideas? 回答1: 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