PowerPlatformConnectors 1.0.0
dotnet add package PowerPlatformConnectors --version 1.0.0
NuGet\Install-Package PowerPlatformConnectors -Version 1.0.0
<PackageReference Include="PowerPlatformConnectors" Version="1.0.0" />
paket add PowerPlatformConnectors --version 1.0.0
#r "nuget: PowerPlatformConnectors, 1.0.0"
// Install PowerPlatformConnectors as a Cake Addin #addin nuget:?package=PowerPlatformConnectors&version=1.0.0 // Install PowerPlatformConnectors as a Cake Tool #tool nuget:?package=PowerPlatformConnectors&version=1.0.0
##PowerPlatformHelpers
PowerPlatformHelpers is a NuGet package that provides a set of helper classes and extensions to make it easier to work with the Power Platform SDK in C# projects. The package includes utility classes for common tasks like connecting to the Power Platform environment, querying records from the Power Platform database, and executing CRUD (create, read, update, delete) operations on entities. It also includes extensions for the Entity class to simplify common tasks like setting and getting attribute values, as well as extensions for the IOrganizationService interface to provide additional functionality like bulk record retrieval and simplified error handling.
##Getting Started
To use the PowerPlatformHelpers package, you will need to add it as a dependency to your C# project. You can do this using either the NuGet Package Manager in Visual Studio, or by adding the package directly to your project file:
<PackageReference Include="PowerPlatformHelpers" Version="1.0.0" /> Once you have added the package, you can start using the helper classes and extensions in your code. For example, to connect to a Power Platform environment, you can use the
PowerPlatformConnectionManager class:
var connection = PowerPlatformConnectionManager.Connect("<your-connection-string>"); var orgService = connection.OrganizationService; Documentation For detailed documentation on how to use the classes and extensions provided by this package, please refer to the Wiki associated with this project.
##Contributing
If you would like to contribute to this project, please fork the repository and submit a pull request with your changes. All contributions are welcome, including bug fixes, new features, and documentation improvements.
##License
This project is licensed under the MIT License. See the LICENSE file for more information.
Product | Versions 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 was computed. 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. |
.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. |
-
.NETStandard 2.0
- Microsoft.CrmSdk.CoreAssemblies (>= 9.0.2.48)
- Microsoft.CrmSdk.XrmTooling.CoreAssembly (>= 9.1.1.27)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.0 | 205 | 3/31/2023 |
Version 1.0.0 Release Notes:
New Features:
Added PowerPlatformConnectionManager class to simplify the process of connecting to a Power Platform environment.
Added EntityExtensions class to provide helper methods for working with the Entity class.
Added OrganizationServiceExtensions class to provide additional functionality for the IOrganizationService interface.
Added QueryExpressionBuilder class to simplify the process of building complex queries against the Power Platform database.
Added BulkRecordRetriever class to provide a more efficient way of retrieving large numbers of records from the Power Platform database.
Improvements:
Optimized performance for common operations like entity creation and attribute retrieval.
Improved error handling and logging for common exceptions and error conditions.
Streamlined code and removed redundant or unnecessary functionality.
Bug Fixes:
Fixed issue with attribute values not being properly set when creating or updating entities.
Fixed issue with some IOrganizationService methods not properly handling large result sets.
Fixed issue with query expressions not properly handling null or empty values.