@DataSet("NativeQueryBuilderTest_dataTypes.xml")
public void canOrder_byMultipleAttributes() throws Exception {
Query qry1 = QueryUtils.createNativeQuery(this.em)
.fromResourceRelativeTo(this.getClass(), "NativeQueryBuilderTest_canOrder_byAttribute.sql")
.orderBy(new AttributeOrdering[] {
new AttributeOrdering("intNumber", Ordering.ASCENDING)
, new AttributeOrdering("bigIntNumber", Ordering.DESCENDING)
})
.createQuery();
Assert.assertEquals(2, qry1.getResultList().size());
this.assertIdEquals(2L, qry1.getResultList(), 0);