Hi,
My POJO has composite primary key.
e.g.
public class Person {
PersonPK id;
String name;
}
public class PersonPK {
Long id1;
String personType;
}
These classes are just for example purpose. My question is - can I apply
@SqlQueryField directly on id field in Person class which is of type
PersonPK. How this will be used while creating table in H2?
--
View this message in context:
http://apache-ignite-users.70518.x6.nabble.com/SqlQueryField-on-composite-primary-key-tp10666.html
Sent from the Apache Ignite Users mailing list archive at Nabble.com.