Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a relationship between a Supplier and a Features collection. A Supplier HasMany Features. If the Supplier is updated, I need the Features collection to be updated when a Supplier is updated because the Supplier is [IndexEmbedded] in the Feature class.

I cannot however place the [ContainedIn] attribute on the Features collection because not all features belong to a Supplier. Any ideas please?

share|improve this question

1 Answer

up vote 0 down vote accepted

Fixed it myself.

I added the containedin attribute to the Features collection and then did another separate query to retrieve all the features which did not belong to a supplier and then indexed them.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.