Deveel.Data.Sql.GroupOperatorHelper.IsTrue C# (CSharp) Method

IsTrue() private static method

private static IsTrue ( Field b ) : bool
b Field
return bool
        private static bool IsTrue(Field b)
        {
            return (!b.IsNull &&
                    b.Type is BooleanType &&
                    b.Value.Equals(SqlBoolean.True));
        }