- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
所以我正在尝试为原型(prototype) Web 应用程序创建一个存储过程。我的类/文档名称是“Plan”,它有一个 Description 属性和一个 OrderingNumber 属性作为 int -- 这些的实际功能是这对这个问题来说并不重要,所以让我们把它排除在外。
数据库称为“PlanDB”,我希望在其上执行存储过程的集合称为“Plans”,当然,我也将存储过程保存在其中。
这是我的 C# 应用程序中的函数:
PlanService.cs
public async Task SwapOrderingNumbers(string id1, string id2)
{
try
{
await client.ExecuteStoredProcedureAsync<bool>(UriFactory.CreateStoredProcedureUri("PlanDB", "Plans", "swapOrderNumberSproc"), id1, id2);
}
catch (DocumentClientException de)
{
throw;
}
}
如您所见,我有参数 id1 和 id2,我希望在执行所述存储过程时使用它们——理想情况下,它应该交换 2 的 OrderingNumber计划。
swapOrderNumberSproc
// Stored procedure for swapping ordering numbers
// @param planId1 - Plan 1's ID
// @param planId2 - Plan 2's ID
var swapOrderNumberSproc = {
id: "swapOrderNumberSproc",
serverScript: function (planId1, planId2) {
var context = getContext();
var collection = context.getCollection();
var response = context.getResponse();
var plan1Document, plan2Document;
// query for Plans
var filterQuery = 'SELECT * FROM Plans a where a.id = "' + planId1 + '"';
var accept = collection.queryDocuments(collection.getSelfLink(), filterQuery, {},
function (err, documents, responseOptions) {
if (err) throw new Error("Error" + err.message);
if (documents.length != 1) throw "Unable to find both names";
plan1Document = documents[0];
var filterQuery2 = 'SELECT * FROM Plans a where a.id = "' + planId2 + '"';
var accept2 = collection.queryDocuments(collection.getSelfLink(), filterQuery2, {},
function (err2, documents2, responseOptions2) {
if (err2) throw new Error("Error" + err2.message);
if (documents2.length != 1) throw "Unable to find both names";
plan2Document = documents2[0];
swapOrder(plan1Document, plan2Document);
return;
});
if (!accept2) throw "Unable to read Plan details, abort ";
});
if (!accept) throw "Unable to read Plan details, abort ";
// swap the two Plans’ OrderingNumbers
function swapOrder(plan1, plan2) {
var plan1NumberSave = plan1.OrderingNumber;
plan1.OrderingNumber = plan2.OrderingNumber;
plan2.OrderingNumber = plan1NumberSave;
var accept = collection.replaceDocument(plan1._self, plan1,
function (err, docReplaced) {
if (err) throw "Unable to update Plan 1, abort ";
var accept2 = collection.replaceDocument(plan2._self, plan2,
function (err2, docReplaced2) {
if (err) throw "Unable to update Plan 2, abort"
});
if (!accept2) throw "Unable to update Plan 2, abort";
});
if (!accept) throw "Unable to update Plan 1, abort";
}
}
C# 中的 SwapOrderingNumbers() 通过 POST 在我的 Controller 中的端点“/swapnumbers”调用:
计划 Controller
[Route("swapnumbers")]
[HttpPost]
public async Task SwapOrderingNumbers()
{
await activityService.SwapOrderingNumbers("ca35e414-f1b8-49dc-89e7-61e2e100d14a", "dd4a8298-55b8-425b-b16b-f73229399107");
}
目前,作为参数给出的 ID 被硬编码以简化。
每当我尝试通过 POST 执行存储过程时,它都会返回错误 500。我做错了什么?
编辑
追踪
Microsoft.Azure.Documents.BadRequestException: Message: {"Errors":
["Encountered exception while compiling Javascript. Exception =
SyntaxError: Syntax error\r\nSource information: line: 5, column: 1,
source line:\r\nvar swapOrderNumberSproc = {"]}
ActivityId: bf1bacba-0375-4a51-9c94-07c89dfb4868, Request URI:
/apps/DocDbApp/services/DocDbServer19/partitions/a4cb495f-38c8-11e6-
8106-8cdcd42c33be/replicas/1p/
at Microsoft.Azure.Documents.TransportClient.ThrowIfFailed(String
resourceAddress, StoreResponse storeResponse, Uri physicalAddress, Guid
activityId)
at Microsoft.Azure.Documents.RntbdTransportClient.
<InvokeStoreAsync>d__3.MoveNext()
我从存储过程中去掉的部分
var swapOrderNumberSproc = {
id: "swapOrderNumberSproc",
serverScript:
替换为
function swapOrderNumberSproc(activityId1, activityId2) {
最佳答案
看来您的 SP 脚本应该以 function swapOrderNumberSproc (planId1, planId2){
开头。
function swapOrderNumberSproc(planId1, planId2) {
var context = getContext();
var collection = context.getCollection();
var response = context.getResponse();
var plan1Document, plan2Document;
// query for Plans
var filterQuery = 'SELECT * FROM Plans a where a.id = "' + planId1 + '"';
var accept = collection.queryDocuments(collection.getSelfLink(), filterQuery, {},
function (err, documents, responseOptions) {
if (err) throw new Error("Error" + err.message);
if (documents.length != 1) throw "Unable to find both names";
plan1Document = documents[0];
var filterQuery2 = 'SELECT * FROM Plans a where a.id = "' + planId2 + '"';
var accept2 = collection.queryDocuments(collection.getSelfLink(), filterQuery2, {},
function (err2, documents2, responseOptions2) {
if (err2) throw new Error("Error" + err2.message);
if (documents2.length != 1) throw "Unable to find both names";
plan2Document = documents2[0];
swapOrder(plan1Document, plan2Document);
response.setBody(true);
});
if (!accept2) throw "Unable to read Plan details, abort ";
});
if (!accept) throw "Unable to read Plan details, abort ";
// swap the two Plans’ OrderingNumbers
function swapOrder(plan1, plan2) {
var plan1NumberSave = plan1.OrderingNumber;
plan1.OrderingNumber = plan2.OrderingNumber;
plan2.OrderingNumber = plan1NumberSave;
var accept = collection.replaceDocument(plan1._self, plan1,
function (err, docReplaced) {
if (err) throw "Unable to update Plan 1, abort ";
var accept2 = collection.replaceDocument(plan2._self, plan2,
function (err2, docReplaced2) {
if (err) throw "Unable to update Plan 2, abort"
});
if (!accept2) throw "Unable to update Plan 2, abort";
});
if (!accept) throw "Unable to update Plan 1, abort";
}
}
此外,您在任何时候都不会返回 bool
,您必须在 response
中发送值。我将您的 return;
更改为 response.setBody(true);
。
重构之后,我能够从 C# 运行它而不会出现编译错误并返回 bool
。
关于c# - 带有 CosmosDB 的 .NET Core 中的存储过程给出错误 500,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46443678/
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 4年前关闭。 Improve t
我在我的 CosmosDB 集合中创建了一个简单的 Pre Trigger。 function testTrigger() { var context = getContext();
我正在尝试扁平化和过滤 CosmosDB 中的 json 数据。 数据如下所示,我想展平数组变量中的所有内容,然后按数组内的特定 _id 和时间戳进行过滤: { "_id": 21032, "Firs
我正在测试 CosmosDb。我发现初始连接通常需要很多秒。我编写了一个小型 .net core 2.2 控制台应用程序来演示该问题。 static async System.Threading
我正在测试 CosmosDb。我发现初始连接通常需要很多秒。我编写了一个小型 .net core 2.2 控制台应用程序来演示该问题。 static async System.Threading
我有很多(大约 100 条)数据要与 CosmosDB 中的文档相关联。每条数据都很小(大约 100 个字节)。 我的第一个解决方案是将数据作为数组存储在文档中。这可以正常工作,但是为了将新项目附加到
据我所知,团队的官方建议是将所有数据类型放入单个集合中,例如 type=someType文档上的字段以区分类型。 现在,如果我们假设具有分区的大型数据库,其中不同的对象类型可以是: 完全不同的字段(因
这是我们要存储的示例文档: { "name": "Joe Bloggs", "locations": [ { "type": "Point", "coordinates": [1,1] }, { "t
是否可以获得的大小?每 Cosmos DB 集合中的分区?我知道门户会在 Metrics Blade 中显示集合中的前几个分区,但我对查看每个分区的大小很感兴趣。 最佳答案 我相信您应该能够通过 Co
我试图在 Cosmos 中拥有多个文档,一旦提交,其中一个将保存提交表单中的一些数据。我正在尝试使用其他一些文档来保存下拉选择列表的数据。我如何能够连接到多个 config.containerId 以
我想做一个这样的查询 g.V().match( as('foo').hasLabel('bar'), as('foo').out('baz').hasId('123'), as('foo'
我正在尝试使用以下查询来查看数据库中是否有重复项 SELECT c.VariantNo, count(1) AS jongel FROM c where c.brand = 'XXXX' AND c.
我有一个包含许多字段的大型文档,我只想从对象返回 1-2 个字段以保持吞吐量。这在 cosmosDB 中可能吗?还是我每次都需要返回整个对象? 最佳答案 使用 ReadItemAsync() 进行点读
我有一个 CosmosDB 查询: SELECT food.tags FROM food 返回这个: { "tags": [ { "name": "babyfood"
想象一下我们有一个这样的集合(示例取自 https://www.documentdb.com/sql/demo ) { "_id" : "19015", "description" :
我正在使用 MongoDB api 访问 Azure 上的 CosmosDb。我收集了数千份文件。 它们的形状是这样的: { "_id" : ObjectId("5b4f574ac2100c8
我正在尝试在 CosmosDB 中实现以下查询: SELECT * FROM c WHERE c.timestamp = (SELECT VALUE MAX(c.timestamp) FROM c )
我们可以在 cosmos Db 中添加 XML Schema 吗?如果是,我们如何查询它们?我可以将 XML 数据保存为字符串,但如何查询它们? 下面是我收藏的文档: { "id":
我研究了几个地方,但找不到有关将旧数据从 cosmosdb 存档到冷存储的选项的任何方向。我看到 AWS 中的 DynamoDb 提到您可以将 dynamodb 数据移动到 S3 中。但不确定 cos
取自:https://learn.microsoft.com/en-us/azure/cosmos-db/create-graph-dotnet 我在 .wait() 部分遇到异常: NullR
我是一名优秀的程序员,十分优秀!