dao.put(new SampleProduct2("item5", "Tophat", "product with null name", "(415) 555-1212", "800-123-4567", 0.0f));
// Create a query object specific to the SampleProduct2 model class.
// No additional filtering condition means to get all the items.
Query<SampleProduct2> query = jsoda.query(SampleProduct2.class);
// Run the count query to get back the count of the query.
System.out.println("Number of objects: " + query.count());
// Run the query to get all the items.