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.
我正在使用 sql 行版本列进行乐观并发。但是我有一个不希望更新行版本的情况。
我的意思是我想更新表行但保留行版本的旧值。
可能吗?
marc_s 在上面的评论中是正确的 - 您无法解决内置的 SQL Server 行版本。
如果您实施本地行版本控制/电子标签解决方案,您可以绕过行版本更改,在这种情况下您可以使用此方法
context.Database.SqlQuery()
或者这个方法
context.Database.ExecuteSqlCommand()
影响 EF 之外的数据