Class CrudStatement<TResult, T>
Represents a collection statement.
Inheritance
System.Object
BaseStatement<TResult, T>
TargetedBaseStatement<Collection<T>, TResult, T>
CrudStatement<TResult, T>
Namespace: MySqlX.XDevAPI.CRUD
Assembly: MySql.Data.dll
Version: 9.1.0
Syntax
public abstract class CrudStatement<TResult, T> : TargetedBaseStatement<Collection<T>, TResult, T> where TResult : Result
Type Parameters
Name | Description |
---|---|
TResult | Type of Result |
T | Type of object |
Methods
GetDocs(Object[])
Converts base System.Objects into T
objects.
Declaration
protected IEnumerable<T> GetDocs(object[] items)
Parameters
Type | Name | Description |
---|---|---|
System.Object[] | items | Array of objects to be converted to |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<T> | An enumerable collection of |