rowKeys.add(virtKey);
AbstractCursor<KeyValue<Row>> rows = session.find(metaDbo, new IterableWrappingCursor<byte[]>(rowKeys), false, true, null);
Holder<KeyValue<Row>> holder = rows.nextImpl();
if(holder == null)
throw new RowNotFoundException("row for type="+classMeta.getMetaClass().getName()+" not found for key="+entityId);
KeyValue<Row> next = holder.getValue();
if(next.getValue() == null)
throw new RowNotFoundException("row for type="+classMeta.getMetaClass().getName()+" not found for key="+entityId);
Row row = next.getValue();
classMeta.fillInInstance(row, session, self);
}