コード例 #1
0
        internal static void Compile(
            cqt.DbCommandTree ctree, out List <ProviderCommandInfo> providerCommands, out ColumnMap resultColumnMap, out int columnCount,
            out Set <md.EntitySet> entitySets)
        {
            Assert(ctree != null, "Expected a valid, non-null Command Tree input");
            var pc = new PlanCompiler(ctree);

            pc.Compile(out providerCommands, out resultColumnMap, out columnCount, out entitySets);
        }
コード例 #2
0
ファイル: PlanCompiler.cs プロジェクト: junxy/entityframework
 internal static void Compile(
     cqt.DbCommandTree ctree, out List<ProviderCommandInfo> providerCommands, out ColumnMap resultColumnMap, out int columnCount,
     out Set<md.EntitySet> entitySets)
 {
     Assert(ctree != null, "Expected a valid, non-null Command Tree input");
     var pc = new PlanCompiler(ctree);
     pc.Compile(out providerCommands, out resultColumnMap, out columnCount, out entitySets);
 }