如何在Azure移動服務中添加其他表並以編程方式插入和讀取數據。我試着做類似TodoItems表的代碼。我的新表創建,我可以手動使用SQL插入數據,但是當我使用新表移動服務Azure,無法獲取數據
private MobileServiceCollection<User,User> users;
private IMobileServiceTable<User> userTable = App.MobileService.GetTable<User>();
和
users = await userTable.ToCollectionAsync();
我得到
if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
你有任何想法如何我可以做到?
這是使用移動服務Node.JS後端還是.NET後端?是由服務創建的表,還是手動在SQL中? – mattchenderson
它是.NET的後端,我創建表的服務,在VS我創建新的類,在DataObjects和myprojectContext.cs包括這個:public DbSet Users {get;組; } –
user3597184