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.
我有.dbml一个表,并且该表具有更新/删除/插入的相关行为,这些行为是存储过程。
.dbml
如果我查询一行并且我没有修改它,或者我设置了相同的值并且我调用datacontext.save()了 ,它将不会执行存储过程。
datacontext.save()
有没有办法知道它不会被执行或强制执行?
您可以通过欺骗 linq2sql 认为列总是“脏”来强制执行存储过程。这个问题的答案可能会有所帮助:
你能说服 DataContext 将列视为总是脏的吗?