This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
We are excited to announce the very first release of the Microsoft Fabric .NET SDK! This SDK version marks a significant milestone in providing a powerful and flexible platform for building applications that interact with Microsoft Fabric service.
We are introducing the core features of the Microsoft Fabric .NET SDK and provide an example of how to get started.
The Microsoft Fabric .NET SDK is designed to make it easier for developers to build applications that leverage the Microsoft Fabric service.
With this SDK, you can seamlessly integrate your applications with Microsoft Fabric, enabling you to create robust and scalable solutions.
Key features of the Microsoft Fabric .NET SDK include:
Getting Started with the Fabric .NET SDK
FabricClient class handles building requests, sending them to the Microsoft Fabric API, and processing the responses. To create a new instance of this class, you need to provide an instance of TokenCredential or the string representation of its underlying Microsoft Entra access token.Once you have completed authentication and have a FabricClient, you can begin to make calls to the service.
For example, to get a list of workspaces using Microsoft.Fabric.Api;
using Microsoft.Fabric.Api;// Get the list of workspaces using the client var workspaces = fabricClient.Core.Workspaces.ListWorkspaces().ToList(); Console.WriteLine("Number of workspaces: " + workspaces.Count); foreach (var workspace in workspaces) { Console.WriteLine($"Workspace: {workspace.DisplayName}, Capacity ID: {workspace.CapacityId}"); }
Explore our detailed documentation to learn about SDK capabilities, API endpoints, and best practices for integration - Microsoft Fabric REST API references - Microsoft Fabric REST APIs | Microsoft Learn
We are committed to supporting developers every step of the way. Join our community forums, where you can connect with fellow developers, ask questions, and share insights Home - Microsoft Fabric Community.
Our dedicated support team is also available to assist with any technical inquiries or issues fabricnuget@microsoft.com
Stay tuned for future updates and enhancements to our Fabric .NET SDK. We are continuously improving our tools to meet the evolving needs of developers and ensure seamless integration experiences.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.