inQuiry 0.2.0
dotnet add package inQuiry --version 0.2.0
NuGet\Install-Package inQuiry -Version 0.2.0
<PackageReference Include="inQuiry" Version="0.2.0" />
paket add inQuiry --version 0.2.0
#r "nuget: inQuiry, 0.2.0"
// Install inQuiry as a Cake Addin #addin nuget:?package=inQuiry&version=0.2.0 // Install inQuiry as a Cake Tool #tool nuget:?package=inQuiry&version=0.2.0
inQuiry is an F# type provider for inRiver PIM. The purpose is to provide a strongly typed alternative to the Remoting API that requires less coding, ease of use and security. This is done by generating types in compile time that will supply most of the boilerplate coding needed for the Remoting API.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
-
- NewtonSoft.Json (>= 8.0.3 && < 8.1.0)
- System.ValueTuple (>= 4.3.0 && < 4.4.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
The purpose of this release is to show that it is possible to update fields
on an entity. In order to support this, all properties on entity objects has
been done Optional, because each field type in inRiver supports being set
or unset. This means for a boolean, it can be true, false and not set.
We've also added functionality to get single entities from inRiver. You can
get an entity by its internal id `pim.Product.get 42` or you can get it by
any unique property set on the entity. `pim.Item.getByNumber "A001"`.
Changes made to an entity can be saved back to inRiver and this is done with
the same function as you use to create the entity `pim.Activity.save activity`.