FakeXrmEasy.Core.v9 3.5.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package FakeXrmEasy.Core.v9 --version 3.5.1
NuGet\Install-Package FakeXrmEasy.Core.v9 -Version 3.5.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="FakeXrmEasy.Core.v9" Version="3.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FakeXrmEasy.Core.v9 --version 3.5.1
#r "nuget: FakeXrmEasy.Core.v9, 3.5.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 FakeXrmEasy.Core.v9 as a Cake Addin
#addin nuget:?package=FakeXrmEasy.Core.v9&version=3.5.1

// Install FakeXrmEasy.Core.v9 as a Cake Tool
#tool nuget:?package=FakeXrmEasy.Core.v9&version=3.5.1

FakeXrmEasy is the open source test automation framework for .net core and the Power Platform. This is the core package containing a configurable middleware, crud operators, and query translation between FetchXml, QueryExpression, CRM LINQ, and QueryByAttribute.

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 (4)

Showing the top 4 NuGet packages that depend on FakeXrmEasy.Core.v9:

Package Downloads
FakeXrmEasy.Plugins.v9 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package contains helpers to aid in developing and testing of plugins as well as pipeline simulation features.

FakeXrmEasy.Messages.v9 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

This package contains implemented default fake messages.

FakeXrmEasy.v9 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

FakeXrmEasy is the open source test automation framework for .net core and the Power Platform / Dataverse. This is an include package.

FakeXrmEasy.CodeActivities.v9 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

FakeXrmEasy is the open source test automation framework for .net core and the Power Platform / Dataverse. This package contains helpers to unit test code activities.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.5.1 260 6/15/2024
3.4.2 15,741 2/14/2024
3.3.3 17,677 10/22/2023
3.3.1 54,642 3/21/2023
3.3.0 36,313 12/27/2022
3.2.0 14,182 9/7/2022
3.1.2 12,902 6/14/2022
3.1.1 6,216 5/30/2022
3.1.0 7,871 5/20/2022
3.0.2 8,441 3/15/2022
3.0.1-rc1.12 1,383 12/5/2021
3.0.1-rc1.11 150 12/2/2021
3.0.1-rc1.9 1,196 11/28/2021
3.0.1-rc1.6 1,907 11/23/2021
2.5.1 144 6/13/2024
2.5.0 140 6/10/2024
2.4.2 9,257 2/9/2024
2.4.1 192 2/7/2024
2.4.0 1,748 2/5/2024
2.3.3 13,642 10/15/2023
2.3.0 57,109 12/24/2022
2.2.0 13,956 9/7/2022
2.1.1 15,601 5/29/2022
2.1.0 5,604 3/21/2022
2.0.1-rc1.10 4,793 12/2/2021
2.0.1-rc1.8 1,139 11/28/2021
2.0.1-rc1.5 216 11/23/2021
2.0.1-rc1.4 138 11/23/2021

