[Missing <summary> documentation for "M:NHibernate.Linq.LinqExtensionMethods.CacheMode``1(System.Linq.IQueryable{``0},NHibernate.CacheMode)"]

Namespace: NHibernate.Linq
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public static IQueryable<T> CacheMode<T>(
	this IQueryable<T> query,
	CacheMode cacheMode
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function CacheMode(Of T) ( _
	query As IQueryable(Of T), _
	cacheMode As CacheMode _
) As IQueryable(Of T)
Visual C++
[ExtensionAttribute]
public:
generic<typename T>
static IQueryable<T>^ CacheMode(
	IQueryable<T>^ query, 
	CacheMode cacheMode
)

Parameters

query
Type: System.Linq..::..IQueryable<(Of <(<'T>)>)>

[Missing <param name="query"/> documentation for "M:NHibernate.Linq.LinqExtensionMethods.CacheMode``1(System.Linq.IQueryable{``0},NHibernate.CacheMode)"]

cacheMode
Type: NHibernate..::..CacheMode

[Missing <param name="cacheMode"/> documentation for "M:NHibernate.Linq.LinqExtensionMethods.CacheMode``1(System.Linq.IQueryable{``0},NHibernate.CacheMode)"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:NHibernate.Linq.LinqExtensionMethods.CacheMode``1(System.Linq.IQueryable{``0},NHibernate.CacheMode)"]

Return Value

[Missing <returns> documentation for "M:NHibernate.Linq.LinqExtensionMethods.CacheMode``1(System.Linq.IQueryable{``0},NHibernate.CacheMode)"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQueryable<(Of <(<'T>)>)>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also