show/hide this revision's text 3 deleted 151 characters in body

Ah ha! I found an even more efficient solution than @Trebz's!

datePrm.Value = nullableDate ?? (object)DBNull.Value;

Edit: and unfortunately it'll languish down the bottom thanks to stackoverflow's dumb policy of not being able to accept your own answers. :-/

show/hide this revision's text 2 added 151 characters in body

Ah ha! I found an even more efficient solution than @Trebz's!

datePrm.Value = nullableDate ?? (object)DBNull.Value;

Edit: and unfortunately it'll languish down the bottom thanks to stackoverflow's dumb policy of not being able to accept your own answers. :-/

show/hide this revision's text 1

Ah ha! I found an even more efficient solution than @Trebz's!

datePrm.Value = nullableDate ?? (object)DBNull.Value;