Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ogaudefroy/microsoft.analysisservices.adomdclient.abstractions
Set of abstraction classes for AdomdClient
https://github.com/ogaudefroy/microsoft.analysisservices.adomdclient.abstractions
mdx sql-server ssas
Last synced: 26 days ago
JSON representation
Set of abstraction classes for AdomdClient
- Host: GitHub
- URL: https://github.com/ogaudefroy/microsoft.analysisservices.adomdclient.abstractions
- Owner: ogaudefroy
- License: mit
- Created: 2015-06-24T16:54:47.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-25T21:03:29.000Z (almost 9 years ago)
- Last Synced: 2024-12-15T04:46:34.762Z (about 2 months ago)
- Topics: mdx, sql-server, ssas
- Language: C#
- Size: 20.5 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Microsoft.AnalysisServices.AdomdClient.Abstractions
Set of abstraction classes for Microsoft.AnalysisServices.AdomdClient to support substitution.Available interfaces:
- IAdomdConnection: extracted from AdomdConnection, can be retrieved from a regular AdomdConnection with AdomdConnectionWrapper
- IAdomdCommand: extracted from AdomdCommand, can be retrieved from a regular AdomdCommand with AdomdCommandWrapper or with CreateCommand on a IAdomdConnection
Code documentation has been synched with MSDN documentation.AdomdClient version supported is 12.0
Usage:
IAdomdConnection connection = new AdomdConnectionWrapper(new AdomdConnection());
IAdomdCommand command = connection.CreateCommand();
IAdomdCommand newCommand = new AdomdCommandWrapper(new AdomdCommand());NuGet Package available here: https://www.nuget.org/packages/Microsoft.AnalysisServices.AdomdClient.Abstractions/
[![NuGet version](https://badge.fury.io/nu/Microsoft.AnalysisServices.AdomdClient.Abstractions.svg)](https://badge.fury.io/nu/Microsoft.AnalysisServices.AdomdClient.Abstractions)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/ogaudefroy/Microsoft.AnalysisServices.AdomdClient.Abstractions/master/LICENSE)