Table of Contents

Interface IFrozenQuery<T>

Namespace
The.Linq
Assembly
Instagile.dll

'Frozen' queries have stable membership - even if the backing store changes, newly-created elements will not be returned.

public interface IFrozenQuery<out T> : IEntityQuery<T>, IEntityQuery, IDisposable

Type Parameters

T
Inherited Members
Extension Methods

Properties

Count

Gets the number of elements that were present when the query was frozen.

int Count { get; }

Property Value

int

Methods

IsInMemory()

Returns true if the frozen query is at least partially-loaded. In-memory queries should not be transformed into ReadOperations for batching.

bool IsInMemory()

Returns

bool

TryPetrify(out QueryToken?)

bool TryPetrify(out QueryToken? iceCube)

Parameters

iceCube QueryToken

Returns

bool