Skip to content

Commit

Permalink
Update Query.Having.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
mattbrailsford authored Apr 2, 2022
1 parent 56cba7e commit 1bf0850
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QueryBuilder/Query.Having.cs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ public Query OrHavingNotBetween<T>(string column, T lower, T higher)

public Query HavingIn<T>(string column, IEnumerable<T> values)
{
// If the developer has passed a string most probably he wants List<string>
// If the developer has passed a string they most likely want a List<string>
// since string is considered as List<char>
if (values is string)
{
Expand Down

0 comments on commit 1bf0850

Please sign in to comment.