Skip to content
| Marketplace
Sign in
Visual Studio>Tools>AdaptiveLINQ for VisualStudio 2012
AdaptiveLINQ for VisualStudio 2012

AdaptiveLINQ for VisualStudio 2012

nlips

|
598 installs
| (0) | Free
AdaptiveLINQ is the only one solution to expose analysis query by OData protocol. And it doesn't need SQL Server Analysis Services or any other expensive OLAP technology.
Download

More information : www.adaptivelinq.com

Build your own analysis query engine

The .QueryByCube() extension method provided by AdaptiveLINQ will allow you to build analysis query as easily as any other LINQ method.

For example, the query sales per customer will be written as following:

myDataSet.QueryByCube(mySalesCube).Select(item => new {    Customer = item.Customer,    Sales = item.TotalSales});

The query sales per customer and product category will be written as following:

myDataSet.QueryByCube(mySalesCube).Select(item => new {    Customer = item.Customer,    Category = item.ProductCategory    Sales = item.TotalSales});

Expose analysis query as OData feed

Combining AdaptiveLINQ with Microsoft WCF Data Services orASP.Net WebAPI, you will be able to expose your data as queryable over HTTP.

Any OData client can query sales per customer using this simple HTTP request:

http://mydomain/myService.svc/Sales?$select=Customer,Sales

And sales per customer and product category will be written:

http://mydomain/myService.svc/Sales?$select=Customer,Category,Sales

Now you can create dashboard on any client technology implementing OData!

Use a high level designer to edit your cube definition


  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft