Skip to content

Commit

Permalink
Corrects error when using SQLSelect.ctor(string, SQLCondition). Closes
Browse files Browse the repository at this point in the history
  • Loading branch information
hisystems committed Jun 20, 2013
1 parent 43ba9f8 commit c4ad725
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions SQL/Select/SQLSelect.cs
Expand Up @@ -47,6 +47,7 @@ public SQLSelect(string strTableName)
}

public SQLSelect(string strTableName, SQLCondition objWhereCondition)
: this()
{
this.Tables.Add(strTableName);
this.Where.Add(objWhereCondition);
Expand Down

0 comments on commit c4ad725

Please sign in to comment.