문자열 형식에 대한 참조를 가져옵니다.
네임스페이스: Microsoft.Data.Edm.Library
어셈블리: Microsoft.Data.Edm(Microsoft.Data.Edm.dll)
구문
‘선언
Public Function GetString ( _
isMaxMaxLength As Boolean, _
maxLength As Nullable(Of Integer), _
isFixedLength As Nullable(Of Boolean), _
isUnicode As Nullable(Of Boolean), _
collation As String, _
isNullable As Boolean _
) As IEdmStringTypeReference
‘사용 방법
Dim instance As EdmCoreModel
Dim isMaxMaxLength As Boolean
Dim maxLength As Nullable(Of Integer)
Dim isFixedLength As Nullable(Of Boolean)
Dim isUnicode As Nullable(Of Boolean)
Dim collation As String
Dim isNullable As Boolean
Dim returnValue As IEdmStringTypeReference
returnValue = instance.GetString(isMaxMaxLength, _
maxLength, isFixedLength, isUnicode, _
collation, isNullable)
public IEdmStringTypeReference GetString(
bool isMaxMaxLength,
Nullable<int> maxLength,
Nullable<bool> isFixedLength,
Nullable<bool> isUnicode,
string collation,
bool isNullable
)
public:
IEdmStringTypeReference^ GetString(
bool isMaxMaxLength,
Nullable<int> maxLength,
Nullable<bool> isFixedLength,
Nullable<bool> isUnicode,
String^ collation,
bool isNullable
)
member GetString :
isMaxMaxLength:bool *
maxLength:Nullable<int> *
isFixedLength:Nullable<bool> *
isUnicode:Nullable<bool> *
collation:string *
isNullable:bool -> IEdmStringTypeReference
public function GetString(
isMaxMaxLength : boolean,
maxLength : Nullable<int>,
isFixedLength : Nullable<boolean>,
isUnicode : Nullable<boolean>,
collation : String,
isNullable : boolean
) : IEdmStringTypeReference
매개 변수
- isMaxMaxLength
유형: System.Boolean
최대 길이가 허용되는 최대값임을 나타내려면 true이고, 그렇지 않으면 false입니다.
- maxLength
유형: System.Nullable<Int32>
이 형식 값의 최대 길이입니다.
- isFixedLength
유형: System.Nullable<Boolean>
길이가 달라질 수 있음을 나타내려면 true이고, 그렇지 않으면 false입니다.
- isUnicode
유형: System.Nullable<Boolean>
문자열 형식이 유니코드 인코딩을 지원함을 나타내려면 true이고, 그렇지 않으면 false입니다.
- collation
유형: System.String
문자열 형식의 데이터 정렬입니다.
- isNullable
유형: System.Boolean
참조되는 형식이 Null을 허용해야 함을 나타내려면 true이고, 그렇지 않으면 false입니다.
반환 값
유형: Microsoft.Data.Edm.IEdmStringTypeReference
문자열 형식 참조입니다.