0

我是这个世界的新手,所以我正在学习。我很笨,所以我几乎什么都不懂。我知道这个问题很基础,但是我研究了一个星期,还没有找到解决办法。在我的工作中,我被要求找到一种从 PowerShell 或 Visual Studio 连接到 PowerApps (Dataverse) 的数据和解决方案的方法。

我一直在做研究,我能够连接并获取数据,但我仍然无法创建自定义实体(表)。我已按照本教程使用组织服务创建实体,这是我拥有的代码:

static void Main(string[] args)
    {
        string url = "xxxxxxxx"; 
        string userName = "xxxxxxxx";
        string password = "xxxxxxxx";

        string conn = $@"
        AuthType = OAuth;
        UserName = {userName};
        Password = {password};
        Url = {url};
        AppId = 51f81489-12ee-4a9e-aaae-a2591f45987d;
        RedirectUri = app://58145B91-0C36-4500-8554-080854F2AC97;
        LoginPrompt = Auto;
        RequireNewInstance = True";

        var svc = new CrmServiceClient(conn);

        using (svc)
        {
            Entity entitytest = new Entity("test");
            
            var vid = svc.Create(entitytest);
            Guid accountid = vid;
        }
    }

它连接正确(我审查了个人数据),但是在执行它时,我在这一行得到了这个错误"var vid = svc.Create(entitytest);"

System.ServiceModel.FaultException:在 MetadataCache 中找不到名称 = 'entitytest' 且名称映射 = 'Logical' 的实体。MetadataCacheDetails:ProviderType=Dynamic,StandardCache=True,IsLoadedInStagedContext = False,Timestamp=1084883,MinActiveRowVersion=1084883,MetadataInstanceId=34390963,LastUpdated=2021-05-30 11:49:56.803

我究竟做错了什么?你知道有完整例子的网站吗?

4

0 回答 0