我有以下内容:
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 组合成一个表达式?