Tag: Expression Trees rss

Posts

17 November 2020 / / CSharp
There are times where I needed to do some things dynamically and I typically think of Expression Trees to do it. Don’t get me wrong, Reflection does the job most of the time, but it’s known to be very slow in almost all cases. I happen to have a bit of experience in the former.
17 May 2020 / / CSharp
If you ever wondered how you could dynamically filter and/or sort your queries without having to write a huge switch statement with all the possible properties and operations, you’ve come to the right place! Today we’ll see how we can generate these types of operations at runtime and on the fly.