0

使用此代码,我可以从我的 Azure Web 服务表中读取数据。

private MobileServiceCollectionView<Item> items;
private IMobileServiceTable<Item> table = App.MobileService.GetTable<Item>();

items = table.ToCollectionView();
// and so on...

我的问题是,我的表的名称与ItemClass 不同,但我不想更改表的名称,因为我认为这是最好的名称,以便更好地理解。是否有可能我的表有名称Person,但我使用类名称发送查询Item

4

2 回答 2

1

为了完整起见,您还可以使用

[DataTable("*tableName*")]

定义数据类型对应的 Azure 移动服务表的名称。

于 2013-04-14T14:17:55.007 回答
0

找到了解决方案:

//over the Class definition
[DataContract(Name = "*tablename*")] 
于 2013-04-13T22:57:42.167 回答