我查看了 SO 但找不到答案,但我确定它在那里......?
在调试时,如果我在其上放置断点,如何获取 return 语句的值?我喜欢浓缩成一行,这样它看起来“漂亮”。但我目前不知道,因为我不知道如何调试返回的结果......?
using (IUnitOfWork context = new EFUnitOfWork())
{
var repo = new ReportRepository(context);
return repo.GetProcedureReport(startDate, endDate).ToList();
//return result.ToList();
}