public void Aggregates_Should_Return_Average() { decimal result = (decimal)_db.Avg <Product>(x => x.UnitPrice).ExecuteScalar(); Assert.True(result > 0); }