Although SSMS2012 execution plan does show me all the seek predicates of a non-clustered index seek operation, it does not show any other predicates:
However, if I save the execution plan as XML file, I can see other predicates:
<SeekPreidcates>
...
</SeekPredicates>
<Predicate>
<!-- some ScalarOperator elements, reflecting the WHERE clauses which are not directly hit by the index -->
</Predicate>
Is this a bug? Does anybody know why SSMS is hiding them?