Android.Database.Sqlite.SQLiteQueryBuilder.AppendWhere Method
Append a chunk to the WHERE clause of the query.

Syntax

[Android.Runtime.Register("appendWhere", "(Ljava/lang/CharSequence;)V", "GetAppendWhere_Ljava_lang_CharSequence_Handler")]
public virtual void AppendWhere (Java.Lang.ICharSequence inWhere)

Parameters

inWhere
the chunk of text to append to the WHERE clause.

Remarks

Append a chunk to the WHERE clause of the query. All chunks appended are surrounded by parenthesis and ANDed with the selection passed to SQLiteQueryBuilder.Query(SQLiteDatabase, System.String[], System.String[], System.String[], System.String[], System.String[], System.String[]). The final WHERE clause looks like: WHERE (<append chunk 1><append chunk2>) AND (<query() selection parameter>)

[Android Documentation]

Requirements

Namespace: Android.Database.Sqlite
Assembly: Mono.Android (in Mono.Android.dll)
Assembly Versions: 0.0.0.0
Since: Added in API level 1