Solr Schemaless Mode creating fields as MultiValued
问题 I'm using Solr 6.1 in Schemaless Mode. After creating a collection and indexing a sample data the fields created were all set to have MultiValued = true, except for unique id. The problem is when querying this data using SolrNet it wouldn't map the result to the model correctly. The queried results is returned as an array and require all my properties in the model to be updated to ICollection type. Is there anyway we can set these field to MultiValued = false when indexing the sample data? An