SqlFunctions.Replicate(String, Nullable<Int32>) 方法

定义

将一个字符串值重复指定的次数。

public:
 static System::String ^ Replicate(System::String ^ target, Nullable<int> count);
[System.Data.Objects.DataClasses.EdmFunction("SqlServer", "REPLICATE")]
public static string Replicate (string target, int? count);
[<System.Data.Objects.DataClasses.EdmFunction("SqlServer", "REPLICATE")>]
static member Replicate : string * Nullable<int> -> string
Public Shared Function Replicate (target As String, count As Nullable(Of Integer)) As String

参数

target
String

一个有效的字符串。

count
Nullable<Int32>

指定 target 重复次数的值。

返回

重复了 count 所指定次数的目标字符串。

属性

注解

不能直接调用此函数。 此函数只能出现在 LINQ to Entities 查询中。

此函数将转换为数据库中的相应函数。 有关相应 SQL Server 函数的信息,请参阅 REPLICATE (Transact-SQL)

适用于