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

link|improve this question

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

5 Answers

up vote 8 down vote accepted

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

link|improve this answer
Expression Tree Serialization code is removed from code gallery code.msdn.microsoft.com/exprserialization, any idea where it is moved to or better alternatives? – Kiran Bheemarti Feb 10 '11 at 2:48
@Kiran: What do you mean? The code download is still there; check the downloads tab at the top of the page. – Robert Harvey Feb 10 '11 at 2:49
Yes it is now, probably a temporary thing, the page was throwing a project not found error yesterday when I tried the link above. I see the project and download now. Thanks!!! – Kiran Bheemarti Feb 10 '11 at 18:02
feedback

I continued work on the library that was mentioned by Serializing and Deserializing Expression Trees in C#

It looks like the project was abandoned (2008) but I did some work on it and now it works with .NET 4.0 and Silverlight. I made bug fixes to their code and also made it more DAL-independent.

http://expressiontree.codeplex.com/

link|improve this answer
feedback

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|improve this answer
feedback

WCF RIA Services allows for serializing IQuerayble<T>

WCF RIA Services Part 3 – Updating Data

link|improve this answer
I believe this is more relevant: silverlightshow.net/items/… – Enrico Campidoglio Nov 5 '10 at 11:03
feedback

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|improve this answer
I can't find out how to serialize an expression to a string using the sample, only the other direction, to take as string and create an expression tree. What method do I call? – Christopher Edwards Apr 14 '11 at 13:56
feedback

Your Answer

 
or
required, but never shown

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