悲しい部分は、私は以前にこれをやったことがあります。私はこれを理解したのを覚えています。今日、私はこれを行う方法を思い出すことができないようです。
したがって、次のリストがあります。
public List<taters> getTaters(){
var firstTaters = from s in n.veggies
where s.active == true
select s.html;
var secondTaters = from s in n.roots
where s.active == true
select s.html;
//now here I want to do something to combine the two
//(e.g. a Concat or some such) and
//THEN I want to order the concatenated list of results
//by 'date_created' descending.
}
上記のコメントで質問。一緒に結合した後にそれらを注文するにはどうすればよいですか?