我在 Windows Azure (WADLogsTable) 中创建了一个日志表。我需要获取给定时间段的特定列。下面是我使用的 Linq 查询。这里的“日志”是指我自己创建的 DTO 类。构建时没有错误。但是在运行时会出错(没有显示太多细节)。
List<Logs> promotionInfo =null;
promotionInfo = (from e in serviceContext.CreateQuery<Logs>("WADLogsTable")
where e.Timestamp > startDate && e.Timestamp < endDate
select new Logs { Pid= e.Pid }).ToList();
请告诉我我的错在哪里。