Click or drag to resize
SQLiteDatabaseConnectionBuilderWithScalarFunc Method (String, FuncIReadOnlyListISQLiteValue, ISQLiteValue)
Adds a scalar function that can accept any number of ISQLiteValue instances.

Namespace: SQLitePCL.pretty
Assembly: SQLitePCL.pretty (in SQLitePCL.pretty.dll) Version: 1.0.0.0 (1.0.0)
Syntax
public SQLiteDatabaseConnectionBuilder WithScalarFunc(
	string name,
	Func<IReadOnlyList<ISQLiteValue>, ISQLiteValue> reduce
)

Parameters

name
Type: SystemString
The function name.
reduce
Type: SystemFuncIReadOnlyListISQLiteValue, ISQLiteValue
A reduction function.

Return Value

Type: SQLiteDatabaseConnectionBuilder
A SQLiteDatabaseConnectionBuilder instance.
See Also