Beispiel #1
0
 public static IEnumerable <int> GetRowNumberColumnIndexes(this ISqlSelectStatement sqlStatement, ICompositeKey key, IQueryTable context)
 {
     return(sqlStatement.GetRowNumberColumnIndexes(sqlStatement.SupplimentPrimaryKeyColumns(key, context)));
 }
Beispiel #2
0
 /// <summary>
 /// Get a list of pk columns for the "columnAlias" containing the "context"
 /// <summary>
 public static IEnumerable <ICompositeKey> GetPrimaryKeyColumns(this ISqlSelectStatement sqlStatement, string columnAlias, IQueryTable context)
 {
     return(sqlStatement.SupplimentPrimaryKeyColumns(
                sqlStatement.SelectColumns[columnAlias].PrimaryKey,
                context));
 }