BelhardTraining.Extensions.DbDataReaderExtensions.GetBoolean C# (CSharp) 메소드

GetBoolean() 공개 정적인 메소드

public static GetBoolean ( this reader, string columnName ) : bool
reader this
columnName string
리턴 bool
        public static bool GetBoolean(this DbDataReader reader, string columnName)
        {
            return reader.GetBoolean(reader.GetOrdinal("columnName"));
        }