get date part only from datetime value using entity framework

前端 未结 3 1698
时光取名叫无心
时光取名叫无心 2020-12-03 18:00

I want to get date part only from database \'date time\' value I m using the below code..but it is getting date and time part.

using (FEntities context = new         


        
3条回答
  •  离开以前
    2020-12-03 18:09

    With entity framework 6 and update use

    context.tblvalue.Any(x => DbFunctions.TruncateTime(x.date) == data.Date);
    

提交回复
热议问题