If your regional settings is Turkish. You get an error message 'MİN' is not
a recognized built-in function name.
Solution :
in ANSISqlGenerator.cs Class
in GenerateAggregateSelect(Aggregate aggregate) function
change (2 lines) Aggregate.GetFunctionType(aggregate).ToUpper() --> to -->
Aggregate.GetFunctionType(aggregate).ToUpperInvariant()
in Aggregate.cs Class
in public string WithoutAlias() function
change functionName = functionName.ToUpper(); --> to --> functionName =
functionName.ToUpperInvariant();
inpublic override string ToString() function
change functionName = functionName.ToUpper(); --> to --> functionName =
functionName.ToUpperInvariant();
Original issue reported on code.google.com by ozcanmus...@gmail.com on 12 Jul 2008 at 11:23
Original issue reported on code.google.com by
ozcanmus...@gmail.com
on 12 Jul 2008 at 11:23