BadScript 2
Loading...
Searching...
No Matches
BadLinqQueryOrderByCommand.cs
Go to the documentation of this file.
1using System.Collections;
2
7
12{
14 public BadLinqQueryOrderByCommand() : base(true, false, "OrderBy") { }
15
17 public override IEnumerable Run(BadLinqQueryCommandData data)
18 {
19 return data.Data.OrderBy(data.Argument!);
20 }
21}
Implements the Command Data for the BadLinqQuery.
Implements an Abstract Command for the BadLinqQuery.