Hi,

how does one append one Dataset to another? I know I can do stuff like

d2.getDefaultModel().add(d1.getDefaultModel());
for (String name : d1.listNames())
    d2 = d2.addNamedModel(d1.getNamedModel(name));

but that is not very concise, and probably not very performant either?
I'm wondering why there isn't a dedicated method?


Martynas

Reply via email to