Evaluating SQL-query to LINQ-object - C# -
I have a dynamic SQL string that I want to return to as the evaluation and LINQ-object.
Is there any easy way to do this in C #? Tried to do this, but nothing has been found. So all (or mostly) answers are appreciated.
Best regards, Robin
I found it:
< Pre> IEnumerable & lt; XElement & gt; LINQ; Linq = (IEnumerable & lt; XElement & gt;) XElement.Parse (RawXmlData.ToString ()). Element ();
Comments
Post a Comment