See also:
NTier Windows Forms Framework Home
NTier Framework API reference

Find all entities that have the specified URI in a property's value.

Namespace: NTier.Model.Entity
Assembly: NTier.Model.Entity (in NTier.Model.Entity.dll) Version: 1.0.0.0

Syntax

C#
public EntityClassCollection FindEntitiesInUri(
	EntityProperty<string> uriProperty,
	string uri
)
Visual Basic
Public Function FindEntitiesInUri ( 
	uriProperty As EntityProperty(Of String),
	uri As String
) As EntityClassCollection
Visual C++
public:
EntityClassCollection^ FindEntitiesInUri(
	EntityProperty<String^>^ uriProperty, 
	String^ uri
)

Parameters

uriProperty
Type: EntityProperty<(Of <(<'String>)>)>
The property on EntityClass that has the uri.
uri
Type: System..::..String
If null, all entities are returned.

Return Value

Type: EntityClassCollection

See Also