我有一个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
答案 0 :(得分:2)
AsUpdate
方法不会执行查询,它仅用于构建sql更新字符串。
要执行查询,您必须执行以下操作。
db.Query()
代替new Query()
,其中 db 是QueryFactory
实例(它返回XQuery的实例,因此是可执行查询)Update
,Insert
,Count
等...代替AsUpdate
,AsInsert
和AsCount
我强烈建议您阅读文档中的执行部分 https://sqlkata.com/docs/execution/