|
WARNING! Execute SQLProvider DELETE FROM query to remove elements from the database.
-
_arg1
:
IQueryable<'T>
-
Returns:
Task<int>
|
|
Execute SQLProvider query to get the avg of elements, and release the OS thread while query is being executed.
-
Returns:
IQueryable<'T> -> Task<'T>
|
|
Execute SQLProvider query to get the only element of the sequence.
Throws `ArgumentNullException` if the seq is empty.
Throws `ArgumentException` if the seq contains more than one element.
-
Returns:
IQueryable<'T> -> Task<'T>
|
|
Execute SQLProvider query and release the OS thread while query is being executed.
-
Returns:
IQueryable<'a> -> Task<'a seq>
|
|
Execute SQLProvider query to take one result and release the OS thread while query is being executed.
Like normal head: Throws exception if no elements exists. See also tryHeadAsync.
-
Returns:
IQueryable<'a> -> Task<'a>
|
|
Execute SQLProvider query to count the elements, and release the OS thread while query is being executed.
-
Returns:
IQueryable<'a> -> Task<int>
|
|
Execute SQLProvider query to get the max of elements, and release the OS thread while query is being executed.
-
Returns:
IQueryable<'T> -> Task<'T>
|
|
Execute SQLProvider query to get the min of elements, and release the OS thread while query is being executed.
-
Returns:
IQueryable<'T> -> Task<'T>
|
|
Execute SQLProvider query to get the standard deviation of elements, and release the OS thread while query is being executed.
-
Returns:
IQueryable<'T> -> Task<'T>
|
|
Execute SQLProvider query to get the sum of elements, and release the OS thread while query is being executed.
-
Returns:
IQueryable<'T> -> Task<'T>
|
|
Execute SQLProvider query to get the only element of the sequence.
Returns `None` if there are zero or more than one element in the seq.
-
Returns:
IQueryable<'T> -> Task<'T option>
|
|
Execute SQLProvider query to take one result and release the OS thread while query is being executed.
Returns None if no elements exists.
-
Returns:
IQueryable<'a> -> Task<'a option>
|
|
Execute SQLProvider query to get the variance of elements, and release the OS thread while query is being executed.
-
Returns:
IQueryable<'T> -> Task<'T>
|