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

GetValueSmallInt() public method

Gets the small int value associated with the specified key.
public GetValueSmallInt ( string key ) : short?
key string The key of the value to get.
return short?
        public short? GetValueSmallInt(string key)
        {
            var value = GetValue(key);
            return value == DBNull.Value ? (short?) null : Convert.ToInt16(value);
        }
SQLNET