DynamicDataManager.AutoLoadForeignKeys Property

Definition

Gets or sets a value that indicates whether foreign keys are automatically loaded for a LINQ-to-SQL data context.

public:
 property bool AutoLoadForeignKeys { bool get(); void set(bool value); };
public bool AutoLoadForeignKeys { get; set; }
member this.AutoLoadForeignKeys : bool with get, set
Public Property AutoLoadForeignKeys As Boolean

Property Value

true if foreign keys are automatically loaded; otherwise, false.

Remarks

If the data model is not based on LINQ to SQL, this property is ignored. When the property set to true, it causes the related entities to be loaded in the initial query. When the property is set to false, LINQ to SQL will load the related objects when they are requested. This property is only for load optimization and does not affect what is displayed.

Applies to