Closed dittodhole closed 11 years ago
A FieldAttribute does not have a bool property Store, rather a StoreMode property Store, so:
FieldAttribute
bool
Store
StoreMode
Store = true
should be
Store = StoreMode.Yes
Also, there is no PorterStemAnalyzer-class in the bundle, but a KeywordAnalyzer-class and StandardAnalyzer-class.
PorterStemAnalyzer
KeywordAnalyzer
StandardAnalyzer
And, you should include the implementation of VersionConverter-class!
VersionConverter
I've moved sample code into cs files so they will stay up to date now. Fixed in cdbc4bccb83701a828a8dd2bdaa7f3ade8c32a5a.
A
FieldAttribute
does not have abool
propertyStore
, rather aStoreMode
propertyStore
, so:should be
Also, there is no
PorterStemAnalyzer
-class in the bundle, but aKeywordAnalyzer
-class andStandardAnalyzer
-class.And, you should include the implementation of
VersionConverter
-class!