我的表有一个名为“RowVer”的时间戳列,LINQ映射到System.Data.Linq.Binary类型.这种数据类型对我来说似乎没用,因为(除非我遗漏了什么)我不能做这样的事情:
// Select all records that changed since the last time we inserted/updated. IEnumerable<UserSession> rows = db.UserSessions.Where ( usr => usr.RowVer > ???? );
因此,我正在寻找的解决方案之一是添加一个名为RowTrack的新“计算列”,它在sql中定义如下:
CREATE TABLE UserSession ( RowVer timestamp NOT NULL,RowTrack AS (convert(bigint,[RowVer])),-- ... other columns ... )
// Select all records that changed since the last time we inserted/updated. IEnumerable<UserSession> rows = db.UserSessions.Where ( usr => usr.RowTrack > 123456 );
这是一个糟糕的做事方式吗?查询计算列的性能如何?有更好的解决方法吗?
此外,我正在开发针对sql Server 2000的最终向后兼容性,但我可以与老板谈论使2005年成为最低的共同点.
解决方法
// Select all records that changed since the last time we inserted/updated.
Is there a better work-around?
为什么不有两列,一列用于lastdifieddate的createddate另一列.我想说这是处理这种情况的更传统方式.