Azavea.Open.DAO.SQL.AbstractSqlConnectionDescriptor.NeedToAliasColumns C# (CSharp) Метод

NeedToAliasColumns() публичный абстрактный Метод

Does this database require that we alias the columns explicitly if we are aliasing the table name? Most DBs will alias the columns for you (I.E. if you "SELECT ID FROM TABLE1 AS ALIAS1" then the column will be called "ALIAS1.ID", etc). However some require that you alias the columns specifically (cough SQLite, Access cough).
public abstract NeedToAliasColumns ( ) : bool
Результат bool
        public abstract bool NeedToAliasColumns();