Scheduler for WinForms | ComponentOne
C1.Win.C1Schedule.4.5.2 Assembly / C1.C1Schedule Namespace / BasePersistableObject Class / Key Property

In This Topic
    Key Property (BasePersistableObject)
    In This Topic
    Gets an array of objects representing the key of the BasePersistableObject.
    Syntax
    'Declaration
     
    Public ReadOnly Property Key As System.Object()
    public System.object[] Key {get;}
    Remarks

    In the current version, the array always contains a single object. It can be either an System.Int32 or System.Guid value depending on which one is actually used for binding this data. For example, if you bind AppointmentStorage to the database and set IndexMapping, this property will return an System.Int32 value. If you set IdMapping, this property will return a System.Guid value.

    In future versions working with compound keys might be implemented. In such case this property will return array of objects composing the key.

    See Also