This documentation is archived and is not being maintained.

DynamicDataManager::AutoLoadForeignKeys Property

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

Namespace:  System.Web.DynamicData
Assembly:  System.Web.DynamicData (in System.Web.DynamicData.dll)

public:
property bool AutoLoadForeignKeys {
	bool get ();
	void set (bool value);
}
<asp:DynamicDataManager AutoLoadForeignKeys="True|False" />

Property Value

Type: System::Boolean
true if foreign keys are automatically loaded; otherwise, false.

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.

.NET Framework

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: