使用此代码,我可以从Azure Web服务表中读取数据。
private MobileServiceCollectionView<Item> items;
private IMobileServiceTable<Item> table = App.MobileService.GetTable<Item>();
items = table.ToCollectionView();
// and so on...
我的问题是,我的表名与Item
类的名称不同,但我不想更改表的名称,因为我认为这是最好理解的最佳名称。我的表格是否可能名为Person
,但我的查询名称为Item
?
答案 0 :(得分:1)
为完整起见,您还可以使用
[DataTable("*tableName*")]
定义数据类型对应的Azure移动服务表的名称。
答案 1 :(得分:0)
找到解决方案:
//over the Class definition
[DataContract(Name = "*tablename*")]