StoredProcedureBuilder.CreatePropertyBuilder Method

Definition

Overloads

CreatePropertyBuilder(String)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

CreatePropertyBuilder<TDerivedEntity,TProperty>(Expression<Func<TDerivedEntity,TProperty>>)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

CreatePropertyBuilder(String)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
protected virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder CreatePropertyBuilder (string propertyName);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
abstract member CreatePropertyBuilder : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
override this.CreatePropertyBuilder : string -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder
Protected Overridable Function CreatePropertyBuilder (propertyName As String) As PropertyBuilder

Parameters

propertyName
String

Returns

Attributes

Applies to

CreatePropertyBuilder<TDerivedEntity,TProperty>(Expression<Func<TDerivedEntity,TProperty>>)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
protected virtual Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder CreatePropertyBuilder<TDerivedEntity,TProperty> (System.Linq.Expressions.Expression<Func<TDerivedEntity,TProperty>> propertyExpression) where TDerivedEntity : class;
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
abstract member CreatePropertyBuilder : System.Linq.Expressions.Expression<Func<'DerivedEntity, 'Property>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder (requires 'DerivedEntity : null)
override this.CreatePropertyBuilder : System.Linq.Expressions.Expression<Func<'DerivedEntity, 'Property>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.PropertyBuilder (requires 'DerivedEntity : null)
Protected Overridable Function CreatePropertyBuilder(Of TDerivedEntity As Class, TProperty As Class) (propertyExpression As Expression(Of Func(Of TDerivedEntity, TProperty))) As PropertyBuilder

Type Parameters

TDerivedEntity
TProperty

Parameters

propertyExpression
Expression<Func<TDerivedEntity,TProperty>>

Returns

Attributes

Applies to