Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Opinions on Expression Tree Serialization Library from CodePlex?

did someone tried this code library and have opinion about it? http://code.msdn.microsoft.com/exprserialization

10x

like image 978
Tamir Avatar asked Jun 03 '09 14:06

Tamir


4 Answers

It looks like the project was abandoned 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/

like image 96
T. Webster Avatar answered Nov 14 '22 17:11

T. Webster


I have found that it cannot serialize custom closures and I am currently writing my own binary serializer. With that said the fact that expression tree serialization was not included in .net 4.0 is extremely dissapointing.

like image 26
Steve Severance Avatar answered Nov 14 '22 17:11

Steve Severance


I'm using this library to serialize/deserialize "linq to object" queries. The library doing this pretty well. There was some problems, but I was able to fix them due to the library's open source. The problem that it's not supported any more.

like image 1
Kamarey Avatar answered Nov 14 '22 17:11

Kamarey


Security aspects of this library are really scary to me. It's almost like executing an arbitrary code that came from configuration or through a request.

like image 1
Vlad Lifliand Avatar answered Nov 14 '22 17:11

Vlad Lifliand