Azavea.Open.DAO.SQL.SqlDaJoinQuery.SetPrefixes C# (CSharp) Method

SetPrefixes() public method

Populates the prefix strings.
public SetPrefixes ( string left, string right ) : void
left string Prefix for columns from the left table.
right string Prefix for columns from the right table.
return void
        public void SetPrefixes(string left, string right)
        {
            _leftPrefix = left;
            _rightPrefix = right;
        }