DbConnectorCommand.QueryFirst<T> method (1 of 2)

Executes the query, converting the first record to the specified type.

public T QueryFirst<T>()

Remarks

Throws InvalidOperationException if no records are returned.

See Also


DbConnectorCommand.QueryFirst<T> method (2 of 2)

Executes the query, converting the first record to the specified type with the specified delegate.

public T QueryFirst<T>(Func<IDataRecord, T> map)

Remarks

Throws InvalidOperationException if no records are returned.

See Also