I am trying to make and Android app with ASP.NET WebService. In WebService, if I want to return values from a single table I know what to do :
public DataTable GetUserDetails(string userName)
{
....
return userDetailsTable;
}
But I don't know what to do if I want to return values from different tables (a more complex data). Should I use List< DataTable >or something else? If I use List< DataTable >, how should I handle its Android part? Thanks.
Go to the complete details ...