Is there a way to Deserialize Expressions in C#, I would like to store Expressions in a Database and load them at run time.
feedback
|
|
Other option is the Expression Tree Serialization project on code.msdn.com - would appear to be more what is needed here? | |||||||
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. | ||||
|
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. | ||||
|
feedback
|
|
WCF RIA Services allows for serializing | |||
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. | |||
feedback
|