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

valuetable() public method

Add or update a string value associated with the specified key.
public valuetable ( SqlString key, string value ) : SQLNET
key System.Data.SqlTypes.SqlString The key of the value to add or update.
value string The string value to add or update associated with the specified key.
return SQLNET
        public SQLNET valuetable(SqlString key, string value)
        {
            return ValueTable(key, value);
        }
SQLNET