This documentation is archived and is not being maintained.
DataLoadOptions::LoadWith Method
Visual Studio 2008
Retrieves specified data related to the main target.
This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.
| Name | Description | |
|---|---|---|
|
LoadWith<T>(Expression<Func<T, Object>>) | Specifies which sub-objects to retrieve when a query is submitted for an object of type T. |
|
LoadWith(LambdaExpression) | Retrieves specified data related to the main target by using a lambda expression. |
Use the LoadWith method to specify which data related to your main target should be retrieved at the same time. For example, if you know you will need information about customers' orders, you can use LoadWith to make sure the order information is retrieved at the same time as the customer information. This approach results in only one trip to the database for both sets of information.
Show: