1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
namespace System.Data.Entity
{
using System.Collections.Generic;
using System.Data.Entity.Core;
using System.Data.Entity.Core.Mapping;
using System.Data.Entity.Core.Metadata.Edm;
using System.Data.Entity.ModelConfiguration.Edm;
using System.Data.Entity.ModelConfiguration.Edm.Serialization;
using System.Data.Entity.Utilities;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Xml;
using Xunit;
public static class DbDatabaseMappingExtensions
{
internal static void ShellEdmx(this DbDatabaseMapping databaseMapping, string fileName = "Dump.edmx")
{
new EdmxSerializer().Serialize(
databaseMapping, databaseMapping.Database.ProviderInfo,
XmlWriter.Create(
File.CreateText(fileName),
new XmlWriterSettings
{
Indent = true
}));
Process.Start(fileName);
}
internal static bool EdmxIsEqualTo(
this DbDatabaseMapping databaseMapping,
DbDatabaseMapping otherDatabaseMapping)
{
return SerializeToString(databaseMapping) == SerializeToString(otherDatabaseMapping);
}
internal static string SerializeToString(DbDatabaseMapping databaseMapping)
{
var edmx = new StringBuilder();
new EdmxSerializer().Serialize(
databaseMapping, databaseMapping.Database.ProviderInfo,
XmlWriter.Create(
edmx, new XmlWriterSettings
{
Indent = true
}));
return edmx.ToString();
}
internal static void AssertValid(this DbDatabaseMapping databaseMapping)
{
AssertValid(databaseMapping, false);
}
internal static void AssertValid(this DbDatabaseMapping databaseMapping, bool shouldThrow)
{
var storageItemMappingCollection = databaseMapping.ToStorageMappingItemCollection();
IList<EdmSchemaError> errors;
storageItemMappingCollection.GenerateEntitySetViews(out errors);
if (errors.Any())
{
var errorMessage = new StringBuilder();
errorMessage.AppendLine();
foreach (var error in errors)
{
errorMessage.AppendLine(error.ToString());
}
if (shouldThrow)
{
throw new MappingException(errorMessage.ToString());
}
Assert.True(false, errorMessage.ToString());
}
}
internal static StorageMappingItemCollection ToStorageMappingItemCollection(this DbDatabaseMapping databaseMapping)
{
DebugCheck.NotNull(databaseMapping);
return databaseMapping.ToStorageMappingItemCollection(
new EdmItemCollection(databaseMapping.Model),
new StoreItemCollection(databaseMapping.Database));
}
}
}
|