I'm trying to you a web service with my MVC3 controller. This service has an optional parameter, such as
Service.GetObject(int id, DateTime? date)
But when I try to call it will a null value , like
Service.GetObject(id, null)
I get this error.
$exception {"Object cannot be cast from DBNull to other types."} System.Exception {System.ServiceModel.FaultException}
Please help if you can.