RequiredNavigationPropertyConfiguration<TEntityType,TTargetEntityType>.WithMany Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
WithMany() |
Nakonfiguruje relaci, která se má vyžadovat:N bez navigační vlastnosti na druhé straně relace. |
WithMany(Expression<Func<TTargetEntityType,ICollection<TEntityType>>>) |
Nakonfiguruje požadovanou relaci:many s vlastností navigace na druhé straně relace. |
WithMany()
Nakonfiguruje relaci, která se má vyžadovat:N bez navigační vlastnosti na druhé straně relace.
public System.Data.Entity.ModelConfiguration.Configuration.DependentNavigationPropertyConfiguration<TEntityType> WithMany ();
member this.WithMany : unit -> System.Data.Entity.ModelConfiguration.Configuration.DependentNavigationPropertyConfiguration<'EntityType (requires 'EntityType : null)>
Public Function WithMany () As DependentNavigationPropertyConfiguration(Of TEntityType)
Návraty
Objekt konfigurace, který lze použít k další konfiguraci relace.
Platí pro
WithMany(Expression<Func<TTargetEntityType,ICollection<TEntityType>>>)
Nakonfiguruje požadovanou relaci:many s vlastností navigace na druhé straně relace.
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.DependentNavigationPropertyConfiguration<TEntityType> WithMany (System.Linq.Expressions.Expression<Func<TTargetEntityType,System.Collections.Generic.ICollection<TEntityType>>> navigationPropertyExpression);
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1006:DoNotNestGenericTypesInMemberSignatures")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public System.Data.Entity.ModelConfiguration.Configuration.DependentNavigationPropertyConfiguration<TEntityType> WithMany (System.Linq.Expressions.Expression<Func<TTargetEntityType,System.Collections.Generic.ICollection<TEntityType>>> navigationPropertyExpression);
member this.WithMany : System.Linq.Expressions.Expression<Func<'argetEntityType, System.Collections.Generic.ICollection<'EntityType>>> -> System.Data.Entity.ModelConfiguration.Configuration.DependentNavigationPropertyConfiguration<'EntityType (requires 'EntityType : null)>
Public Function WithMany (navigationPropertyExpression As Expression(Of Func(Of TTargetEntityType, ICollection(Of TEntityType)))) As DependentNavigationPropertyConfiguration(Of TEntityType)
Parametry
- navigationPropertyExpression
- Expression<Func<TTargetEntityType,ICollection<TEntityType>>>
Výraz lambda představující navigační vlastnost na druhém konci relace. C#: t => t.MyProperty VB.Net: Function(t) t.MyProperty
Návraty
Objekt konfigurace, který lze použít k další konfiguraci relace.
- Atributy
Platí pro
Entity Framework