Vilen
Vilen
Resolved with .NotAnalyzed() but this looks not intuitive
Now, more problems, the same query finds no documents for the specified dates there are many post about this on SO http://stackoverflow.com/questions/5495645/indexing-and-searching-date-in-lucene my parsed query looks like this: ``` +(+(+StartDate:[2015-01-01T00:00:00...
Finally got it working with .AsNumeric()
``` protected internal virtual IFieldMapper ToFieldMapper() { ReflectionFieldMapper inner = this.ToFieldMapperInternal(); Type collectionType; if (FieldMappingInfoBuilder.IsCollection(this.propInfo.PropertyType, out collectionType)) return (IFieldMapper) new CollectionReflectionFieldMapper(inner, collectionType); return (IFieldMapper) inner; } ``` This thing actually...
Moreover, there is not way I can ignore this property :( I've tried `map.Property(p => p.Photos).NotStored().NotIndexed();` but session still fails with: ``` System.NotSupportedException occurred HResult=-2146233067 Message=Property Photos of type System.String[]...
Here is the root cause: https://github.com/TypeStrong/ts-loader/issues/331
Are there any plans on supporting this feature?
@d668 ```xml $(MSBuildThisFileDirectory)web.config $(MSBuildThisFileDirectory)web.$(Configuration).config $(PublishDir)web.config @(AppConfigWithTargetPath) $(MSBuildThisFileDirectory)App.$(Configuration).config @(AppConfigWithTargetPath) $(OutDir)Nlog.config $(MSBuildThisFileDirectory)Nlog.$(Configuration).config $(OutDir)Nlog.config ```
@d668 try and tell us. I'm not the author nor obligated to help you.
@tillig Thanks for explanation and decomposition. My current solution conflicts with the components that are actually registered with Autofac api since I cannot make a proxy for proxy. At the...