DbExtensions.Include 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Include(IQueryable, String) | |
Include<T,TProperty>(IQueryable<T>, Expression<Func<T,TProperty>>) | |
Include<T>(IQueryable<T>, String) |
Include(IQueryable, String)
public static System.Linq.IQueryable Include (this System.Linq.IQueryable source, string path);
static member Include : System.Linq.IQueryable * string -> System.Linq.IQueryable
<Extension()>
Public Function Include (source As IQueryable, path As String) As IQueryable
參數
- source
- IQueryable
- path
- String
傳回
適用於
Include<T,TProperty>(IQueryable<T>, Expression<Func<T,TProperty>>)
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1011:ConsiderPassingBaseTypesAsParameters")]
public static System.Linq.IQueryable<T> Include<T,TProperty> (this System.Linq.IQueryable<T> source, System.Linq.Expressions.Expression<Func<T,TProperty>> path) where T : class;
static member Include : System.Linq.IQueryable<'T (requires 'T : null)> * System.Linq.Expressions.Expression<Func<'T, 'Property>> -> System.Linq.IQueryable<'T (requires 'T : null)> (requires 'T : null)
<Extension()>
Public Function Include(Of T As Class, TProperty As Class) (source As IQueryable(Of T), path As Expression(Of Func(Of T, TProperty))) As IQueryable(Of T)
類型參數
- T
- TProperty
參數
- source
- IQueryable<T>
- path
- Expression<Func<T,TProperty>>
傳回
IQueryable<T>
- 屬性
適用於
Include<T>(IQueryable<T>, String)
public static System.Linq.IQueryable<T> Include<T> (this System.Linq.IQueryable<T> source, string path) where T : class;
static member Include : System.Linq.IQueryable<'T (requires 'T : null)> * string -> System.Linq.IQueryable<'T (requires 'T : null)> (requires 'T : null)
<Extension()>
Public Function Include(Of T As Class) (source As IQueryable(Of T), path As String) As IQueryable(Of T)
類型參數
- T
參數
- source
- IQueryable<T>
- path
- String
傳回
IQueryable<T>