Class QueryIndexedAttribute
Indicates that a dynamic query index can be created on the field or a property of the class.
Inheritance
System.Object
System.Attribute
QueryIndexedAttribute
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public class QueryIndexedAttribute : Attribute, _Attribute
Remarks
You can attribute your class to have a custom identification name. The name that is specified is used as the identification, otherwise the property name will be used as the identification.
Examples
The following example demonstrates how you can create query index on the field or property of the class.
public class Product {
...
[QueryIndexed]
// OR [QueryIndexed("IndexName")]
public string ProductName;
[QueryIndexed]
// OR [QueryIndexed("IndexName")]
public int UnitPrice { get; set; }
[QueryIndexed]
// OR [QueryIndexed("IndexName")]
private int quantity;
[QueryIndexed]
// OR [QueryIndexed("IndexName")]
private int UnitsAvailable { get; set; }
...
Constructors
Name | Description |
---|---|
QueryIndexedAttribute() | Mark class, field, or property to be indexed with NCache. |
QueryIndexedAttribute(String) | Mark class, field, or property to be indexed with NCache. |