我想创建一个 CodeFluent Entities 片段,其中包含一些 linq 查询:
return BaseList.Where(cd => cd.StartDate <= DateTime.UtcNow && cd.EndDate > DateTime.UtcNow)
.OrderByDescending(cd => cd.Rate)
.FirstOrDefault();
构建模型后,我有一个编译错误,因为我缺少一些使用:
using System;
using System.Linq;
在生成的文件中。
有没有办法添加它们?