0
的實體我在使用Microsoft.OData.Client.DataServiceCollection實例並調用Load(...)時出現以下異常。 )或添加(...): 實體集名稱尚未提供給類型實體。Microsoft.OData.Client.DataServiceCollection <T>異常:實體集名稱尚未提供給類型爲
例如:
DataServiceCollection<TEntity> collection =
new DataServiceCollection<TEntity>(_repoDataServiceQuery);
collection.Load(entity);
對我缺少什麼,以避免該異常有什麼建議?
朱林,感謝您的快速回復。是的,下面是如何聲明_repoDataServiceQuery:protected readonly DataServiceQuery _repoDataServiceQuery; –
AndreyKornich
它的價值如何?它是否分配了類似於'context.TEntities'(TEntity的實體集)? – Junlynn