Yagasoft.Libraries.EnhancedOrgService.NetCore 1.1.1

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Yagasoft.Libraries.EnhancedOrgService.NetCore --version 1.1.1                
NuGet\Install-Package Yagasoft.Libraries.EnhancedOrgService.NetCore -Version 1.1.1                
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="Yagasoft.Libraries.EnhancedOrgService.NetCore" Version="1.1.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Yagasoft.Libraries.EnhancedOrgService.NetCore --version 1.1.1                
#r "nuget: Yagasoft.Libraries.EnhancedOrgService.NetCore, 1.1.1"                
#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.
// Install Yagasoft.Libraries.EnhancedOrgService.NetCore as a Cake Addin
#addin nuget:?package=Yagasoft.Libraries.EnhancedOrgService.NetCore&version=1.1.1

// Install Yagasoft.Libraries.EnhancedOrgService.NetCore as a Cake Tool
#tool nuget:?package=Yagasoft.Libraries.EnhancedOrgService.NetCore&version=1.1.1                

DynamicsCrm-Libraries

Join the chat at https://gitter.im/yagasoft/DynamicsCrm-Libraries


A collection of libraries for common and extended operations in Dynamics CRM development that gives power to the developer and saves time.

Features

Common Library

Enhanced Organisation Service library

  • An extension to the out-of-the-box IOrganizationService
  • Automatic service pool handling (core feature)
  • Connection warmup to improve initialisation performance (optional)
  • Caching of operation results (optional)
  • Automatic retry of failed operations (optional)
  • Operation events and statistics
  • Load balancer algorithms for multi-node environments
  • In-memory transactions
  • Deferred operations to run in a transaction
    • Accumulate operations from across the application to be executed in one go
  • Planned execution to be sent to CRM for execution
    • Return values from mid-execution operations can be used in later operations within the same transaction

Guide

Add the following to the .csproj file to be able to compile.

  <PropertyGroup>
    <LangVersion>latest</LangVersion>
  </PropertyGroup>

Common library (either packages)

Enhanced Organisation Service library

Changes

  • Check Releases page for the later changes
v1.1.1 (2015-05-15)
  • Initial release

Copyright © by Ahmed Elsawalhy (Yagasoft) -- GPL v3 Licence

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.4.15 85 10/29/2024
1.4.14 76 10/29/2024
1.4.13 69 10/29/2024
1.4.1 82 10/26/2024
1.3.4 78 10/24/2024
1.2.1 78 10/23/2024
1.1.1 88 10/22/2024

* 1.1.1
     Added: support for .NET 6.0
     * 6.2.5
     Fixed: RetrieveMultiple error
     * 6.2.2
     Fixed: service pool not respecting pool limit
     * 6.2.1
     Changed: operations history is disabled by default
     * 6.1.8
     Fixed: random null error
     * 6.1.7
     Fixed: ExecuteMultiple not returning a response when requested
     * 6.1.6
     Added: RetrieveMultiple FetchXML convenience method
     Fixed: race condition
     * 6.1.4
     Improved: refactor
     * 6.1.3
     Fixed: NuGet package requirements
     * 6.1.1
     Added: default factory and pool implementations for easier connection kick off
     Improved: reworked the implicit pooling implementation for easier usage and more powerful features
     Improved: reworked the self-balancing implementation for better code and maintenance
     Improved: made the routing service more generic
     Improved: reworked the interfaces to make more sense and for better maintenance (it breaks backward compatibility but the library hasn't been downloaded yet)
     Improved: helpers for easier usage
     * 5.3.3
     Added: proper warm up logic for all pooling levels
     Fixed: internal pool initialisation
     Fixed: timeout configuration
     Fixed: disposal state
     * 5.3.2
     Added: option to control service internal pool warm up
     Fixed: RetrieveMultiple helper not respecting the limit given
     Fixed: warm up infinite loop on error
     * 5.2.1
     Added: connection timeout parameter
     * 5.1.4
     Fixed: clear operation events when operation has finished to prevent memory leak
     Fixed: made parameters in generic retrieve optional
     Fixed: memory leaks
     * 5.1.3
     Fixed: state validation for self-enqueuing/balancing service
     Fixed: threading issues
     * 5.1.2
     Added: node load balancer
     Added: self-balancing service
     Added: auto-retry mechanism
     Added: auto-retry failure events
     Added: operation-specific options
     Added: operation status events
     Added: operation statistics on all levels: service, pool, and factory
     Added: operation history to the service
     Added: deferred support for SDK methods (in addition to the custom ones that return a 'token')
     Added: custom cache factory parameter
     Added: exposed AutoSetMaxPerformanceParams through the pool 'helper' class
     Improved: optimised the interfaces and refactored
     Improved: internal calls by switching them to pass through service features
     Changed: tighten the service validity check to avoid internal operations triggering after Dispose; user must wait for all operations to finish
     Fixed: params default values
     Removed: async operations (use Task.Run or similar methods from .NET instead)
     * 4.1.1
     Added: CacheItemPriority to cache settings
     Improved: pool helpers
     Improved: generics and refactored
     Fixed: absolute expiration returns an absolute fixed date in the cache factory, now returns an absolute date from the time of call to the factory's 'get'
     Fixed: connection errors causing deadlocks
     * 3.1.1
     Added: execution planning, where a plan is executed in CRM itself for performance and atomicity reasons
     * 2.5.1
     Added: use CrmServiceClient's Clone method internally for faster pooling of connections if available (SDK limits it for CRM Online only for now)
     Added: DotNet optimisation options
     * 2.1.1
     Changed: moved to a new namespace
     * 1.3.4
     Added: project URL
     * 1.1.1
     Initial release