InvalidCastException in dataset designer generated code

J

John Dalberg

The code below (generated by the dataset designer) is receiving an
exception because the 'searchfor' column has nulls but this column in SQL
Server allows nulls. What am I missing? Shouldn't the generated code check
for DBNull first?





[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string SearchFor {
get {
try {
return
((string)(this[this.tableXML.SearchForColumn])); }
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The
value for column \'SearchFor\' in table
\'XMLElement\' is DBNull.", e); }
}
set {
this[this.tableXML.SearchForColumn] = value;
}
}

John Dalberg
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,764
Messages
2,569,564
Members
45,041
Latest member
RomeoFarnh

Latest Threads

Top