In Azure Search - can I specify WhitespaceAnalyzer from the .NET SDK? -


i have same need fellow: azure search analyzer

i want store series of space-delimited tags in "tags", each of may contain limited punctuation chars. formulating post rest api way go?

i suppose encode strings last resort.

        var definition = new index()         {             name = indexname,             fields = new[]             {                 new field("id", datatype.string)                            { iskey = true },                 new field("objecttype", datatype.string)                    { issearchable = false, isfilterable = true, isretrievable = true },                 new field("referenceid", datatype.int32)                    { issearchable = false, isfilterable = false, isretrievable = true },                 new field("name", datatype.string)                          { issearchable = false, isfilterable = false, isretrievable = true },                 new field("tags", datatype.collection(datatype.string))     { issearchable = true, isfilterable = false, issortable = false, isfacetable = true, isretrievable = true },             },         }; 

custom analyzers not yet supported sdk, , using rest api way use them now. we'll add support customer analyzers sdk when feature out of preview (and possibly earlier).


Comments

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

r - Update two sets of radiobuttons reactively - shiny -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -