Data Source Column Configuration
data class DataSourceColumnConfiguration(val changeDetectingColumns: List<String>, val documentDataColumnName: String, val documentIdColumnName: String, val documentTitleColumnName: String? = null, val fieldMappings: List<DataSourceToIndexFieldMapping>? = null)
Properties
Link copied to clipboard
One to five columns that indicate when a document in the database has changed.
Link copied to clipboard
The column that contains the contents of the document.
Link copied to clipboard
The column that provides the document's identifier.
Link copied to clipboard
The column that contains the title of the document.
Link copied to clipboard
An array of objects that map database column names to the corresponding fields in an index. You must first create the fields in the index using the UpdateIndex operation.