public Nullable<bool> BROUGHT { get; set; } // EDMX generate this code, so I can not change this
BROUHGT(DB)列のnullチェックをしたい。
だから私は次のようなコードを書きます
if (table.BROUGHT != DBNull.Value && Convert.ToBoolean(table.BROUGHT)){..}
しかし、エラーメッセージには次のように書かれています。
Error 2 Operator '!=' cannot be applied to operands of type 'bool?' and 'System.DBNull' ...
その列をnullチェックするにはどうすればよいですか?
ありがとうございました!