我有一些列的表。这是表的类
public string Imei { get; set; }
public DateTime CurDateTime { get; set; }
public Nullable<System.DateTime> GPSDateTime2 { get; set; }
public Nullable<decimal> Latitude2 { get; set; }
public Nullable<decimal> Longitude2 { get; set; }
public string Speed { get; set; }
public Nullable<int> Datatype { get; set; }
public int Id { get; set; }
我需要在表格中找到Datatype = 2的最后一条记录,并找到差异23:59 - CurDateTime。
差异我写了属性
这是代码
[NotMapped]
public TimeSpan? LastStartDifference
{
get
{
if (CurDateTime != null)
{
var midnight = new DateTime(CurDateTime.Year, CurDateTime.Month, CurDateTime.Day, 23, 59, 00);
var difference = midnight - CurDateTime;
return difference;
}
return null;
}
}
对于第一个元素,我编写了这样的代码
public JsonResult GetStops()
{
using (var ctx = new GoogleMapTutorialEntities())
{
var firstitem = ctx.Loggings.Where(x => x.Datatype == 1).AsEnumerable().Select(
x => new
{
lng = x.Longitude2,
lat = x.Latitude2,
difference = (int)(x.FirstStartDifference?.TotalMinutes ?? -1) * x.coeff
}).FirstOrDefault();
return Json(firstitem, JsonRequestBehavior.AllowGet);
}
}
但我怎样才能找到Datatype == 2
的最后一个元素?
答案 0 :(得分:0)
你可以用这个: 使用LastOrDefault并选择数据类型== 2
的项目public JsonResult GetStops()
{
using (var ctx = new GoogleMapTutorialEntities())
{
var lastItem = ctx.Loggings.LastOrDefault(x => x.Datatype == 2).AsEnumerable().Select(
x => new
{
lng = x.Longitude2,
lat = x.Latitude2,
difference = (int)(x.LastStartDifference?.TotalMinutes ?? -1) * x.coeff
});
return Json(lastItem, JsonRequestBehavior.AllowGet);
}
}
答案 1 :(得分:0)
我只是从员工薪资表中获得净薪资的最后一笔增量:
var netsalary = UowObj.EmployeeSalaryRepository.GetAllData().Where(x => x.EmployeeID == data.ID && x.IsArchive==true).Select(x => x.NetSalary).LastOrDefault();