本文整理汇总了C#中System.Data.SqlTypes.SqlBytes.ToSqlBinary方法的典型用法代码示例。如果您正苦于以下问题:C# SqlBytes.ToSqlBinary方法的具体用法?C# SqlBytes.ToSqlBinary怎么用?C# SqlBytes.ToSqlBinary使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Data.SqlTypes.SqlBytes
的用法示例。
在下文中一共展示了SqlBytes.ToSqlBinary方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ToSqlBinary
// SqlTypes.
#if !(NET_1_1)
/// <summary>
/// Converts the value of the specified SqlBytes to its equivalent SqlBinary representation.
/// </summary>
/// <param name="value">An SqlBytes.</param>
/// <returns>The equivalent SqlBinary.</returns>
public static SqlBinary ToSqlBinary(SqlBytes value) { return value.ToSqlBinary(); }
示例2: ToSqlBinary
// Sql Types
//
/// <summary>Converts the value from <c>SqlBytes</c> to an equivalent <c>SqlBinary</c> value.</summary>
public static SqlBinary ToSqlBinary(SqlBytes p) { return p.ToSqlBinary(); }
示例3: ToSqlGuid
/// <summary>
/// Converts the value of the specified SqlBytes to its equivalent SqlGuid representation.
/// </summary>
/// <param name="value">An SqlBytes.</param>
/// <returns>The equivalent SqlGuid.</returns>
public static SqlGuid ToSqlGuid(SqlBytes value) { return value.ToSqlBinary().ToSqlGuid(); }
示例4: ToSqlGuid
/// <summary>Converts the value from <c>SqlBytes</c> to an equivalent <c>SqlGuid</c> value.</summary>
public static SqlGuid ToSqlGuid(SqlBytes p) { return p.ToSqlBinary().ToSqlGuid(); }