I am not sure what are the parameters Index.Tokenized and Store actually meam, and how the value affect the index result? What is the difference between 2 properties below?
class A{
[Field(Index.Tokenized, Store = Store.Yes)]
public virtual string P1 {
get;
set;
}
[Field]
public virtual string P2 {
get;
set;
}
}
Thanks
Hardy