EntityMappingConfiguration<TEntityType>.Property 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
Property(Expression<Func<TEntityType,TimeSpan>>)
TimeSpan 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,TimeSpan>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, TimeSpan>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, TimeSpan))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,TimeSpan>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,String>>)
System.string 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,string>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, string>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, String))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,String>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,Nullable<TimeSpan>>>)
System.TimeSpan? 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,Nullable<TimeSpan>>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, Nullable<TimeSpan>>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, Nullable(Of TimeSpan)))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,Nullable<TimeSpan>>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,Nullable<Decimal>>>)
System.decimal? 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,Nullable<decimal>>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, Nullable<decimal>>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, Nullable(Of Decimal)))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,Nullable<Decimal>>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,Nullable<DateTimeOffset>>>)
System.DateTimeOffset? 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,Nullable<DateTimeOffset>>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, Nullable<DateTimeOffset>>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, Nullable(Of DateTimeOffset)))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,Nullable<DateTimeOffset>>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,Nullable<DateTime>>>)
System.DateTime? 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,Nullable<DateTime>>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, Nullable<DateTime>>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, Nullable(Of DateTime)))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,Nullable<DateTime>>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,Decimal>>)
System.decimal 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,decimal>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, decimal>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, Decimal))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,Decimal>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,DateTimeOffset>>)
DateTimeOffset 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,DateTimeOffset>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, DateTimeOffset>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, DateTimeOffset))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,DateTimeOffset>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,DateTime>>)
DateTime 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,DateTime>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, DateTime>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, DateTime))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,DateTime>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,DbGeometry>>)
DbGeometry 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,System.Data.Entity.Spatial.DbGeometry>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, System.Data.Entity.Spatial.DbGeometry>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, DbGeometry))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,DbGeometry>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,DbGeography>>)
DbGeography 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,System.Data.Entity.Spatial.DbGeography>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, System.Data.Entity.Spatial.DbGeography>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, DbGeography))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,DbGeography>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property(Expression<Func<TEntityType,Byte[]>>)
System.byte[] 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property (System.Linq.Expressions.Expression<Func<TEntityType,byte[]>> propertyExpression);
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, byte[]>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration
Public Function Property (propertyExpression As Expression(Of Func(Of TEntityType, Byte()))) As PropertyMappingConfiguration
매개 변수
- propertyExpression
- Expression<Func<TEntityType,Byte[]>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property<T>(Expression<Func<TEntityType,Nullable<T>>>)
System.struct? 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property<T> (System.Linq.Expressions.Expression<Func<TEntityType,Nullable<T>>> propertyExpression) where T : struct;
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, Nullable<'T>>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration (requires 'T : struct)
Public Function Property(Of T As Structure) (propertyExpression As Expression(Of Func(Of TEntityType, Nullable(Of T)))) As PropertyMappingConfiguration
형식 매개 변수
- T
구성되는 속성의 형식입니다.
매개 변수
- propertyExpression
- Expression<Func<TEntityType,Nullable<T>>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Property<T>(Expression<Func<TEntityType,T>>)
System.struct 이 매핑 조각에 포함된 속성을 구성합니다.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration Property<T> (System.Linq.Expressions.Expression<Func<TEntityType,T>> propertyExpression) where T : struct;
member this.Property : System.Linq.Expressions.Expression<Func<'EntityType, 'T>> -> System.Data.Entity.ModelConfiguration.Configuration.PropertyMappingConfiguration (requires 'T : struct)
Public Function Property(Of T As Structure) (propertyExpression As Expression(Of Func(Of TEntityType, T))) As PropertyMappingConfiguration
형식 매개 변수
- T
구성되는 속성의 형식입니다.
매개 변수
- propertyExpression
- Expression<Func<TEntityType,T>>
구성할 속성을 나타내는 람다 식입니다. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
반환
속성을 구성하는 데 사용할 수 있는 구성 개체입니다.
- 특성
적용 대상
Entity Framework