Hi Team,

I have a table with following model 

public class Employee implements Serializable {

    private static final long serialVersionUID = -1271194616130404625L;

    @QuerySqlField(index = true)
    private EmployeePK pk;

    @QuerySqlField(index = true)
    private Long qty1;

    @QuerySqlField(index = true)
    private Long qty2;

    @QuerySqlField(index = true)
    private Long qty3;

    private Long qty4;
    private Long qty5;
    private Long qty6;
}

public class EmployeePK implements Serializable {

    private static final long serialVersionUID = -1271194616130404625L;

//    @QuerySqlField(index = true)
    private String sku;

//    @QuerySqlField(index = true)
    private String store;

I am using spring ignite data when I am doing repository.findOne and try to
get result ReadThrough is not working for me. when I put PK attributes in
employee model it works but then I can not read through by sku and store 

ANy help appreciated
}



--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Reply via email to