c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
c# .net

Convert Json to datatable from Linq Query results using serializeObject

| | CSharp

You can use third party components Newtonsoft JSON to serializeObject to JSON and convert it into datatable. Just two line code will bring your solution first include Newtonsoft.Json namespace in your application and it will allow to use JsonConvertor class. The below example code has implemented.

You can download and install newtonsoft JSON package using NuGet package manager.

Install-Package Newtonsoft.Json

  string json = Newtonsoft.Json.JsonConvert.SerializeObject(result);  
DataTable pDt = JsonConvert.DeserializeObject<DataTable>(json);

Output: