StructuralTypeConfiguration<TStructuralType>.HasDynamicProperties Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds a dynamic property dictionary property.
public void HasDynamicProperties (System.Linq.Expressions.Expression<Func<TStructuralType,System.Collections.Generic.IDictionary<string,object>>> propertyExpression);
member this.HasDynamicProperties : System.Linq.Expressions.Expression<Func<'StructuralType, System.Collections.Generic.IDictionary<string, obj>>> -> unit
Public Sub HasDynamicProperties (propertyExpression As Expression(Of Func(Of TStructuralType, IDictionary(Of String, Object))))
Parameters
- propertyExpression
- Expression<Func<TStructuralType,IDictionary<String,Object>>>
A lambda expression representing the dynamic property dictionary for the relationship.
For example, in C# t => t.MyProperty
and in Visual Basic .NET Function(t) t.MyProperty
.