BiExcellence.OpenBi.Api.DataProvider 1.1.0-ci.19285

This is a prerelease version of BiExcellence.OpenBi.Api.DataProvider.
dotnet add package BiExcellence.OpenBi.Api.DataProvider --version 1.1.0-ci.19285
                    
NuGet\Install-Package BiExcellence.OpenBi.Api.DataProvider -Version 1.1.0-ci.19285
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BiExcellence.OpenBi.Api.DataProvider" Version="1.1.0-ci.19285" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="BiExcellence.OpenBi.Api.DataProvider" Version="1.1.0-ci.19285" />
                    
Directory.Packages.props
<PackageReference Include="BiExcellence.OpenBi.Api.DataProvider" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add BiExcellence.OpenBi.Api.DataProvider --version 1.1.0-ci.19285
                    
#r "nuget: BiExcellence.OpenBi.Api.DataProvider, 1.1.0-ci.19285"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package BiExcellence.OpenBi.Api.DataProvider@1.1.0-ci.19285
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=BiExcellence.OpenBi.Api.DataProvider&version=1.1.0-ci.19285&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=BiExcellence.OpenBi.Api.DataProvider&version=1.1.0-ci.19285&prerelease
                    
Install as a Cake Tool

BiExcellence.OpenBi.Api.DataProvider

Includes APIs related to get / create / delete connection templates and open / execute dataproviders in open bi Respository Servers.

Usage

Connection Templates

using BiExcellence.OpenBi.Api.Commands.ConnectionTemplates;
var dataProviderTypes = await session.GetDataProviderTypesAsync(cancellationToken);
var connectionTemplates = await session.GetConnectionTemplatesAsync(cancellationToken);

var newConnectionTemplate = new ConnectionTemplate(dataProviderTypes[0]);
newConnectionTemplate.Parameters[0].Value = "VALUE";
// or manually
var newConnectionTemplate = new ConnectionTemplate { Name = "New Name", Description = "New Description", DataProviderType = DataProviderTypes.CORE };
newConnectionTemplate.Parameters.Add(new ConnectionTemplateParameter("NAME", "VALUE"));

await session.CreateConnectionTemplateAsync(newConnectionTemplate, cancellationToken);

var connection = await session.ValidateConnectionAsync(newConnectionTemplate, cancellationToken);

await session.DeleteConnectionTemplateAsync(newConnectionTemplate, cancellationToken);

Data Providers

using BiExcellence.OpenBi.Api.Commands;
using BiExcellence.OpenBi.Api.Commands.DataProviders;
var dataProviderNodes = await connection.GetDataProvidersAsync(cancellationToken: cancellationToken);

var usedConnections = await dataProviderNodes[0].OpenAsync(newConnectionTemplate, cancellationToken);

await using (var dataProviderView = await usedConnections.GetDataProviderViewAsync(cancellationToken))
{
    dataProviderView.Executing += Executing;
    dataProviderView.Executed += Executed;

    var dataProviderDefinition = await dataProviderView.GetDataProviderDefinitionAsync(cancellationToken);

    var f4values = await dataProviderView.GetF4ValuesAsync(dataProviderView.DataProviderDefinition.Dimensions["COUNTRY"], cancellationToken);
    var f4values = await dataProviderView.GetF4ValuesAsync(dataProviderView.DataProviderDefinition.Variables["DATE"], cancellationToken);

    dataProviderView.DataProviderDefinition.Dimensions["COUNTRY"].Axis = DimensionAxis.Rows;
    dataProviderView.DataProviderDefinition.KeyFigures["COUNT"].IsHidden = true;
    dataProviderView.DataProviderDefinition.Variables["DATE"].Filters.Add(new Filter("2021-01-01", FilterOperator.Equal));

    var execute = await dataProviderView.ExecuteAsync(cancellationToken);

    var grid = await dataProviderView.GetGridDataAsync(cancellationToken: cancellationToken);
    var chart = await dataProviderView.GetChartDataAsync(cancellationToken: cancellationToken);
}

void Executing(object sender, EventArgs e) => Console.WriteLine("Before Execute");
void Executed(object sender, GridDefinitionEventArgs e) => Console.WriteLine("After Execute");
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on BiExcellence.OpenBi.Api.DataProvider:

Package Downloads
BiExcellence.OpenBi.Api.MasterData

open bi API Master Data

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.1.0-ci.19285 77 3/1/2026
1.1.0-ci.19263 282 2/25/2026
1.1.0-ci.19258 59 2/24/2026
1.1.0-ci.19257 56 2/24/2026
1.1.0-ci.19162 104 2/16/2026
1.1.0-ci.19038 132 2/4/2026
1.1.0-ci.18778 164 1/13/2026
1.1.0-ci.18730 70 1/7/2026
1.1.0-ci.18594 121 12/14/2025
1.1.0-ci.18300 539 11/12/2025
1.0.3-ci.18192 176 11/3/2025
1.0.3-ci.18169 153 10/28/2025
1.0.3-ci.17920 366 9/9/2025
1.0.3-ci.17855 211 8/29/2025
1.0.3-ci.17841 193 8/29/2025
1.0.3-ci.17839 191 8/29/2025
1.0.3-ci.17812 245 8/27/2025
1.0.3-ci.17809 223 8/26/2025
1.0.3-ci.17808 216 8/26/2025
1.0.3-ci.17722 144 8/18/2025
Loading failed

fix(OpenBiUsergroup): correct return type for GetUsergroupsBy*