Json.NET serializing a DataSet problem in. Net Core 2.0

Source: Internet
Author: User

Using the version 10.0.1 that comes with ASP.

To generate a simple dataset

DataSet DS2 =NewDataSet (); DataTable Table=NewDataTable (); Table. Columns.Add (NewDataColumn ("ID") {Caption ="numbering" }); Table. Columns.Add (NewDataColumn ("name") {Caption ="name" }); DataRow Row1=table.            NewRow (); row1["ID"] =1; row1["name"] ="Hello"; Table.            Rows.Add (ROW1); Ds2.            Tables.add (table); stringSDDTR =Jsonconvert.serializeobject (DS2); varDD = jsonconvert.deserializeobject<dataset> (SDDTR);

See what's been serialized

You can see that the data is presented in XML, which includes basic information about the dataset, such as caption, and so on.

This question can be viewed: https://stackoverflow.com/questions/47392643/jsonconvert-serializeobject-with-dataset-returning-unexpected-result

Upgrade the Json.NET to the latest version

View the serialized content again

You can find information that has lost metadata. If the column of the table in the original dataset is of type DateTime, the deserialized column becomes a string type.

Json.NET serializing a DataSet problem in. Net Core 2.0

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.