Skip to content

Commit

Permalink
#DNET-167
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Jul 10, 2008
1 parent d74372f commit d760d96
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -371,7 +371,7 @@ public override int GetOrdinal(string name)

for (int i = 0; i < this.fields.Count; i++)
{
if (GlobalizationHelper.CultureAwareCompare(name, this.fields[i].Alias))
if (name.ToLower(CultureInfo.InvariantCulture) == this.fields[i].Alias.ToLower(CultureInfo.InvariantCulture))
{
return i;
}
Expand Down

0 comments on commit d760d96

Please sign in to comment.