If I cant split the json data in datarow using deserializeobject, is there any other way to do this?I have a set of data's in doc as "json", how can i split?
DataTable dt = new DataTable();
foreach(BsonDocument doc in query)
{
DataColumn dc = new DataColumn();
if (doc !="null")
{
DataRow dr =(DataRow) Newtonsoft.Json.JsonConvert.DeserializeObject(doc.ToString(), (typeof(DataRow)));
}
}