有人知道我如何通过使用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
} );
来自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 });