File: System\Data\Entity\Design\EntityStoreSchemaGenerator\EntityStoreSchemaGenerator.EntityCreationStatus.cs
Project: ndp\fx\src\DataEntityDesign\Design\System.Data.Entity.Design.csproj (System.Data.Entity.Design)
//---------------------------------------------------------------------
// <copyright file="EntityStoreSchemaGenerator.EntityCreationStatus.cs" company="Microsoft">
//      Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//
// @owner       jeffreed
// @backupOwner srimand
//---------------------------------------------------------------------
namespace System.Data.Entity.Design
{
    public sealed partial class EntityStoreSchemaGenerator
    {
        private enum EntityCreationStatus
        {
            Normal,
            ReadOnly,
            Invalid
        }
    }
}