I have actually created the exact same ordering method. I needed it for a datatable implementation. Expression trees really save your day.
@geodanila895 жыл бұрын
Great talk about a often overlooked feature of C#!
@so94872 жыл бұрын
He is all over the place. I've implemented Expression Visitor and this in not even scratching the surface.
@MeenakshiSekar2 жыл бұрын
Really a very good talk on the Expression tree. Your explanation was very simple and understanable. Please improve the audio quality. It is very very low.
@piotrpaczua82605 жыл бұрын
That's exactly what I needed. Great talk. Thanks a lot 😁
@shakib48453 жыл бұрын
Great handy course !
@fernandoluiz45933 жыл бұрын
Nice explanation! Very good video
@tuberklz3 жыл бұрын
amazing. i must feed on source generators and expressions
@UPSCCSE-ku7ej4 жыл бұрын
Awesome
@inmotion34383 жыл бұрын
So what was the point of making own Visitor when you could just use AutoMapper to do the same thing? Did I miss anything?
@john.darksoul2 жыл бұрын
Can someone explain, what's the point of building expressions from rules (around 44:00)? Why not just use standard methods like Where and Select? Especially since the rules are applied to an IEnumerable and not IQueryable. One thing I can think of is that the rules might not be known at compile time, but what are the other possible use cases?
@hoisinholdup2 жыл бұрын
There are plenty are application use-cases for storing user-defined ordered rule sets in a table, loading in memory, converting to a predicate and then applying to a set of entities