@dvelop-sdk
    Preparing search index...

    Interface UpdateBoEntityParams<E>

    Parameters for the updateBoEntity-function.

    interface UpdateBoEntityParams<E = any> {
        entityChange: Partial<E>;
        keyPropertyType: "string" | "number" | "guid";
        keyPropertyValue: string | number;
        modelName: string;
        pluralEntityName: string;
    }

    Type Parameters

    • E = any

      Type for Entity. Defaults to any.

    Index

    Properties

    entityChange: Partial<E>

    Partial of E. Given properties will be updated.

    keyPropertyType: "string" | "number" | "guid"

    Type of the key property

    keyPropertyValue: string | number

    Key-property of the entity to be updated

    modelName: string

    Name of the model

    pluralEntityName: string

    EntityName in plural (Singular name won't work)