views:

60

answers:

1

If so how do I do it? I tried just using a declaration id type: 'int' but it got an error when calling Find on the class.

A: 

I believe you simply have to declare the id field as a member.

class MyDomainClass {
    int id
}
Blacktiger