DbExpression.FromBinary(Byte[]) 方法
定义
创建一个 DbExpression,用于表示指定的二进制值,可以为 nullCreates a DbExpression that represents the specified binary value, which may be null
public:
static System::Data::Common::CommandTrees::DbExpression ^ FromBinary(cli::array <System::Byte> ^ value);
public static System.Data.Common.CommandTrees.DbExpression FromBinary (byte[] value);
static member FromBinary : byte[] -> System.Data.Common.CommandTrees.DbExpression
Public Shared Function FromBinary (value As Byte()) As DbExpression
参数
- value
- Byte[]
返回的表达式所基于的二进制值。The binary value on which the returned expression should be based.
返回
一个 DbExpression,表示指定的二进制值。A DbExpression that represents the specified binary value.