Preguntas etiquetadas con invalidoperationexception

8
Objeto nullable debe tener un valor
Hay una paradoja en la descripción de la excepción: el objeto anulable debe tener un valor (?!) Este es el problema: Tengo una DateTimeExtendedclase que tiene { DateTime? MyDataTime; int? otherdata; } y un constructor DateTimeExtended(DateTimeExtended myNewDT) { this.MyDateTime = myNewDT.MyDateTime.Value; this.otherdata = myNewDT.otherdata; } ejecutando este código DateTimeExtended res …

26
ASP.NET MVC: no hay un constructor sin parámetros definido para este objeto
Server Error in '/' Application. -------------------------------------------------------------------------------- No parameterless constructor defined for this object. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.MissingMethodException: No parameterless constructor …
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.