Returns the database fields for an object from the collection using a distinct value
(see IDatabaseObjects.DistinctFieldName). If the collection has implemented the
IDatabaseObjects.Subset function then the objDistinctValue need only be unique
within the collection's subset, not the entire database table.
This is typically used to interogate the database fields before loading the
object with a call to ObjectFromFieldValues.
This function is rarely used and generally the Object function suffices.
Namespace: DatabaseObjectsAssembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0
Syntax
Visual Basic |
---|
Protected Function ObjectFieldValues ( _
objDistinctValue As Object _
) As SQLFieldValues |
Parameters
- objDistinctValue
- Type: System..::..Object
The value that uniquely identifies the object within the collection. This is the value
of the field defined by the collection's IDatabaseObjects.DistinctFieldName function.
Return Value
IDatabaseObject (DatabaseObjects.IDatabaseObject)
See Also