gpt4 book ai didi

C# SqlKata 引擎更新查询似乎没有执行

转载 作者:行者123 更新时间:2023-11-30 21:30:18 27 4
gpt4 key购买 nike

我有一个 C# 函数,旨在对 SQL Server 2016 表执行更新。为此,我正在利用 SqlKata 引擎。

我可能正在做一些非常简单/愚蠢的事情,我感觉我正在构建查询,但没有执行它?该文档仅显示了 UPDATE 语句的以下内容:

var query = new Query("Posts").WhereNull("AuthorId").AsUpdate(new {
AuthorId = 10
});

我的更新稍微复杂一些,但基本构造相同。我正在为某些属性使用动态对象,因此我强制使用 ToString 和 Convert.ToInt32 作为测试属性本身是否存在问题的一部分。然而,日志记录表明这些值是正确的并且存在。

using (var connection = new SqlConnection(await RetrieveParameterStoreValue(ParameterStoreStrings.Database, true, context, environmentLogLevel)))
{
var db = new QueryFactory(connection, new SqlServerCompiler())
{
// Log the compiled query to the console
Logger = compiled =>
{
CreateCloudWatchLog($"Query = {compiled.ToString()}", context, LogLevel.Trace, environmentLogLevel);
}
};

string tableName = updateRequest.insite_request.objectReference.ToString();

foreach (dynamic stockUpdate in updateRequest.insite_request.payload.items)
{
CreateCloudWatchLog($"Servername = {updateRequest.insite_request.payload.store_reference.ToString()} sku={stockUpdate.sku.ToString()} new soh={Convert.ToInt32(stockUpdate.committed_count)}", context, LogLevel.Error, environmentLogLevel);

var query = db.Query(tableName)
.Where(new {
sku = stockUpdate.sku.ToString(),
ServerName = updateRequest.insite_request.payload.store_reference.ToString()
})
.AsUpdate(new
{
stock_on_hand = Convert.ToInt32(stockUpdate.committed_count)
});

CreateCloudWatchLog($"stock update for {tableName}", context, LogLevel.Error, environmentLogLevel);
}
}

我觉得我需要以某种方式调用构造的查询,但我不清楚如何调用。我有一些执行 SELECT 语句的 SqlKata 代码,为了调用它,我使用

 var results = query.Get();

但是我找不到关于类似调用的任何文档(沿着 query.Update 或类似的行?)对这个愚蠢的问题表示歉意。

供引用,记录的输出没有显示任何执行迹象,表中的数据保持不变。

[Error] Servername = P777S001 sku=13643 new soh=10
[Error] stock update for InSiteClickCollect
[Error] Servername = P777S001 sku=13644 new soh=10
[Error] stock update for InSiteClickCollect
END RequestId: 2fec77e5-6a4e-4990-85e8-f541c9df6eef

最佳答案

AsUpdate 方法不执行查询,它仅用于构建 sql 更新字符串

要执行您的查询,您必须执行以下操作。

  1. 使用 db.Query() 而不是 new Query() 其中 dbQueryFactory 实例(它返回一个 XQuery 实例,因此可执行查询)
  2. 使用 UpdateInsertCount 等代替 AsUpdateAsInsertAsCount

我强烈建议您阅读文档中的执行部分 https://sqlkata.com/docs/execution/

关于C# SqlKata 引擎更新查询似乎没有执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54545519/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com