Domande taggate «invalidoperationexception»

8
L'oggetto nullable deve avere un valore
C'è un paradosso nella descrizione dell'eccezione: l'oggetto Nullable deve avere un valore (?!) Questo è il problema: Ho una DateTimeExtendedlezione, quello ha { DateTime? MyDataTime; int? otherdata; } e un costruttore DateTimeExtended(DateTimeExtended myNewDT) { this.MyDateTime = myNewDT.MyDateTime.Value; this.otherdata = myNewDT.otherdata; } in esecuzione questo codice DateTimeExtended res = new DateTimeExtended(oldDTE); …

26
ASP.NET MVC: nessun costruttore senza parametri definito per questo oggetto
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 …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.