使用此代码,我可以从我的 Azure Web 服务表中读取数据。
private MobileServiceCollectionView<Item> items;
private IMobileServiceTable<Item> table = App.MobileService.GetTable<Item>();
items = table.ToCollectionView();
// and so on...
我的问题是,我的表的名称与Item
Class 不同,但我不想更改表的名称,因为我认为这是最好的名称,以便更好地理解。是否有可能我的表有名称Person
,但我使用类名称发送查询Item
?