1

任何人都知道如何使用 BLToolkit 语法编写以下更新代码,其中我需要连接两个表并更新其中一个。在 SQL Server 中,这样做是这样的:

update Table1 set
    Col1 = T.Col1 - TT.Col2
from
    @tempTable as TT
    inner join Table1 as T on **T.ColX = TT.ColX and T.ColY = TT.ColY**

到目前为止,这就是我完成更新的方式。

 db.SomeTable.Where( x => x.ColName == someColName )
                            .Update( x => new SomeTable
                            {
                                //update columns here
                            } );
4

1 回答 1

1

来自 BLToolkit 单元测试的示例:

var q =
    from c in db.Child
    join p in db.Parent on c.ParentID equals p.ParentID
    where c.ChildID == id && c.Parent.Value1 == 1
    select new { c, p };

q.Update(db.Child, _ => new Child { ChildID = _.c.ChildID + 1, ParentID = _.p.ParentID });
于 2011-07-17T22:07:17.647 回答