How might one serialize an object directly to a JObject instance in JSON.Net? What is typically done is to convert the object directly to a json string lik
JObject
You can use FromObject static method of JObject
FromObject
JObject jObj = JObject.FromObject(someObj)
http://www.newtonsoft.com/json/help/html/M_Newtonsoft_Json_Linq_JObject_FromObject.htm