StructuralTypeConfiguration<TStructuralType>.Property - метод (Expression<Func<TStructuralType, Nullable<Decimal>>>)
[Эта страница относится к документации к Entity Framework 6. Последняя версия доступна в составе пакета Entity Framework NuGet. Дополнительные сведения об Entity Framework см. в разделе msdn.com/data/ef.]
Настраивает свойство [T:System.decimal?], определенное для этого типа.
Пространство имен: System.Data.Entity.ModelConfiguration.Configuration
Сборка: EntityFramework (в EntityFramework.dll)
Синтаксис
'Декларация
<SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")> _
<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")> _
Public Function Property ( _
propertyExpression As Expression(Of Func(Of TStructuralType, Nullable(Of Decimal))) _
) As DecimalPropertyConfiguration
'Применение
Dim instance As StructuralTypeConfiguration
Dim propertyExpression As Expression(Of Func(Of TStructuralType, Nullable(Of Decimal)))
Dim returnValue As DecimalPropertyConfiguration
returnValue = instance.Property(propertyExpression)
[SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
[SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
public DecimalPropertyConfiguration Property(
Expression<Func<TStructuralType, Nullable<decimal>>> propertyExpression
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1011:ConsiderPassingBaseTypesAsParameters")]
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1006:DoNotNestGenericTypesInMemberSignatures")]
public:
DecimalPropertyConfiguration^ Property(
Expression<Func<TStructuralType, Nullable<Decimal>>^>^ propertyExpression
)
[<SuppressMessageAttribute("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")>]
[<SuppressMessageAttribute("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")>]
member Property :
propertyExpression:Expression<Func<'TStructuralType, Nullable<decimal>>> -> DecimalPropertyConfiguration
public function Property(
propertyExpression : Expression<Func<TStructuralType, Nullable<decimal>>>
) : DecimalPropertyConfiguration
Параметры
- propertyExpression
Тип: System.Linq.Expressions.Expression<Func<TStructuralType, Nullable<Decimal>>>
Лямбда-выражение, представляющее свойство, которое нужно настроить. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
Возвращаемое значение
Тип: System.Data.Entity.ModelConfiguration.Configuration.DecimalPropertyConfiguration
Объект настройки, который можно использовать для настройки этого свойства.
См. также
Справочник
StructuralTypeConfiguration<TStructuralType> Класс
System.Data.Entity.ModelConfiguration.Configuration - пространство имен