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

ValueInt() public method

Add or update a value associated with the specified key.
public ValueInt ( SqlString key, SqlInt32 value ) : SQLNET
key System.Data.SqlTypes.SqlString The key of the value to add or update.
value System.Data.SqlTypes.SqlInt32 The value to add or update associated with the specified key.
return SQLNET
        public SQLNET ValueInt(SqlString key, SqlInt32 value)
        {
            return InternalValue(key, typeof (int), value.Value);
        }
SQLNET