## [3.5.1]
### Changed
- Resolves exception when searching attribute type that contains an alias in query expressions with linked entities - https://github.com/DynamicsValue/fake-xrm-easy/issues/151
## [3.5.0]
### Added
- Added FileAttributeMetadata support to MetadataGenerator
- Added support for bulk operations: CreateMultipleRequest, UpdateMultipleRequest, UpsertMultipleRequest - https://github.com/DynamicsValue/fake-xrm-easy/issues/122
- Added new exception to make the initialization of entity records with attributes with a null entity reference more obvious (thanks Betim) - https://github.com/DynamicsValue/fake-xrm-easy/issues/107
- Add support for OptionSetValueCollection attributes when they are generated as an IEnumerable<TEnum> (using EBG or pac modelbuilder) - https://github.com/DynamicsValue/fake-xrm-easy/issues/140
- Added extended wildcard support for the Like operator (thanks Betim) - https://github.com/DynamicsValue/fake-xrm-easy/issues/139
### Changed
- Improves exception message when an early bound type was not generated - https://github.com/DynamicsValue/fake-xrm-easy/issues/145
- Resolves referencing EntityAlias or EntityName in conditions inside nested filters of a LinkedEntity (thanks Temmy) - https://github.com/DynamicsValue/fake-xrm-easy/issues/63
- Resolves Resolving entity references by Alternate Keys when EntityMetadata doesn't have any Keys. - https://github.com/DynamicsValue/fake-xrm-easy/issues/138
- Resolves an issue where a ConditionExpression with an In operator should to not take array of integers as an input, but instead separate values (thanks Ben and Betim) - https://github.com/DynamicsValue/fake-xrm-easy/issues/96
- Resolves filtering Money attributes by an integer value (thanks Ben and Betim) - https://github.com/DynamicsValue/fake-xrm-easy/issues/64
- Upgraded DataverseClient dependency to 1.1.22
## [3.4.2]
### Added
- Added link to docs in exceptions
- Added some logging in subscription usage for CI builds
## [3.4.1]
### Changed
- Should not read subscription usage while in a CI build
## [3.4.0]
## Added
- **Alpha**: Introduced subscription usage monitoring based on customer feedback
### Changed
- Set default build configuration in solution file to FAKE_XRM_EASY_9
- Remove ReleaseNotes from package description - https://github.com/DynamicsValue/fake-xrm-easy/issues/115
- build.ps1 improvements: do not build project twice (added --no-build) when running dotnet test, do not build again either when packing assemblies either: https://github.com/DynamicsValue/fake-xrm-easy/issues/119
- Update build scripts to use 'all' target frameworks by default - https://github.com/DynamicsValue/fake-xrm-easy/issues/126
- Update github actions to use new Sonar environment variables - https://github.com/DynamicsValue/fake-xrm-easy/issues/120
## [3.3.3]
### Added
- Introduced new user-defined exceptions to check whether an early-bound type is defined in multiple assemblies.
- New method to retrieve early bound types based on EntityTypeCode.
### Changed
-  Update namespaces in tests project for consistency
- Upgraded GitHub Actions to update Java major version to run SonarCloud analysis - https://github.com/DynamicsValue/fake-xrm-easy/issues/110
- Introduced new NewEntityRecord method to easily create instances of entity records based on the current use of early-bound or late-bound entities
- Resolves an issue with query evaluation and MultiOptionSets when using late bound entities or if type information is not present. - https://github.com/DynamicsValue/fake-xrm-easy/issues/66
- Update legacy CRM SDK 2011 dependency to use official MS package - https://github.com/DynamicsValue/fake-xrm-easy/issues/105
## [3.3.1]
### Changed
- Bump DataversClient nuget package to use net6.0 - https://github.com/DynamicsValue/fake-xrm-easy/issues/90
## [3.3.0]
### Changed
- Adding tests for MetadataGenerator - https://github.com/DynamicsValue/fake-xrm-easy/issues/77
- Moved GetContextFromSerialisedCompressedProfile method into the Plugins package and FakeXrmEasy.Plugins namespace
## [3.2.0]
### Changed
- Added extension methods to detect and execute generic CRUD requests (of type OrganizationRequest) - DynamicsValue/fake-xrm-easy#31
- Replaced references to PullRequestException by references to UnsupportedExceptionFactory to make it easier raising requests based on the license context
- **BREAKING**: In-Memory data dictionary that was defined as a public dictionary is now internal using a rewritten data structure to prepare for parallelization and concurrency. If you were accessing this property, please use the GetEntity or CreateQuery public methods in the IXrmFakedContext interface to query the state of the In-Memory database state instead. For any other use, always rely on the IOrganizationService* interfaces only. This breaking change will affect you only if you were accessing the 'Data' dictionary directly.
- Fix Sonar Quality Gate settings: DynamicsValue/fake-xrm-easy#28
## [3.1.2]
- Bump dataverse dependency to production ready version 1.0.1
## [3.1.1]
### Changed
- Limit FakeItEasy package dependency to v6.x versions - DynamicsValue/fake-xrm-easy#37
- Updated build script to also include the major version in the Title property of the generated .nuspec file - DynamicsValue/fake-xrm-easy#41
- Modified TopCount support in QueryByAttribute and QueryExpression, to not throw exception if PageInfo was set but empty: DynamicsValue/fake-xrm-easy#16
- Do not clear previous FakeMessageExecutors or GenericFakeMessageExecutors when adding new ones or when calling them multiple times: DynamicsValue/fake-xrm-easy#15
- Allow creating records with any statecode attribute, which will be overriden by the platform as Active - DynamicsValue/fake-xrm-easy#36
- Both GetEntityById and GetEntityById&lt;T&gt; now clone the entity record before returning it - DynamicsValue/fake-xrm-easy#27
## [3.1.0]
### Changed
- Added TopCount support in QueryByAttribute, and throw exception if both TopCount and PageInfo are set: DynamicsValue/fake-xrm-easy#16
- Removed .netcoreapp3.1 target framework in versions 2.x, it'll be supported from versions 3.x onwards. Bump
## [3.0.2]
### Changed
- Bump Dataverse dependency to 0.6.1 from 0.5.10 to solve DynamicsValue/fake-xrm-easy#20
- Also replaced Microsoft.Dynamics.Sdk.Messages dependency, as it has also been deprecated by MSFT, to Microsoft.PowerPlatform.Dataverse.Client.Dynamics 0.6.1 DynamicsValue/fake-xrm-easy#20
## [3.0.1-rc1] - Initial release