다음을 통해 공유


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)를 참조하세요.

적용 대상