Class SearchQuery
Provides parameters for a query that selects entities of particular type from the registry.
Inheritance
SearchQuery
Implements
Inherited Members
Namespace: Nevatech.Vsb.Repository.Entities.Search
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public class SearchQuery : IValidator
Constructors
SearchQuery()
Declaration
public SearchQuery()
Properties
ErrorMessage
Gets the message indicating the errors found during validation process.
Declaration
public string ErrorMessage { get; protected set; }
Property Value
Type | Description |
---|---|
String |
FolderId
Gets or sets the folder identifier where search should start.
Declaration
public int? FolderId { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
Id
Gets or sets the searching entity database identifier.
Declaration
public int? Id { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Int32> |
Key
Gets or sets the searching entity unique identifier.
Declaration
public Guid? Key { get; set; }
Property Value
Type | Description |
---|---|
Nullable<Guid> |
Name
Gets or sets the searching entity friendly name that may include wildcards.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
String |
Methods
Validate()
Evaluates the state of this object.
Declaration
public virtual bool Validate()
Returns
Type | Description |
---|---|
Boolean | True if state is valid; otherwise, false. |