Created
October 26, 2009 16:02
-
-
Save jcbozonier/218754 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return (from table in theTable | |
| where table.IndexType == Indices.AttainedAge | |
| select new AggregatedTable(Enumerable.Range(0, theTable[0].LayerCount).Select(layerIndex => new OneDimensionalLayerExportAdapter(table, layerIndex)).ToArray()) | |
| into aggregatedTable select new[] { aggregatedTable }).Cast<IEnumerable<IExportAdapter>>().ToList(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment