public MemoryQueryExecution(source as IList<T>, plan as QueryPlan<T, R>):
Creates an execution over a snapshot of source references.
| Parameter | Description |
|---|---|
source | Source rows copied at execution creation. |
plan | Immutable plan. |
execution = MemoryQueryExecution<Int, Int>([1, 2], plan)