Search Results for

    Show / Hide Table of Contents

    Interface IDataSourceResult

    A complex type definition for holding the result of searching across the entire system for third party ids

    Can be executed from GetMatchingDataSources(Nullable<Guid>, String, Boolean, Nullable<Guid>, Nullable<Guid>, String)

    Namespace: LemonEdge.API.ComplexTypes
    Assembly: API.dll
    Syntax
    [ComplexDefinition(ImageType.NewLink, "Data Source Search", HelpURL = "data-sources")]
    public interface IDataSourceResult

    Properties

    DataSourceTypeID

    The id of the datasource type that this match was found for

    Declaration
    Guid DataSourceTypeID { get; set; }
    Property Value
    Type Description
    System.Guid

    DataSourceTypeID_Label

    The name of the data source type that this match was found for

    Declaration
    [EntityProperty(SQLType.NVarChar, false, FriendlyLabel = "Type")]
    string DataSourceTypeID_Label { get; set; }
    Property Value
    Type Description
    System.String

    EntityID

    The unique of the actual item that has this associated dat source id

    Declaration
    [Key]
    [Column(Order = 1)]
    Guid EntityID { get; set; }
    Property Value
    Type Description
    System.Guid

    EntityTypeID

    The unique global id of the type of entity that has this associated data source id

    Declaration
    [Key]
    [Column(Order = 0)]
    Guid EntityTypeID { get; set; }
    Property Value
    Type Description
    System.Guid

    LastUpdated

    The date/time stamp of the last modification of this item

    Declaration
    DateTimeOffset LastUpdated { get; set; }
    Property Value
    Type Description
    System.DateTimeOffset

    ModifiedByUserID

    The id of the user that last modified this item

    Declaration
    Guid ModifiedByUserID { get; set; }
    Property Value
    Type Description
    System.Guid

    ModifiedByUserID_Label

    The name of the user that last modified this item

    Declaration
    [EntityProperty(SQLType.NVarChar, false, FriendlyLabel = "Modified By")]
    string ModifiedByUserID_Label { get; set; }
    Property Value
    Type Description
    System.String

    SourceID

    The matching third party id associated with this item

    Declaration
    [Key]
    [Column(Order = 2)]
    string SourceID { get; set; }
    Property Value
    Type Description
    System.String

    Extension Methods

    MiscExtensions.SetIfNotEqual<T, P>(T, Expression<Func<T, P>>, P)
    ReflectionExtensions.ClearEventInvocations(Object, String)
    StringExtensions.ToCSVFormatString(Object, Type)
    SQLExtensions.ToSQLValue(Object, Boolean)
    In This Article
    Back to top © LemonTree Software Ltd. All rights reserved.