com.alvazan.orm.api.z8spi.iter.AbstractCursor.Holder<KeyValue<Row>> holder = rows.nextImpl();
if(holder == null)
break;
KeyValue<Row> kv = holder.getValue();
byte[] key = (byte[]) kv.getKey();
byte[] nonVirtKey = idMeta.unformVirtRowKey(key);
Row row = kv.getValue();
Tuple<T> tuple = metaClass.convertIdToProxy(row, session, nonVirtKey, null);
if(row == null) {
throw new IllegalStateException("This entity is corrupt(your entity='"+owner+"') and contains a" +
" reference/FK to a row that does not exist in another table. " +