tags:

views:

26

answers:

0

In ADO I can create a DataSet without actually querying a database : I can instantiate a DataSet and fillit with my own data. I would like to be able to do the same with a multidimensional object, so that anything that can query an OLAP cube (eg Excel) can consume the data my application produces, without having to populate a database. However all Adomd objects like CellSet, CubeDefs etc seem to be sealed, or have no default constructors or cannot be created unless executing and AdomdCommand.

Is it possible to instantiate my own Adomd objects?