Returns whether an object exists for the specified distinct value in the collection.

Namespace: DatabaseObjects
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
public bool ObjectExistsByDistinctValue(
	IDatabaseObjects objCollection,
	Object objDistinctValue
)
Visual Basic
Public Function ObjectExistsByDistinctValue ( _
	objCollection As IDatabaseObjects, _
	objDistinctValue As Object _
) As Boolean
Visual C++
public:
bool ObjectExistsByDistinctValue(
	IDatabaseObjects^ objCollection, 
	Object^ objDistinctValue
)

Parameters

objCollection
Type: DatabaseObjects..::..IDatabaseObjects
The collection that is searched for the distinct value.
objDistinctValue
Type: System..::..Object
The value to search for in the collection. This is the value of the field defined by the collection's IDatabaseObjects.DistinctFieldName function.

Return Value

[Missing <returns> documentation for "M:DatabaseObjects.Database.ObjectExistsByDistinctValue(DatabaseObjects.IDatabaseObjects,System.Object)"]

See Also