It's the first time I create a back end for my Xamarin.Forms application. I follow instructions on Azure Portal -> Quick-Start
, create a data connection, choose c# in step 2
and download the project
.
Build it and now I want to add a new table. So :
public DbSet<Coffee> Coffees{ get; set; }
And when I try to add the Azure Mobile Apps table controller, an error message tell me :
Value cannot be null. Parameter name : path1.
What can I do to fix that ?
Sorry for my bad English.
Have a nice day!
I have the same problem, and the problem is also mentioned on the Visual Studio Development community: https://developercommunity.visualstudio.com/content/problem/563354/adding-a-new-azure-mobile-apps-table-controller-or.html
Meanwhile you can work around the problem by creating the controller in code. I've tested the following steps for a Azure Mobile Apps Table Controller for a Xamarin Forms app:
Finally publish your solution.