![]() |
VOOZH | about |
Use TabuLynx.Query.Executor instead
dotnet add package TabuLynx.Core.AdomdClient --version 0.6.0
NuGet\Install-Package TabuLynx.Core.AdomdClient -Version 0.6.0
<PackageReference Include="TabuLynx.Core.AdomdClient" Version="0.6.0" />
<PackageVersion Include="TabuLynx.Core.AdomdClient" Version="0.6.0" />Directory.Packages.props
<PackageReference Include="TabuLynx.Core.AdomdClient" />Project file
paket add TabuLynx.Core.AdomdClient --version 0.6.0
#r "nuget: TabuLynx.Core.AdomdClient, 0.6.0"
#:package TabuLynx.Core.AdomdClient@0.6.0
#addin nuget:?package=TabuLynx.Core.AdomdClient&version=0.6.0Install as a Cake Addin
#tool nuget:?package=TabuLynx.Core.AdomdClient&version=0.6.0Install as a Cake Tool
A library that provides integration with Microsoft Analysis Services through ADOMD.NET, enabling seamless execution of DAX queries and interaction with Power BI data models.
"TabuLynx": {
"ConnectionString": "Provider=MSOLAP;Data Source=localhost:{port};"
}
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using TabuLynx.Core.Hosting;
using TabuLynx.Core.AdomdClient;
using TabuLynx.Query.Dax;
var host = TabuLynxHost.CreateDefaultBuilder(args)
.ConfigureAppConfiguration(config =>
{
config.AddJsonFile("appsettings.json", optional: false, reloadOnChange: true);
})
.ConfigureServices((context, services) =>
{
services.AddAdomdDaxQueryExecutorForLocalPowerBI();
})
.Build();
// Resolve the DAX query client
var daxQueryExecutor = host.Services.GetRequiredService<IDaxQueryExecutor>();
var result = await daxQueryExecutor.ExecuteQueryAsync("EVALUATE ROW(\"Hello\", 1)");
Console.WriteLine(result);
using TabuLynx.Core.Configuration;
using TabuLynx.Query.Dax;
using TabuLynx.Core.AdomdClient;
var builder = WebApplication.CreateBuilder(args);
builder.Configuration.AddJsonFile("appsettings.json");
builder.Services.Configure<TabuLynxOptions>(builder.Configuration.GetSection("TabuLynx"));
builder.Services.AddAdomdDaxQueryExecutorForLocalPowerBI();
var app = builder.Build();
...
var daxQueryExecutor = app.Services.GetRequiredService<IDaxQueryExecutor>();
var result = await daxQueryExecutor.ExecuteQueryAsync("EVALUATE ROW(\"Hello\", 1)");
Console.WriteLine(result);
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 0.6.0 | 435 | 6/24/2025 | 0.6.0 is deprecated because it is no longer maintained. |
| 0.5.0 | 413 | 6/23/2025 | 0.5.0 is deprecated because it is no longer maintained. |
| 0.4.0 | 412 | 6/15/2025 | 0.4.0 is deprecated because it is no longer maintained. |
| 0.3.0 | 306 | 6/7/2025 | 0.3.0 is deprecated because it is no longer maintained. |
| 0.2.0 | 477 | 5/12/2025 | 0.2.0 is deprecated because it is no longer maintained. |
| 0.1.0 | 380 | 5/8/2025 | 0.1.0 is deprecated because it is no longer maintained. |