Class QueryIndexedAttribute
Indicates that a dynamic query index be created on the field or property of the class.
Inheritance
Namespace:
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public class QueryIndexedAttribute : 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.
Usage:
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. |