static Expression <Func <ISQLiteSpecificTable <TSource>, string, ISQLiteSpecificTable <TSource> > > IndexedByImpl <TSource>() where TSource : notnull { return((table, indexName) => table.TableHint(Hint.IndexedBy(indexName))); }
public static ISQLiteSpecificTable <TSource> IndexedByHint <TSource>(this ISQLiteSpecificTable <TSource> table, string indexName) where TSource : notnull { return(table.TableHint(Hint.IndexedBy(indexName))); }