This version introduces Lambda filters for *.nt templates rendered by NTypewriter editor for Visual Studio.
instead of writing this:
for class in data.Classes | Symbols.WhereNameStartsWith "Pro"
you can write lambda function using c# syntax:
for class in data.Classes | Where 'x => x.Name.StartsWith("Pro")'
Lambda filters are not supported (yet) on other platforms (NTypewriter.SourceGenerator, NTypewriter.Online).