chriseldredge / Lucene.Net.Linq

LINQ provider to run native queries on a Lucene.Net index
Other
151 stars 66 forks source link

Collection fields #58

Closed mattjohnsonpint closed 9 years ago

mattjohnsonpint commented 10 years ago

It would appear I can only map a collection property as a field if it is declared as IEnumerable<T>. It should really support any type that inherits from IEnumerable<T>, including lists, arrays, IList<T>, etc...

chriseldredge commented 10 years ago

There's a TODO here that would need some attention.

There may be other places where changes are required.

chriseldredge commented 10 years ago

See also #32.

mattjohnsonpint commented 10 years ago

Thanks. If I get some time, I'll see if I can tackle that todo and send a PR.