Skip to content

Commit 3ebcfd9

Browse files
committed
🔎 query update
1 parent 9243aaf commit 3ebcfd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/AppServices/table/query/CustomQuery.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class CustomQuery
3535

3636
public CustomQuery(string filter, string orderBy=null, uint top=0, uint skip=0, string select=null, MobileServiceSystemProperty systemProperties=MobileServiceSystemProperty.nil, bool includeDeleted=false)
3737
{
38-
_filter = filter; // return only rows that satisty the specified filter predicate
38+
_filter = filter; // return only rows that satisfy the specified filter predicate
3939
_orderBy = orderBy; // sort column by one or more columns: order can be specified in 'desc' or 'asc' order ('asc' is default)
4040
_top = top; // return the top n entities for any query
4141
_skip = skip; // the n of records to skip (used for paging results)
@@ -104,7 +104,7 @@ private string SystemPropertiesValues(MobileServiceSystemProperty systemProperti
104104
if (systemProperties == MobileServiceSystemProperty.nil) {
105105
return "";
106106
}
107-
return systemProperties.ToString().Replace(", ","%2C"); // remove spaces from string and escape comma
107+
return systemProperties.ToString().Replace(" ",""); // remove spaces from string
108108
}
109109
}
110110
}

0 commit comments

Comments
 (0)