ExternalCalls.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / ndp / fx / src / DataEntity / System / Data / Map / ViewGeneration / Utils / ExternalCalls.cs / 2 / ExternalCalls.cs

                            //---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner [....]
// @backupOwner [....] 
//--------------------------------------------------------------------- 

 
using System.Data.Mapping.ViewGeneration.Structures;
using System.Data.Common.CommandTrees;
using System.Data.Common.EntitySql;
using System.Data.Metadata.Edm; 
using System.Diagnostics;
using System.Collections.Generic; 
 
namespace System.Data.Mapping.ViewGeneration.Utils {
 
    // This class encapsulates "external" calls from view generation
    // to other System.Data.Entity components
    internal static class ExternalCalls {
        static internal bool IsReservedKeyword(string name) { 
            return CqlLexer.IsReservedKeyword(name);
        } 
 
        static internal DbCommandTree CompileView(string viewDef, MetadataWorkspace metadataWorkspace, ParserOptions.CompilationMode compilationMode) {
            Perspective perspective = new TargetPerspective(metadataWorkspace); 
            ParserOptions parserOptions = new ParserOptions();
            parserOptions.ParserCompilationMode = compilationMode;
            DbCommandTree expr = CqlQuery.Compile(viewDef, perspective, parserOptions, null, null, true);
            Debug.Assert(expr != null, "Compile returned empty tree?"); 
            return expr;
        } 
 

     static internal ItemCollection GetItemCollection(MetadataWorkspace workspace, DataSpace space) { 
            return workspace.GetItemCollection(space);
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//---------------------------------------------------------------------- 
// 
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// 
// @owner [....]
// @backupOwner [....] 
//--------------------------------------------------------------------- 

 
using System.Data.Mapping.ViewGeneration.Structures;
using System.Data.Common.CommandTrees;
using System.Data.Common.EntitySql;
using System.Data.Metadata.Edm; 
using System.Diagnostics;
using System.Collections.Generic; 
 
namespace System.Data.Mapping.ViewGeneration.Utils {
 
    // This class encapsulates "external" calls from view generation
    // to other System.Data.Entity components
    internal static class ExternalCalls {
        static internal bool IsReservedKeyword(string name) { 
            return CqlLexer.IsReservedKeyword(name);
        } 
 
        static internal DbCommandTree CompileView(string viewDef, MetadataWorkspace metadataWorkspace, ParserOptions.CompilationMode compilationMode) {
            Perspective perspective = new TargetPerspective(metadataWorkspace); 
            ParserOptions parserOptions = new ParserOptions();
            parserOptions.ParserCompilationMode = compilationMode;
            DbCommandTree expr = CqlQuery.Compile(viewDef, perspective, parserOptions, null, null, true);
            Debug.Assert(expr != null, "Compile returned empty tree?"); 
            return expr;
        } 
 

     static internal ItemCollection GetItemCollection(MetadataWorkspace workspace, DataSpace space) { 
            return workspace.GetItemCollection(space);
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK