views:

17

answers:

1

I have an entity with many-to-one mapping. (Product 1-* Regions, unidirectional association)

What is the best way to store index of such relation?

So it can be easily used to filter search query .

A: 

Have you looked at @IndexedEmbedded?

Hardy