如何在执行之前更改更新语句:Linq2Sql 类
我已经在我使用 Linq2Sql 的一些表上实现了更改跟踪 (http://msdn.microsoft.com/en-us/library/cc280462.aspx)。
作为其中的一部分,我需要将以下 SQL 添加到生成的更新语句的开头。
DECLARE @originator_id varbinary(128);
SET @originator_id = CAST('SyncService' AS varbinary(128));
WITH CHANGE_TRACKING_CONTEXT (@originator_id)
....generated statements....
....
....
我知道我可以创建存储过程并手动映射字段,但如果可能的话我想避免这种情况。
有谁知道如何重写和编辑 SubmitChanges() 上的 SQL?
I have implemented Change Tracking (http://msdn.microsoft.com/en-us/library/cc280462.aspx) on some tables I am using Linq2Sql on.
As a part of this I need to add the below SQL to the start of the update statements generated.
DECLARE @originator_id varbinary(128);
SET @originator_id = CAST('SyncService' AS varbinary(128));
WITH CHANGE_TRACKING_CONTEXT (@originator_id)
....generated statements....
....
....
I know I can create stored procedures and manually map the fiels but I would like to avoid this if possible.
does anyone know a way to override and edit the SQL on SubmitChanges()?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过在 LINQ to SQL 将调用的数据上下文上实现部分类来重写 Update 方法。只需给它签名:
partial void UpdateClassName(ClassName instance)
您还可以使用以下命令传递到它通常执行的操作:
ExecuteDynamicInsert(instance);
不幸的是没有机制只是为了获取用于插入/更新/删除的预期 SQL(您可以在 DataContext 上使用 GetCommand 获取 SELECT 语句)
You can override the Update method by implementing partial classes on your datacontext that LINQ to SQL will call instead. Just give it the signature:
partial void UpdateClassName(ClassName instance)
You can also pass through to what it would normally do using:
ExecuteDynamicInsert(instance);
Unfortunately there is no mechanism just to get the intended SQL back for inserts/update/deletes (you can get SELECT statements with GetCommand on the DataContext)