Azure .NET Backend from Scratch? -


azure not contain documentation setting .net backend mobile scratch. keep seeing 'todoitem' example , it's frustrating.

i'm trying connect existing azure sql db

the table i'm trying retrieve data 'usertable'

this model looks like:

public class usertable : entitydata {         public int id { get; set; }         public string email { get; set; }         public string userfname { get; set; }         public string userlname { get; set; }  } 

now how create fresh backend scenario instead of these todoitem projects auto loads when create new mobile backed project vs2013? no documentations on web whatsoever. thank much!

edit:

according ios developer json response in format such this:

[{    status:true,    message: "successfully logged in",    values:{        email: user@sample.com,        password: samplepassword,        accesstoken: 7h234b7b2j      } }] 

so therefore when user logs in, access token needs added response well.

there long , detailed tutorial on how build mobile service using existing sql database mobile services .net backend @ link: https://azure.microsoft.com/en-us/documentation/articles/mobile-services-dotnet-backend-use-existing-sql-database/. there documentation, have dig bit.

app services still new , not scenarios have been documented yet, helps go mobile services docs. assume familiar asp.net webapi because .net backend azure mobile (services or apps). if not, recommend ramp-up on webapi starting here: http://www.asp.net/web-api.


Comments