GigaSpaces XAP.NET Documentation
MinEntry<(Of <(T, S>)>) Method (source, selector)
Class LibraryGigaSpaces.Core.LinqSpaceProxyExtensionsMinEntry<(Of <(T, S>)>)(IQueryable<(Of <(T>)>), Expression<(Of <(Func<(Of <(T, S>)>)>)>))
Returns the minimal element of the given query, based on the given projection.
Declaration Syntax
C#Visual BasicVisual C++J#
public static T MinEntry<T, S>(
	IQueryable<T> source,
	Expression<Func<T, S>> selector
)
Public Shared Function MinEntry(Of T, S) ( _
	source As IQueryable(Of T), _
	selector As Expression(Of Func(Of T, S)) _
) As T
public:
generic<typename T, typename S>
static T MinEntry(
	IQueryable<T>^ source, 
	Expression<Func<T, S>^>^ selector
)
J# supports the use of generic APIs, but not the declaration of new ones.
Generic Template Parameters
T
Type of query result
S
Type of projected element
Parameters
source (IQueryable<(Of <(T>)>))
Query which produces potential results
selector (Expression<(Of <(Func<(Of <(T, S>)>)>)>))
Selector used to select the property used for comparison
Return Value
The minimal element matching the query, according to the projection

Assembly: GigaSpaces.Core (Module: GigaSpaces.Core) Version: 10.0.0.0 (10.0.1.11800)