tags:

views:

29

answers:

1

can any body explain how during indexing i can use copyfield or dynamicfield or multivalued field functionality usin solrnet

+1  A: 

Map multiValued fields to ICollection<T> properties:

[SolrField("features")]
public ICollection<string> Features {get;set;}

I just updated the docs about mapping dynamicFields.

Mauricio Scheffer
can we also use copyfield
Ahsan Iqbal
@Ahsan: yes, you can. There's nothing special about copyfields, you can fetch them just like any other field.
Mauricio Scheffer
thanx for ur responses
Ahsan Iqbal