I have created a table in my backendless application named “tbl_test” .it consists of columns ID,NAMe,etc.
now I need to insert and retrieve from this table from my vb.net application.
backendless reference dll already added. backendless.initapp() also entered…
please help me out in this problem as I am very much new to the backendless
The following API returns a collection of data objects from the specified data table:
BackendlessCollection data = Backendless.Data.of( “Contact” ).Find();
Please suggest me to retrieve a data from a backendless entity and display in a msgbox or textbox in vb.net or c#… as I am new to this backendless Please help me out. From the above answer I couldnt reach my target. please help me out
A backendless entity is either a .NET Dictionary or a custom class that you wrote. Getting data from dictionary or an object would work the same way if that object or dictionary didn’t come from backendless.
Are you able to load data back from the server? Can you see it in a debugger?