Perché la seguente query genera l'errore seguente per una riga con un valore NULL
per barile quando escludo esplicitamente tali righe nella clausola Where
?Filtro DBNull con LINQ
Dim query = From row As dbDataSet.conformalRow In dbDataSet.Tables("conformal") _
Where Not IsDBNull(row.Cal) AndAlso tiCal_drop.Text = row.Cal _
AndAlso Not IsDBNull(row.Tran) AndAlso tiTrans_drop.Text = row.Tran _
AndAlso Not IsDBNull(row.barrel) _
Select row.barrel
If query.Count() > 0 Then tiBarrel_txt.Text = query(0)
Run-time exception thrown : System.Data.StrongTypingException - The value for column 'barrel' in table 'conformal' is DBNull.
Come dovrebbe la mia domanda/condizione di essere riscritta a lavorare come ho inteso?
I metodi Is [Field] Null() hanno funzionato perfettamente! Grazie! – Steven