Class FreeTextWordsBulkImportFacade
Typed facade for an object[] that contains all the fields of the FreeTextWords table, intended for
use with DatabaseOperations.
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public class FreeTextWordsBulkImportFacade : Object
Remarks
The bulk import system is based on generic row data, represented as an array of object. While this fits the bulk import functionality well, it may be convenient to have a typed, named way of accessing the elements of such an object. This class has an object[] as its data carrier, together with strongly typed access members.
On creation, the array is dimensioned and all members initialized with 'blank' values for their types (never null). There is an implicit conversion operator to object[], and it is also possible to access the array directly.Constructors
FreeTextWordsBulkImportFacade()
Typed facade for an object[] that contains all the fields of the FreeTextWords table, intended for
use with DatabaseOperations.
Declaration
public FreeTextWordsBulkImportFacade()
Remarks
The bulk import system is based on generic row data, represented as an array of object. While this fits the bulk import functionality well, it may be convenient to have a typed, named way of accessing the elements of such an object. This class has an object[] as its data carrier, together with strongly typed access members.
On creation, the array is dimensioned and all members initialized with 'blank' values for their types (never null). There is an implicit conversion operator to object[], and it is also possible to access the array directly.Properties
FreetextwordsId
Primary key
Declaration
public int FreetextwordsId { get; set; }
Property Value
Type | Description |
---|---|
Int32 |
Remarks
The bulk import system is based on generic row data, represented as an array of object. While this fits the bulk import functionality well, it may be convenient to have a typed, named way of accessing the elements of such an object. This class has an object[] as its data carrier, together with strongly typed access members.
On creation, the array is dimensioned and all members initialized with 'blank' values for their types (never null). There is an implicit conversion operator to object[], and it is also possible to access the array directly.RowData
Typed facade for an object[] that contains all the fields of the FreeTextWords table, intended for
use with DatabaseOperations.
Declaration
public object[] RowData { get; }
Property Value
Type | Description |
---|---|
Object[] |
Remarks
The bulk import system is based on generic row data, represented as an array of object. While this fits the bulk import functionality well, it may be convenient to have a typed, named way of accessing the elements of such an object. This class has an object[] as its data carrier, together with strongly typed access members.
On creation, the array is dimensioned and all members initialized with 'blank' values for their types (never null). There is an implicit conversion operator to object[], and it is also possible to access the array directly.SoundEx
Soundex form of word using Metaphone algorithm, for sounds-like searching
Declaration
public string SoundEx { get; set; }
Property Value
Type | Description |
---|---|
String |
Remarks
The bulk import system is based on generic row data, represented as an array of object. While this fits the bulk import functionality well, it may be convenient to have a typed, named way of accessing the elements of such an object. This class has an object[] as its data carrier, together with strongly typed access members.
On creation, the array is dimensioned and all members initialized with 'blank' values for their types (never null). There is an implicit conversion operator to object[], and it is also possible to access the array directly.Word
Indexed word
Declaration
public string Word { get; set; }
Property Value
Type | Description |
---|---|
String |
Remarks
The bulk import system is based on generic row data, represented as an array of object. While this fits the bulk import functionality well, it may be convenient to have a typed, named way of accessing the elements of such an object. This class has an object[] as its data carrier, together with strongly typed access members.
On creation, the array is dimensioned and all members initialized with 'blank' values for their types (never null). There is an implicit conversion operator to object[], and it is also possible to access the array directly.Operators
Implicit(FreeTextWordsBulkImportFacade to Object[])
Typed facade for an object[] that contains all the fields of the FreeTextWords table, intended for
use with DatabaseOperations.
Declaration
public static implicit operator object[](FreeTextWordsBulkImportFacade r)
Parameters
Type | Name | Description |
---|---|---|
FreeTextWordsBulkImportFacade | r |
Returns
Type | Description |
---|---|
Object[] |
Remarks
The bulk import system is based on generic row data, represented as an array of object. While this fits the bulk import functionality well, it may be convenient to have a typed, named way of accessing the elements of such an object. This class has an object[] as its data carrier, together with strongly typed access members.
On creation, the array is dimensioned and all members initialized with 'blank' values for their types (never null). There is an implicit conversion operator to object[], and it is also possible to access the array directly.