I am trying to implement a multi dimensional data cube in c#. Could somebody point in the direction of resources that would serve as a starting point. I am primarily interested in data structures needed to implement the cube.
Asked
Active
Viewed 2,301 times
0
-
Using Analysis Services? – Farshid Zaker Jun 07 '11 at 16:40
-
I am trying to create a custom analytics engine, analysis services wouldn't suit my needs. – Amrit Jun 08 '11 at 06:04
-
What kind of query language do you want to use once you've built your multi-dimensional engine ? – Marc Polizzi Jun 23 '11 at 13:20
1 Answers
1
I'm not sure if this is helpful, but there is a sourceforge project http://mondrian.pentaho.com/. There is a community edition which is open source, so you may be able to get some ideas on the underlying data structures even though it is not a c# implementation.
There is also a few useful references for MDX at this stackoverflow post