put limit in query string
This commit is contained in:
parent
13e55237c0
commit
e607502d13
@ -385,7 +385,7 @@ namespace Salesforce.NET
|
|||||||
|
|
||||||
if (limit != null)
|
if (limit != null)
|
||||||
{
|
{
|
||||||
query = $"{query} limit {10}";
|
query = $"{query} limit {limit.Value}";
|
||||||
}
|
}
|
||||||
|
|
||||||
return QueryAsync<T>(query);
|
return QueryAsync<T>(query);
|
||||||
|
Reference in New Issue
Block a user