• Webinars
  • Docs
  • Download
  • Blogs
  • Contact Us
Try Free
Show / Hide Table of Contents

Class QueryIndexedAttribute

Indicates that a dynamic query index be created on the field or property of the class.

Inheritance
System.Object
System.Attribute
QueryIndexedAttribute
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field)]
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.

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.

See Also

NonQueryIndexedAttribute
QueryIndexableAttribute
Back to top Copyright © 2017 Alachisoft