I have an IQueryable
object that I want to cast into a JObject
.
I tried to run JObject.Parse(myIQueryableObject)
but receive the error:
Cannot convert from '
System.Linq.IQueryable<bunchOfStuffThatICantIncludeHere>
' to 'string'
What is the best approach here?