Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
533 views
in Technique[技术] by (71.8m points)

c# - Error converting value {null} to type 'System.DateTime' in input json

This JsonSerializationException was thrown when I tried to input the following DateTime parameters in my Json :

"Error converting value {null} to type 'System.DateTime' in input json"

I have given the input here :

string inputJSONString = "{....,"StartDateFrom":null,"StartDateTo":null,"EndDateFrom":null,"EndDateTo":null,....}";

and deserialising using :

scT = (SearchCriteriaTask)JsonConvert.DeserializeObject(inputJSONString , typeof(SearchCriteriaTask));

My json is correct , and I have also tried ("") values instead of null. I was not able to find proper solution elsewhere. Thanks.

If any part of code is needed, then please mention it.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As the error is trying to tell you, .Net value types like DateTime cannot hold nulls.

If you want to allow nulls, use nullable types:

DateTime? StartDateFrom { get; set; }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...