2 回答
TA贡献1786条经验 获得超11个赞
我建议选择注释本身和附加字段。
var notes = from n in myContext.Notes
select new
{
Note= n
NewDate = n.date.ToString("MM/YYYY")
}
因此,您的笔记将包含所有原始笔记以及您在结果中添加的其他属性。
TA贡献1824条经验 获得超5个赞
您使用 lambda 的查询:
var fetchedNote = await myDbContext.Notes // get the collection of all Notes
.Where(note => note.ClientChartNoteId == Id) // take only those notes that ...
.Select(note => new // from every remaining note, make one new object
{ // with only the properties you plan to use
Title = note.Title, // some are original values
...
Date = note.Data.ToString(...), // some are calculated values
})
.FirstOrDefaultAsync();
- 2 回答
- 0 关注
- 321 浏览
添加回答
举报