Z.Expressions.SqlServer.Eval.SQLNET.GetValueBit C# (CSharp) Method

GetValueBit() public method

Gets the bit value associated with the specified key.
public GetValueBit ( string key ) : bool?
key string The key of the value to get.
return bool?
        public bool? GetValueBit(string key)
        {
            var value = GetValue(key);
            return value == DBNull.Value ? (bool?) null : Convert.ToBoolean(value);
        }
SQLNET