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

GetValueInt() public method

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