Example #1
0
 /// <summary></summary>
 static Dialect()
 {
     standardAggregateFunctions["count"] = new CountQueryFunctionInfo();
     standardAggregateFunctions["avg"]   = new AvgQueryFunctionInfo();
     standardAggregateFunctions["max"]   = new StandardSQLFunction();
     standardAggregateFunctions["min"]   = new StandardSQLFunction();
     standardAggregateFunctions["sum"]   = new StandardSQLFunction();
 }
		/// <summary></summary>
		static Dialect()
		{
			standardAggregateFunctions[ "count" ] = new CountQueryFunctionInfo();
			standardAggregateFunctions[ "avg" ] = new AvgQueryFunctionInfo();
			standardAggregateFunctions[ "max" ] = new StandardSQLFunction();
			standardAggregateFunctions[ "min" ] = new StandardSQLFunction();
			standardAggregateFunctions[ "sum" ] = new StandardSQLFunction();

		}