Hello, Just to make sure, right now I'm putting my annotation @QuerySqlField on some classes. Is there a way to put it at the interface layer and use the getter/setter instead of the direct field?
Like
class Person implement IPerson{
private string _name = null;
...
}
interface IPerson {
getName(){return _name;}
setName(string name){...}
}
thanks
w
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/
