Comment by spullara
4 years ago
SQL could get a lot better by just adopting the ordering of operations like they did with LINQ:
https://docs.microsoft.com/en-us/dotnet/csharp/programming-g...
4 years ago
SQL could get a lot better by just adopting the ordering of operations like they did with LINQ:
https://docs.microsoft.com/en-us/dotnet/csharp/programming-g...
Funnily enough LINQ Query syntax is really uncommon and everybody uses method syntax
var list = new List<int>{1,2,3}
var extracted = list
....................Where(x => x > 1)
....................Select(x => $"my number: {x})
....................ToList();
Because the original felt odd in C#.
> everybody
Not everybody
99%? 98%?