im trying to convert my result from a linq query to json using json.net
here is what i did:
JObject o = JObject.FromObject(new
{
UserID = from u in model.USER
select new
{
UserID = u.UserID
}
});
here is what i get:
JSON
id=1
result={"UserID":[{"UserID":121},"UserID":121},{"UserID":122},{"UserID":123},{"UserID":124}]}
here is what i need:
JSON
id=1
result={[{UserID:'121'},{UserID:'121'},{UserID:'122'},{UserID:'123'},{UserID:'124'}]}
how do i get this done? thank you
u.UserID.ToString()if you really need them. – Rup Sep 15 '11 at 14:13