Click or drag to resize

LinqExtensions Methods

The LinqExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberDomainEqual
If the objects are DomainObject this method uses == operator.
Public methodStatic memberEqualNull
Returns true if the object is equal to the value or the object is null.
Public methodStatic memberGreaterEqualNull
Returns true if the object is greater than or equal to the value or the object is null.
Public methodStatic memberIn(Guid, IEnumerable)
Returns true if list contains the specified id. Primarily intended for use inside IQueryable/IEnumerable queries
Public methodStatic memberIn(NullableGuid, IEnumerable)
Returns true if list contains the specified id. Primarily intended for use inside IQueryable/IEnumerable queries
Public methodStatic memberIn(Object, IEnumerable)
Returns true if list contains the specified object. Primarily intended for use inside IQueryable/IEnumerable queries
Public methodStatic memberLessEqualNull
Returns true if the object is less than or equal to the value or the object is null.
Public methodStatic memberLike
Returns a bool indicating whether the string mathes the given like pattern (use '%' for wildchar)
Public methodStatic memberPreloadTSource(IEnumerableTSource)
Preloads the full object state for all objects in source.
Public methodStatic memberPreloadTSource(IEnumerableTSource, ILazyProperty)
Preloads the value of the specified lazy property for the objects in the sequence.
Public methodStatic memberPreloadTSource, TResult(IEnumerableTSource, ExpressionFuncTSource, TResult)
Preloads the full object state for all objects returned by applying the expression to each element in source. This is still a research method, which will be renamed later to .Preload().
Top
See Also