Questions marquées «invalidoperationexception»

8
L'objet nullable doit avoir une valeur
Il y a un paradoxe dans la description de l'exception: l'objet Nullable doit avoir une valeur (?!) C'est le problème: J'ai une DateTimeExtendedclasse, qui a { DateTime? MyDataTime; int? otherdata; } et un constructeur DateTimeExtended(DateTimeExtended myNewDT) { this.MyDateTime = myNewDT.MyDateTime.Value; this.otherdata = myNewDT.otherdata; } exécuter ce code DateTimeExtended res = …

26
ASP.NET MVC: aucun constructeur sans paramètre défini pour cet objet
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 …
En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.