File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ public static bool IsLogicalOperator(this string source)
71
71
public static bool IsLetter ( this string source )
72
72
{
73
73
if ( source . Length == 0 ) return false ;
74
- var c = source . ToCharArray ( ) . First ( ) ;
74
+ var c = source . ToLower ( ) . ToCharArray ( ) . First ( ) ;
75
75
return SqlParser . LetterChars . Where ( x => x == c ) . Any ( ) ;
76
76
}
77
77
Original file line number Diff line number Diff line change 8
8
<PackageProjectUrl >https://github.com/mk3008/SqModel</PackageProjectUrl >
9
9
<AssemblyVersion ></AssemblyVersion >
10
10
<FileVersion ></FileVersion >
11
- <Version >0.8.11 </Version >
11
+ <Version >0.8.12 </Version >
12
12
<PackageTags >Sql;QueryBuilder;SqlParser;SqlBuilder;</PackageTags >
13
13
<PackageReadmeFile >README.md</PackageReadmeFile >
14
14
<Description >Parse and build select queries.</Description >
You can’t perform that action at this time.
0 commit comments