使用展平 groupjoin (lambda) 的结果时更新失败
Update fails when using results of a flatten groupjoin (lambda)
我正在尝试更新整个 table 以修改某些列并在其中存储另一个 table 的 ID。
以下代码在更新语句处失败,我不知道为什么。
db.gt_s_one
.GroupJoin(db.access_mode,
l => l.col3.Replace("auth.", "").ToUpper(),
am => am.code.ToUpper(),
(l, am) => new {
l,
am
}
)
.SelectMany(
x => x.am.DefaultIfEmpty(),
(x1, y1) => new {
gt = x1.l,
theAM = y1.id
}
)
.Update(db.GetTable<gt_s_one>(),
s => new gt_s_one
{
col1 = s.gt.col1,
col2 = s.gt.col2,
col3 = s.gt.col3.Replace("auth.", ""),
col4 = s.gt.col4,
col5 = s.gt.col3 == "empty" ? "1" : "0",
col6 = s.gt.col3 == "empty" ? "" : s.theAM.ToString()
}
);
我已经将第一部分(groupjoin 和 selectmany)隔离在一个 var 中并执行它效果很好但是当我执行更新部分时我得到:
LinqToDB.SqlQuery.SqlException
HResult=0x80131500
Message=Table '[public].[access_mode]' not found.
Source=linq2db
在我的 SelectMany 中,我尝试将 y1 作为一个整体而不是 y1.id,但这没有任何区别。
目前 linq2db
仅支持 SQL Server、Sybase 和 MySql 的类似查询。我看到你 运行 它反对 PostgreSQL。对 PostgreSQL(以及大多数其他数据库)的支持已经 implemented 并将作为 linq2db
版本 3 版本的一部分发布。
为您的查询生成的 SQL 示例:
UPDATE
gt_s_one
SET
col1 = x.col1,
col2 = x.col2,
col3 = Replace(x.col3, 'auth.', ''),
col4 = x.col4,
col5 = CASE
WHEN x.col3 = 'empty' THEN '1'
ELSE '0'
END,
col6 = CASE
WHEN x.col3 = 'empty' THEN ''
ELSE Cast(am.id as VarChar(11))
END
FROM
gt_s_one x
LEFT JOIN access_mode am ON Upper(Replace(x.col3, 'auth.', '')) = Upper(am.code)
WHERE
gt_s_one.id = x.id
我正在尝试更新整个 table 以修改某些列并在其中存储另一个 table 的 ID。
以下代码在更新语句处失败,我不知道为什么。
db.gt_s_one
.GroupJoin(db.access_mode,
l => l.col3.Replace("auth.", "").ToUpper(),
am => am.code.ToUpper(),
(l, am) => new {
l,
am
}
)
.SelectMany(
x => x.am.DefaultIfEmpty(),
(x1, y1) => new {
gt = x1.l,
theAM = y1.id
}
)
.Update(db.GetTable<gt_s_one>(),
s => new gt_s_one
{
col1 = s.gt.col1,
col2 = s.gt.col2,
col3 = s.gt.col3.Replace("auth.", ""),
col4 = s.gt.col4,
col5 = s.gt.col3 == "empty" ? "1" : "0",
col6 = s.gt.col3 == "empty" ? "" : s.theAM.ToString()
}
);
我已经将第一部分(groupjoin 和 selectmany)隔离在一个 var 中并执行它效果很好但是当我执行更新部分时我得到:
LinqToDB.SqlQuery.SqlException
HResult=0x80131500
Message=Table '[public].[access_mode]' not found.
Source=linq2db
在我的 SelectMany 中,我尝试将 y1 作为一个整体而不是 y1.id,但这没有任何区别。
目前 linq2db
仅支持 SQL Server、Sybase 和 MySql 的类似查询。我看到你 运行 它反对 PostgreSQL。对 PostgreSQL(以及大多数其他数据库)的支持已经 implemented 并将作为 linq2db
版本 3 版本的一部分发布。
为您的查询生成的 SQL 示例:
UPDATE
gt_s_one
SET
col1 = x.col1,
col2 = x.col2,
col3 = Replace(x.col3, 'auth.', ''),
col4 = x.col4,
col5 = CASE
WHEN x.col3 = 'empty' THEN '1'
ELSE '0'
END,
col6 = CASE
WHEN x.col3 = 'empty' THEN ''
ELSE Cast(am.id as VarChar(11))
END
FROM
gt_s_one x
LEFT JOIN access_mode am ON Upper(Replace(x.col3, 'auth.', '')) = Upper(am.code)
WHERE
gt_s_one.id = x.id