Beispiel #1
0
 protected void PrepareLogicalQueryPlan(string logicalQueryPlan)
 {
     _logicalQueryPlanRows = QueryPlanRow.PrepareQueryPlan <LogicalQueryPlanRow>(logicalQueryPlan);
     NotifyOfPropertyChange(() => LogicalQueryPlanRows);
 }
Beispiel #2
0
 protected void PreparePhysicalQueryPlan(string physicalQueryPlan)
 {
     _physicalQueryPlanRows.AddRange(QueryPlanRow.PrepareQueryPlan <PhysicalQueryPlanRow>(physicalQueryPlan, _physicalQueryPlanRows.Count));
     NotifyOfPropertyChange(() => PhysicalQueryPlanRows);
 }