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

ValueString() public method

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