Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序,我需要获取当天发生的所有数据库条目。
因此,如果今天是 9 月 5 日,我需要获取该日期发生的所有交易。
如何在 linq 查询中执行此操作?
我将 DateTime.Now() 存储在该实体的数据库中。
就像是:
var date = new DateTime(2012, 9, 5); var dateEntities = Entities.Where(e => EntityFunctions.DiffDays(e.Date, date) == 0 )