michael__sloan
michael__sloan

Reputation: 425

Azure Mobile App Easy Tables - Getting Started

I'm making a Xamarin.Android mobile app with an Azure Mobile Apps backend to store a table. The table will contain the names and email addresses that users enter into the app, and the app will also display the names and email addresses listed in the table.

I created an Easy Table in the Mobile App blade of the Azure Portal but I don't understand how that fits into the big picture. What are the next steps for writing code that can get the information into the table? I have been referred to articles on the Azure website such as this one that say I need to create a .NET backend to make a table but how does that relate to the table I made using Easy Tables?

Can someone explain to me what I need to do next to accomplish what I want to do? Or at least point me to some more articles that will get me on my way?

Upvotes: 0

Views: 1232

Answers (2)

Omar Martinez
Omar Martinez

Reputation: 439

Using the Azure portal you can create a basic app that will show you how to work with Easy Tables.

You just have to go to APP DEPLOYMENT section in you App Service and select Quickstart there you can select the platform or technology that you are using (Xamarin.Android in this case) and configure de connection, the table Api associate with the EasyTable and download the app.

You will have now a basic CRUD app, from there you can extend the functionality or add other things.

Upvotes: 1

Adrian Hall
Adrian Hall

Reputation: 8035

The best idea is to go through the tutorial which will tie it all together - both the client side and the server side. The tutorial set are:

I've linked the Xamarin.Android version. Examining the code as you go and understanding what is happening will assist your investigation. Once you've got through the tutorial, the client and server HOWTO documents will assist in some of the additional things you might choose to do:

It's important to note that when you are using Easy Tables, the code underneath is Node.js / JavaScript - not ASP.NET (you got pointed to the ASP.NET HOWTO)

Upvotes: 1

Related Questions