EntityViewGenerationConstants.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntityDesign / Design / System / Data / Entity / Design / EntityViewGeneration / EntityViewGenerationConstants.cs / 1305376 / EntityViewGenerationConstants.cs

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

using System; 
using System.Collections.Generic;
using System.Text;

namespace System.Data.Entity.Design 
{
    internal static class EntityViewGenerationConstants 
    { 
        internal static readonly string NamespaceName = "Edm_EntityMappingGeneratedViews";
        internal static readonly string ViewGenerationCustomAttributeName = "System.Data.Mapping.EntityViewGenerationAttribute"; 
        internal static readonly string ViewGenerationTypeNamePrefix = "ViewsForBaseEntitySets";
        internal static readonly string BaseTypeName = "System.Data.Mapping.EntityViewContainer";
        internal static readonly string EdmEntityContainerName = "EdmEntityContainerName";
        internal static readonly string StoreEntityContainerName = "StoreEntityContainerName"; 
        internal static readonly string HashOverMappingClosure = "HashOverMappingClosure";
        internal static readonly string HashOverAllExtentViews = "HashOverAllExtentViews"; 
        internal static readonly string ViewCountPropertyName = "ViewCount"; 
        internal static readonly string GetViewAtMethodName = "GetViewAt";
        internal static readonly string SummaryStartElement = @""; 
        internal static readonly string SummaryEndElement = @"";
        internal static readonly char QualificationCharacter = '.';
    }
} 

// 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