다음을 통해 공유


IMutableSequence 인터페이스

정의

모델의 데이터베이스 시퀀스를 나타냅니다.

public interface IMutableSequence : Microsoft.EntityFrameworkCore.Metadata.ISequence
public interface IMutableSequence : Microsoft.EntityFrameworkCore.Metadata.IMutableAnnotatable, Microsoft.EntityFrameworkCore.Metadata.ISequence
public interface IMutableSequence : Microsoft.EntityFrameworkCore.Metadata.IMutableAnnotatable, Microsoft.EntityFrameworkCore.Metadata.IReadOnlySequence
type IMutableSequence = interface
    interface ISequence
type IMutableSequence = interface
    interface ISequence
    interface IAnnotatable
    interface IMutableAnnotatable
type IMutableSequence = interface
    interface IReadOnlySequence
    interface IReadOnlyAnnotatable
    interface IMutableAnnotatable
Public Interface IMutableSequence
Implements ISequence
Public Interface IMutableSequence
Implements IMutableAnnotatable, ISequence
Public Interface IMutableSequence
Implements IMutableAnnotatable, IReadOnlySequence
구현

설명

자세한 내용 및 예제는 데이터베이스 시퀀스를 참조하세요.

속성

ClrType
사용되지 않습니다..

시퀀스에서 반환된 Type 값의 를 가져오거나 설정합니다.

IncrementBy

시퀀스의 각 새 값을 얻기 위해 증분된 양을 가져오거나 설정합니다.

IsCyclic

max 값에 도달할 때 시퀀스가 처음부터 다시 시작될지 여부를 나타내는 값을 가져오거나 설정합니다.

Item[String]

지정된 이름의 주석 값을 가져오고 없는 경우 를 반환합니다 null .

(다음에서 상속됨 IReadOnlyAnnotatable)
MaxValue

시퀀스에서 지원하는 최대값을 가져오거나 설정하거나 null 설정되지 않은 경우 입니다.

MinValue

시퀀스에서 지원하는 최소값을 가져오거나 설정하거나 null 설정되지 않은 경우 입니다.

Model

IMutableModel 이 시퀀스가 정의된 을 가져옵니다.

ModelSchema

시퀀스의 모델 스키마를 가져옵니다. 에 지정된 것과 와 HasSequence(ModelBuilder, String, String) 함께 FindSequence(IConventionModel, String, String)사용할 항목입니다.

(다음에서 상속됨 IReadOnlySequence)
Name

데이터베이스에 있는 시퀀스의 이름을 가져옵니다.

(다음에서 상속됨 IReadOnlySequence)
Schema

시퀀스가 포함된 데이터베이스 스키마를 가져옵니다.

(다음에서 상속됨 IReadOnlySequence)
StartValue

시퀀스가 시작될 값을 가져오거나 설정합니다.

Type

시퀀스에서 반환된 Type 값의 를 가져오거나 설정합니다.

메서드

AddAnnotation(String, Object)

이 개체에 주석을 추가합니다. 지정된 이름의 주석이 이미 있는 경우 을 throw합니다.

(다음에서 상속됨 IMutableAnnotatable)
AddAnnotations(IEnumerable<IAnnotation>)

개체에 주석을 추가합니다.

(다음에서 상속됨 IMutableAnnotatable)
AddRuntimeAnnotation(String, Object)

이 개체에 런타임 주석을 추가합니다. 지정된 이름의 주석이 이미 있는 경우 을 throw합니다.

(다음에서 상속됨 IAnnotatable)
AnnotationsToDebugString(Int32)

개체에 선언된 모든 주석에 대한 디버그 문자열을 가져옵니다.

(다음에서 상속됨 IReadOnlyAnnotatable)
FindAnnotation(String)

지정된 이름의 주석을 가져오고 없는 경우 를 반환합니다 null .

(다음에서 상속됨 IReadOnlyAnnotatable)
FindRuntimeAnnotation(String)

지정된 이름의 런타임 주석을 가져오고 존재하지 않는 경우 를 반환합니다 null .

(다음에서 상속됨 IAnnotatable)
FindRuntimeAnnotationValue(String)

지정된 이름의 런타임 주석 값을 가져오고 존재하지 않는 경우 를 반환합니다 null .

(다음에서 상속됨 IAnnotatable)
GetAnnotation(String)

지정된 이름의 주석을 가져오고, 없는 경우 을 throw합니다.

(다음에서 상속됨 IReadOnlyAnnotatable)
GetAnnotations()

현재 개체의 모든 주석을 가져옵니다.

(다음에서 상속됨 IReadOnlyAnnotatable)
GetOrAddRuntimeAnnotationValue<TValue,TArg>(String, Func<TArg,TValue>, TArg)

지정된 이름의 런타임 주석 값을 가져오고, 이름이 없으면 추가합니다.

(다음에서 상속됨 IAnnotatable)
GetRuntimeAnnotations()

현재 개체의 모든 런타임 주석을 가져옵니다.

(다음에서 상속됨 IAnnotatable)
RemoveAnnotation(String)

이 개체에서 지정된 주석을 제거합니다.

(다음에서 상속됨 IMutableAnnotatable)
RemoveRuntimeAnnotation(String)

이 개체에서 지정된 런타임 주석을 제거합니다.

(다음에서 상속됨 IAnnotatable)
SetAnnotation(String, Object)

지정된 키 아래에 저장된 주석을 설정합니다. 지정된 이름의 주석이 이미 있는 경우 기존 주석을 덮어씁니다.

(다음에서 상속됨 IMutableAnnotatable)
SetOrRemoveAnnotation(String, Object)

지정된 이름 아래에 저장된 주석을 설정합니다. 지정된 이름의 주석이 이미 있는 경우 기존 주석을 덮어씁니다. 가 제공된 경우 null 기존 주석을 제거합니다.

(다음에서 상속됨 IMutableAnnotatable)
SetRuntimeAnnotation(String, Object)

지정된 키 아래에 저장된 런타임 주석을 설정합니다. 지정된 이름의 주석이 이미 있는 경우 기존 주석을 덮어씁니다.

(다음에서 상속됨 IAnnotatable)
ToDebugString(MetadataDebugStringOptions, Int32)

지정된 메타데이터의 사람이 읽을 수 있는 표현을 만듭니다.

경고: 반환된 문자열의 형식을 사용하지 마세요. 디버깅 전용으로 설계되었으며 릴리스 간에 임의로 변경될 수 있습니다.

(다음에서 상속됨 IReadOnlySequence)

확장 메서드

AnnotationsToDebugString(IAnnotatable, Int32)

개체에 선언된 모든 주석에 대한 디버그 문자열을 가져옵니다.

GetAnnotation(IAnnotatable, String)

지정된 이름의 주석을 가져오고, 없는 경우 을 throw합니다.

ToDebugString(ISequence, MetadataDebugStringOptions, Int32)

지정된 메타데이터의 사람이 읽을 수 있는 표현을 만듭니다.

경고: 반환된 문자열의 형식을 사용하지 마세요. 디버깅 전용으로 설계되었으며 릴리스 간에 임의로 변경될 수 있습니다.

AddAnnotations(IMutableAnnotatable, IEnumerable<IAnnotation>)

개체에 주석을 추가합니다.

GetAnnotation(IMutableAnnotatable, String)

지정된 이름의 주석을 가져오고, 없는 경우 을 throw합니다.

SetOrRemoveAnnotation(IMutableAnnotatable, String, Object)

지정된 이름 아래에 저장된 주석을 설정합니다. 지정된 이름의 주석이 이미 있는 경우 기존 주석을 덮어씁니다. 가 제공된 경우 null 기존 주석을 제거합니다.

적용 대상