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

ValueTinyInt() public method

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