I have a composite key in a database table / NHibernate entity. Can I somehow use t开发者_运维知识库he .Get
method to grab a specific entity or do I have to use HQL / Criteria due to the composite key?
With this composite key mapping:
<class name="MyClass">
<composite-id>
<key-property name="Key1" />
<key-property name="Key2" />
</composite-id>
<property name="..." />
</class>
...you can use .Get like this:
var x = Session.Get<MyClass>(new MyClass() { Key1 = 'Foo', Key2 = 'Bar'});
精彩评论