2012年1月30日 星期一

Lambda比對資料庫日期

var hotelInfo = db.vwGetHotelRoomQty
 .Where(f => f.OpenDate.Year == checkinDate.Year && f.OpenDate.Month == checkinDate.Month && f.OpenDate.Day == checkinDate.Day)
.Where(f => f.HotelRoomID == roomid).ToList();

沒有留言:

張貼留言

Visual Studio JS intellisense 失效解決方式

  試了好久,發現到工具>選項>IntelliCode js項目設定啟用,重新開啟VS就正常了! 後來發現是TypeScript3.2版有問題停用,使用4.3版的TypeScript即可