score:5

Accepted answer

i'm not sure if the new f# 3 query expressions help you, but the old powerpack (which still works great!) has an extension method expr.tolinqexpression() : expression, to compile f# quotation expressions (i.e. <@ fun me -> me.myproperty @>) into linq expressions.

edit: as daniel had pointed out, quotationtolambdaexpression does the works, for f# 3.


Related Query

More Query from same tag