vote up 3 vote down star
4

Is there a way to Deserialize Expressions in C#, I would like to store Expressions in a Database and load them at run time.

flag

what kind of expressions? Regex? – Jon Limjap Oct 20 '08 at 10:07
I would assume System.Linq.Expression type expressions, given the "trees". – Ch00k Oct 20 '08 at 10:09

3 Answers

vote up 1 vote down check

Other option is the Expression Tree Serialization project on code.msdn.com - would appear to be more what is needed here?

link|flag
vote up 2 vote down

If xml serialization of expression trees is suitable for you then,

there's an project on codeplex called MetaLinq that aims to make working with expression tress more easy. It also allows expression trees serialization to xml.

Also check this blog post for more info.

link|flag
vote up 0 vote down

Not in full; however, the Dynamic LINQ sample may help a bit. You can certainly serialize an expression to a string (to an extent - generics look a bit screwy), but there is no inbuilt parser.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.