|
static IIndexFactory | ResolveIndexFactory (this ISystemContext context, string indexType) |
|
static ColumnIndex | CreateColumnIndex (this ISystemContext context, string indexType, ColumnIndexContext indexContext) |
|
static ColumnIndex | CreateColumnIndex (this ISystemContext context, string indexType, ITable table, int columnOffset) |
|
static ColumnIndex | CreateColumnIndex (this ISystemContext context, string indexType, ITable table, int columnOffset, IEnumerable< KeyValuePair< string, object >> metadata) |
|
Definition at line 25 of file SystemContextExtensions.cs.
Definition at line 30 of file SystemContextExtensions.cs.
32 var factory = context.ResolveIndexFactory(indexType);
34 throw new NotSupportedException(
String.Format(
"None index factory for type '{0}' was configured in the system.", indexType));
36 return factory.CreateIndex(indexContext);
A long string in the system.
static ColumnIndex Deveel.Data.Index.SystemContextExtensions.CreateColumnIndex |
( |
this ISystemContext |
context, |
|
|
string |
indexType, |
|
|
ITable |
table, |
|
|
int |
columnOffset |
|
) |
| |
|
inlinestatic |
Definition at line 39 of file SystemContextExtensions.cs.
static ColumnIndex CreateColumnIndex(this ISystemContext context, string indexType, ColumnIndexContext indexContext)
static ColumnIndex Deveel.Data.Index.SystemContextExtensions.CreateColumnIndex |
( |
this ISystemContext |
context, |
|
|
string |
indexType, |
|
|
ITable |
table, |
|
|
int |
columnOffset, |
|
|
IEnumerable< KeyValuePair< string, object >> |
metadata |
|
) |
| |
|
inlinestatic |
Definition at line 44 of file SystemContextExtensions.cs.
46 return context.CreateColumnIndex(indexType,
new ColumnIndexContext(table, columnOffset, metadata));
The documentation for this class was generated from the following file: