Say I have the following query

ICriteria query = session.CreateCriteria(typeof(T));

How can I find out the key field of T so that I can add an expression like so

query.Add(Expression.In(keyField, someListOfObjects.ToArray()));

Any ideas?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Use NH's meta data

var meta = factory.GetClassMetadata(typeof(T));

query.Add(Expression.In(meta.IdentifierPropertyName, someListOfObjects.ToArray()));
link|improve this answer
That's great. Thanks. – Mark Dickinson May 15 '09 at 13:01
Just to clear up, var factory = session.SessionFactory; – Mark Dickinson May 15 '09 at 13:02
@Mark: Yes, SessionFactory point to the ISessionFactory you used to create the session. – Stefan Steinegger May 15 '09 at 13:20
feedback

Your Answer

 
or
required, but never shown

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