nDump.Model.SqlTableSelect.SqlTableSelect C# (CSharp) Method

SqlTableSelect() public method

public SqlTableSelect ( string tableName, string select, bool hasIdentity ) : System.Collections.Generic
tableName string
select string
hasIdentity bool
return System.Collections.Generic
        public SqlTableSelect(string tableName, string select, bool hasIdentity)
        {
            _tableName = tableName;
            Select = select;
            HasIdentity = hasIdentity;
        }

Same methods

SqlTableSelect::SqlTableSelect ( ) : System.Collections.Generic
SqlTableSelect::SqlTableSelect ( string tableName, bool deleteOnly = false ) : System.Collections.Generic
SqlTableSelect::SqlTableSelect ( string tableName, string select, bool hasIdentity, List excludedColumns ) : System.Collections.Generic