Parsing a string C# LINQ expression

前端 未结 2 664
醉酒成梦
醉酒成梦 2020-12-01 12:37

I\'m trying to do some really dynamic querying here - preferably without invoking the compiler at runtime though.

I have a string containing a LINQ expression, e.g.<

相关标签:
2条回答
  • 2020-12-01 13:15

    You have some options:

    1. Do something homegrown, parsing the text and building an Expression Tree. The standard approach to this would be to use a language parser to parse the string (like ANTLR).

    2. Use CodeDOM to compile the query (NOT recommended for a Production environent as this is slow and generates an assembly per compilation which will saturate your AppDomain with assemblies if you do many. Let me stress, don't go this route if you have any kind of volume - though this is what LINQPad does) - http://social.msdn.microsoft.com/Forums/en-US/linqprojectgeneral/thread/6a4defd2-76f0-4865-97b7-130e4ba7b50a

    3. Use Mono's compiler which emits MSIL directly (so no assembly per compilation and much faster) - Mono Compiler as a Service (MCS)

    4. Use Dynamic LINQ (has some limitations and restrictions, but basically does what is suggested in point #1 and is nice, lightweight, and has the ability to only allow certain method calls. It parses the text query and builds an Expression Tree from it) - http://weblogs.asp.net/scottgu/archive/2008/01/07/dynamic-linq-part-1-using-the-linq-dynamic-query-library.aspx

    0 讨论(0)
  • 2020-12-01 13:31

    Going from a "magic string" to code objects always involves some sort of parsing. In this case, it might be best to work with the EditableExpression library (available free from Google Code). Take your string, and format it to look like the result of serializing a series of EditableExpressions. Then, simply deserialize it and convert to an expression tree.

    0 讨论(0)
提交回复
热议问题