Class SearchQuery
Provides parameters for a query that selects entities of particular type from the registry.
Inheritance
System.Object
SearchQuery
Implements
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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 |
---|---|
System.String |
FolderId
Gets or sets the folder identifier where search should start.
Declaration
public int? FolderId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Id
Gets or sets the searching entity database identifier.
Declaration
public int? Id { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |
Key
Gets or sets the searching entity unique identifier.
Declaration
public Guid? Key { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Guid> |
Name
Gets or sets the searching entity friendly name that may include wildcards.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
Validate()
Evaluates the state of this object.
Declaration
public virtual bool Validate()
Returns
Type | Description |
---|---|
System.Boolean | True if state is valid; otherwise, false. |