简体   繁体   English

Azure移动服务:{System.TypeLoadException} = {“找不到入口点。”:“”}

[英]Azure Mobile Services: {System.TypeLoadException} = {“Entry point was not found.”:“”}

Actually I'm having some problems with the Azure Mobile Services. 实际上,我在使用Azure移动服务时遇到了一些问题。 Because I'm getting the error "{System.TypeLoadException} = {"Entry point was not found.":""}", when I try to convert the table to a collection view. 当我尝试将表转换为集合视图时,由于出现错误“ {System.TypeLoadException} = {”找不到入口点。“:”“}”。 Everytime I'm getting a empty list back with this error. 每当我收到一个空列表时都会出现此错误。

What am I doing wrong? 我究竟做错了什么?

I have the same problem. 我也有同样的问题。 I find the solve of problem here . 我在这里找到解决问题的方法。 In two words: 用两个词:
Because collectionView fetch data asynchronously, we need work with our collection, when she loaded at all. 因为collectionView异步获取数据,所以当她完全加载集合时,我们需要使用我们的集合。 For eg: 例如:
items = todoTable.ToCollectionView();
items.CollectionChanged += items_CollectionChanged;

void items_CollectionChanged(object sender, System.Collections.Specialized.NotifyCollectionChangedEventArgs e)
{ if (e.Action == System.Collections.Specialized.NotifyCollectionChangedAction.Reset) { int n = items.Count; } }

I used this Microsoft example 我用这个微软的例子

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

相关问题 错误System.TypeLoadException:'AuthenticateRequestAsync'该如何解决? - Error System.TypeLoadException: 'AuthenticateRequestAsync' how to solve this? Azure移动服务-找不到引导程序 - Azure Mobile Services - No bootstrapper found Azure移动服务-更新数据库中的条目 - Azure Mobile Services - Updating an Entry in the Database 使用Azure移动服务更新条目 - Updating an entry using Azure Mobile Services Azure移动服务-System.PlatformNotSupportedException - Azure Mobile Services - System.PlatformNotSupportedException 找不到Azure移动服务端点(.NET后端) - Azure Mobile Services Endpoint not found (.NET backend) .net后端的Azure移动服务未找到错误 - Azure mobile services Not Found error with .net backend 找不到Azure移动服务后端“ mssql”对象 - Azure mobile services backend “mssql” object not found System.TypeLoadException:从负载测试插件使用 KeyVault 时的“方法 'get_SerializationSettings' - System.TypeLoadException: 'Method 'get_SerializationSettings' when using KeyVault from Load Test Plugin Azure中“找不到入口点”错误LightGBM R程序包 - “Entry Point Not Found” Error LightGBM R package in Azure
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM