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
QueryIndexedAttribute()
Mark class, field, or property to be indexed with NCache.
Declaration
public QueryIndexedAttribute()
QueryIndexedAttribute(String)
Mark class, field, or property to be indexed with NCache.
Declaration
public QueryIndexedAttribute(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value |