hello there , am using the Backendless 5.0 beta with .NET and
using this code
var dataQueryBuilder = DataQueryBuilder.Create();
dataQueryBuilder.SetWhereClause("restaurant.objectId = '" + restaurant.objectId + "' ");
//check if i got correct parameters
Console.WriteLine(restaurant.objectId.ToString());
Console.WriteLine(dataQueryBuilder.GetWhereClause());
Backendless.Data.Of<Orders>().Find(dataQueryBuilder,
new AsyncCallback<IList<Orders>>(
result =>
{.................
will always return the error
F10299AE-6CA5-46EE-FF65-41E183B2A900
restaurant.objectId = 'F10299AE-6CA5-46EE-FF65-41E183B2A900'
Error - Backendless BackendlessFault. Code: Internal client exception, Message: Input string was not in a correct format.
any help would be appreciated
thanks