ここで以前の私の質問に続いて
使った
var distinctAllEvaluationLicenses = allEvaluationLicenses.GroupBy((License => License.dateCreated)).OrderByDescending(lics => lics.Key).First();
IQueryable をグループ化するには
allEvaluationLicenses
「dateCreated」であるライセンスのプロパティ1を使用して
しかし、「nLicenceID」などの別のプロパティを使用して注文するにはどうすればよいでしょうか?
次のようなことは可能ですか?
var distinctAllEvaluationLicenses = allEvaluationLicenses.GroupBy((License => License.dateCreated)).OrderByDescending(lics => (sort by nLicenseID here) ).First();