Class NonQueryIndexedAttribute
Indicates that a field or property of a query indexable class should not be indexed.
Inheritance
System.Object
NonQueryIndexedAttribute
Namespace:
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public class NonQueryIndexedAttribute : Attribute
Remarks
Usage:
public class Product {
...
[NonQueryIndexed]
public string ProductName;
[NonQueryIndexed]
public int UnitPrice { get; set; }
[NonQueryIndexed]
private int quantity;
[NonQueryIndexed]
private int UnitsAvailable { get; set; }
...
Constructors
Name | Description |
---|---|
NonQueryIndexedAttribute() | Mark class field or property not to be indexed with NCache. |