简体   繁体   English

CloudBoost查询无效的URI无法确定URI的格式

[英]CloudBoost query Invalid URI The format of the URI could not be determined

I took a look at CloudBoost today and it looked to do all the things I'm going to want for my commercial apps. 今天,我看了一下CloudBoost,它看起来可以完成我的商业应用所需的所有工作。 The quick video tutorial showed easily how to add data to the tables in the database, and this code works fine for me, so I know that my Key and AppID are ok. 快速视频教程轻松演示了如何向数据库中的表添加数据,并且此代码对我来说很好用,因此我知道我的Key和AppID可以。 However, going through the API documentation, I can't get past this point! 但是,通过API文档,我无法超越这一点! I can't get any queries to work at all, and also a lot of the documentation contains incorrect syntax and parameters for methods which is not helpful. 我根本无法获得任何查询,而且很多文档都包含不正确的语法和方法参数,这无济于事。 Here is where I'm stuck, so if anyone is using CloudBoost and has got it working C# it would be great if you could point me in the right direction. 这就是我遇到的问题,因此,如果有人使用CloudBoost并使其能够在C#中工作,那么如果您能将我的方向指明正确方向,那将是很好的。 Many thanks in advance. 提前谢谢了。 Here's my test code. 这是我的测试代码。

        private async void Test()
    {
        CloudApp.init(AppID, Key);

        //Code to query fails
        CB.CloudQuery query = new CB.CloudQuery("tblPerson");
        query.EqualTo("name", "Davy");
        var result = await query.Find(); //Error here
    }

I am using Visual Studio 2012 (C#) and the error is "Invalid URI: The format of the URI could not be determined." 我正在使用Visual Studio 2012(C#),错误为“无效的URI:无法确定URI的格式”。

There was a bug in the .NET SDK which is fixed now. .NET SDK中有一个错误,现已修复。 Can you please NuGet the latest version of the SDK. 您能否请NuGet最新版本的SDK。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 无效的URI:无法确定URI的格式 - Invalid URI: The format of the URI could not be determined XamlParseException无效的URI:无法确定uri的格式 - XamlParseException Invalid URI: The format of the uri could not be determined 无效的 URI:无法确定 URI 的格式 - Invalid URI: The format of the URI could not be determined 无效的URI:无法确定URI的格式异常 - Invalid URI: The format of the URI could not be determined Exception 无法确定URI的格式 - The format of the URI could not be determined S3 putobject throwing无效的URI:无法确定URI的格式 - S3 putobject throwing Invalid URI: The format of the URI could not be determined 无效的URI:无法确定URI的格式 - C# - Invalid URI: The format of the URI could not be determined - C# “使用WebRequest无法确定URI的格式” - “The format of the URI could not be determined” with WebRequest “无效的URI:无法确定URI的格式。” 从Web API调用ASPX页面时 - 'Invalid URI: The format of the URI could not be determined.' when calling aspx page from web api Microsoft.OpenApi.Models.OpenApiDocument.SerializeAsV2 URI 无效:无法确定 URI 的格式 - Microsoft.OpenApi.Models.OpenApiDocument.SerializeAsV2 Invalid URI: The format of the URI could not be determined
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM