IValueGeneratorCache.GetOrAdd 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
GetOrAdd(IProperty, IEntityType, Func<IProperty,IEntityType,ValueGenerator>) |
캐시에서 기존 값 생성기를 가져오거나 캐시에 없는 경우 새 생성기를 만듭니다. |
GetOrAdd(IProperty, ITypeBase, Func<IProperty,ITypeBase,ValueGenerator>) |
캐시에서 기존 값 생성기를 가져오거나 캐시에 없는 경우 새 생성기를 만듭니다. |
GetOrAdd(IProperty, IEntityType, Func<IProperty,IEntityType,ValueGenerator>)
캐시에서 기존 값 생성기를 가져오거나 캐시에 없는 경우 새 생성기를 만듭니다.
public Microsoft.EntityFrameworkCore.ValueGeneration.ValueGenerator GetOrAdd (Microsoft.EntityFrameworkCore.Metadata.IProperty property, Microsoft.EntityFrameworkCore.Metadata.IEntityType entityType, Func<Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore.ValueGeneration.ValueGenerator> factory);
abstract member GetOrAdd : Microsoft.EntityFrameworkCore.Metadata.IProperty * Microsoft.EntityFrameworkCore.Metadata.IEntityType * Func<Microsoft.EntityFrameworkCore.Metadata.IProperty, Microsoft.EntityFrameworkCore.Metadata.IEntityType, Microsoft.EntityFrameworkCore.ValueGeneration.ValueGenerator> -> Microsoft.EntityFrameworkCore.ValueGeneration.ValueGenerator
Public Function GetOrAdd (property As IProperty, entityType As IEntityType, factory As Func(Of IProperty, IEntityType, ValueGenerator)) As ValueGenerator
매개 변수
- property
- IProperty
값 생성기를 가져올 속성입니다.
- entityType
- IEntityType
값 생성기가 사용될 엔터티 형식입니다. 파생 엔터티 형식에서 상속된 속성에 대해 호출되는 경우 이 엔터티 형식은 에서 선언된 엔터티 형식과 다를 수 있습니다. property
- factory
- Func<IProperty,IEntityType,ValueGenerator>
캐시에 없는 경우 새 값 생성기를 만드는 팩터리입니다.
반환
기존 또는 새로 만든 값 생성기입니다.
적용 대상
GetOrAdd(IProperty, ITypeBase, Func<IProperty,ITypeBase,ValueGenerator>)
캐시에서 기존 값 생성기를 가져오거나 캐시에 없는 경우 새 생성기를 만듭니다.
public Microsoft.EntityFrameworkCore.ValueGeneration.ValueGenerator GetOrAdd (Microsoft.EntityFrameworkCore.Metadata.IProperty property, Microsoft.EntityFrameworkCore.Metadata.ITypeBase typeBase, Func<Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.ITypeBase,Microsoft.EntityFrameworkCore.ValueGeneration.ValueGenerator> factory);
abstract member GetOrAdd : Microsoft.EntityFrameworkCore.Metadata.IProperty * Microsoft.EntityFrameworkCore.Metadata.ITypeBase * Func<Microsoft.EntityFrameworkCore.Metadata.IProperty, Microsoft.EntityFrameworkCore.Metadata.ITypeBase, Microsoft.EntityFrameworkCore.ValueGeneration.ValueGenerator> -> Microsoft.EntityFrameworkCore.ValueGeneration.ValueGenerator
Public Function GetOrAdd (property As IProperty, typeBase As ITypeBase, factory As Func(Of IProperty, ITypeBase, ValueGenerator)) As ValueGenerator
매개 변수
- property
- IProperty
값 생성기를 가져올 속성입니다.
- typeBase
- ITypeBase
값 생성기가 사용될 엔터티 형식입니다. 파생 엔터티 형식에서 상속된 속성에 대해 호출되는 경우 이 엔터티 형식은 에서 선언된 엔터티 형식과 다를 수 있습니다. property
- factory
- Func<IProperty,ITypeBase,ValueGenerator>
캐시에 없는 경우 새 값 생성기를 만드는 팩터리입니다.
반환
기존 또는 새로 만든 값 생성기입니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Entity Framework