The language-integrated query (Linq) feature of .NET works the same away:
var studentsGroupByStandard = from s in studentList group s by s.StandardID into sg orderby sg.Key select new { sg.Key, sg };
StormEvents | where State == 'TEXAS' and EventType == 'Flood' | top 5 by DamageProperty desc | extend Duration = EndTime - StartTime
The language-integrated query (Linq) feature of .NET works the same away:
Another example is Microsoft's Kusto Query Language, which they use in Azure Log Analytics: