You might have a look at Boo and more specific at Rhino.DSL, which is built on it. To get an impression of what Boo brings on the table, Ayende's posts are a great starter.
Boo is described by its inceptors as:
a new object oriented statically typed programming language for the Common Language Infrastructure with a python inspired syntax and a special focus on language and compiler extensibility.
So basically, it's an alternative to C#: also compiled, but much more flexible, in such a way that you can dynamically setup new language constructs. Expression trees are only a fraction of what's involved.
By putting Boo somewhere in your pipeline, as Rhino.DSL does, you unleash a lot of versatility that's not even necessary bloated or a performance hog (it's still compiled bytecode that runs).
If you take a look at the unit tests on Rhino.DSL, you'll get a quick impression of what's possible.
One note though: all mentioned repositories are pretty inactive at the moment (no activity within the last year), but IMHO that does not devalue their practical use.
Hope this might help you.