/// <summary> /// Gets the rows of the table given the column. /// </summary> /// <param name="column"></param> /// <returns></returns> public TRow[] GetRows(TColumn column) { return(lookup.Where(a => a.Value.ContainsKey(column)).Select(a => a.Key).ToArray()); }