Can System.Data.SqlTypes datatypes be used in asmx-style .NET Web Services?
It looks like they are converted to regular date types in the generated proxy object.
I'd like to optionally pass null values for these dates.
Other than switching to WCF (no time to learn it right now), what is the best way to handle this situation. It looks like I also cannot pass NULLABL开发者_如何学JAVAE date types.
I haven't tried this.
But, wouldn't Nullable<DateTime>
help?
精彩评论