私は次のものを持っています:
var data1 = contentRepository.GetPk(pk);
var data2 = from d in data1
select new Content.RowKeyTitle {
RowKey = d.RowKey,
Title = d.Title,
Notes = d.Notes
};
return (data2);
data1 と data2 を 1 つの式に結合する方法はありますか?