Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataEntityDesign / Design / System / Data / Entity / Design / AspNet / EntityDesignerBuildProvider.cs / 1 / EntityDesignerBuildProvider.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Collections.Generic; using System.CodeDom; using System.CodeDom.Compiler; using System.Globalization; using System.IO; using System.Text; using System.Web.Hosting; using System.Web.Compilation; using System.Xml; using System.Data.Metadata.Edm; namespace System.Data.Entity.Design.AspNet { ////// The ASP .NET Build provider for the CSDL in ADO .NET /// /// [BuildProviderAppliesTo(BuildProviderAppliesTo.Code)] public class EntityDesignerBuildProvider : System.Web.Compilation.BuildProvider { ////// Default constructor /// public EntityDesignerBuildProvider() { } ////// We want ASP .NET to always reset the app domain when we have to rebuild /// /// ///public override BuildProviderResultFlags GetResultFlags(CompilerResults results) { return BuildProviderResultFlags.ShutdownAppDomainOnChange; } /// /// Extract the CSDL, SSDL and MSL nodes from the EDMX file and store them /// as embedded resources /// /// public override void GenerateCode(AssemblyBuilder assemblyBuilder) { using (StreamReader edmxInputStream = new StreamReader(VirtualPathProvider.OpenFile(base.VirtualPath))) { // load up an XML document representing the edmx file XmlElement conceptualSchemaElement; XmlElement mappingElement; XmlElement storageSchemaElement; string embedAsResourcePropertyValue; EntityDesignerUtils.ExtractConceptualMappingAndStorageNodes(edmxInputStream, out conceptualSchemaElement, out mappingElement, out storageSchemaElement, out embedAsResourcePropertyValue); if (null == conceptualSchemaElement) { throw new XmlException("No Conceptual Schema node to embed as a resource", null, 0, 0); } if (null == storageSchemaElement) { throw new XmlException("No Storage Schema node to embed as a resource", null, 0, 0); } if (null == mappingElement) { throw new XmlException("No Mapping node to embed as a resource", null, 0, 0); } // construct output paths where the CSDL/MSL/SSDL resources will be placed string virtualPathPrefix = base.VirtualPath.Replace(EntityDesignerUtils._edmxFileExtension, String.Empty); string conceptualVirtualPath = virtualPathPrefix + XmlConstants.CSpaceSchemaExtension; string storageVirtualPath = virtualPathPrefix + XmlConstants.SSpaceSchemaExtension; string mappingVirtualPath = virtualPathPrefix + XmlConstants.CSSpaceSchemaExtension; SetupEmbeddedResource(assemblyBuilder, this, conceptualSchemaElement, conceptualVirtualPath); SetupEmbeddedResource(assemblyBuilder, this, storageSchemaElement, storageVirtualPath); SetupEmbeddedResource(assemblyBuilder, this, mappingElement, mappingVirtualPath); } } private static void SetupEmbeddedResource(AssemblyBuilder assemblyBuilder, BuildProvider prov, XmlElement xmlElement, string resourcePath) { // derive the resource name string name = resourcePath.Replace("/", "."); if (name.StartsWith(".", StringComparison.Ordinal)) { name = name.Substring(1); } using (Stream resStream = assemblyBuilder.CreateEmbeddedResource(prov, name)) { EntityDesignerUtils.OutputXmlElementToStream(xmlElement, resStream); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //--------------------------------------------------------------------- using System.Collections.Generic; using System.CodeDom; using System.CodeDom.Compiler; using System.Globalization; using System.IO; using System.Text; using System.Web.Hosting; using System.Web.Compilation; using System.Xml; using System.Data.Metadata.Edm; namespace System.Data.Entity.Design.AspNet { ////// The ASP .NET Build provider for the CSDL in ADO .NET /// /// [BuildProviderAppliesTo(BuildProviderAppliesTo.Code)] public class EntityDesignerBuildProvider : System.Web.Compilation.BuildProvider { ////// Default constructor /// public EntityDesignerBuildProvider() { } ////// We want ASP .NET to always reset the app domain when we have to rebuild /// /// ///public override BuildProviderResultFlags GetResultFlags(CompilerResults results) { return BuildProviderResultFlags.ShutdownAppDomainOnChange; } /// /// Extract the CSDL, SSDL and MSL nodes from the EDMX file and store them /// as embedded resources /// /// public override void GenerateCode(AssemblyBuilder assemblyBuilder) { using (StreamReader edmxInputStream = new StreamReader(VirtualPathProvider.OpenFile(base.VirtualPath))) { // load up an XML document representing the edmx file XmlElement conceptualSchemaElement; XmlElement mappingElement; XmlElement storageSchemaElement; string embedAsResourcePropertyValue; EntityDesignerUtils.ExtractConceptualMappingAndStorageNodes(edmxInputStream, out conceptualSchemaElement, out mappingElement, out storageSchemaElement, out embedAsResourcePropertyValue); if (null == conceptualSchemaElement) { throw new XmlException("No Conceptual Schema node to embed as a resource", null, 0, 0); } if (null == storageSchemaElement) { throw new XmlException("No Storage Schema node to embed as a resource", null, 0, 0); } if (null == mappingElement) { throw new XmlException("No Mapping node to embed as a resource", null, 0, 0); } // construct output paths where the CSDL/MSL/SSDL resources will be placed string virtualPathPrefix = base.VirtualPath.Replace(EntityDesignerUtils._edmxFileExtension, String.Empty); string conceptualVirtualPath = virtualPathPrefix + XmlConstants.CSpaceSchemaExtension; string storageVirtualPath = virtualPathPrefix + XmlConstants.SSpaceSchemaExtension; string mappingVirtualPath = virtualPathPrefix + XmlConstants.CSSpaceSchemaExtension; SetupEmbeddedResource(assemblyBuilder, this, conceptualSchemaElement, conceptualVirtualPath); SetupEmbeddedResource(assemblyBuilder, this, storageSchemaElement, storageVirtualPath); SetupEmbeddedResource(assemblyBuilder, this, mappingElement, mappingVirtualPath); } } private static void SetupEmbeddedResource(AssemblyBuilder assemblyBuilder, BuildProvider prov, XmlElement xmlElement, string resourcePath) { // derive the resource name string name = resourcePath.Replace("/", "."); if (name.StartsWith(".", StringComparison.Ordinal)) { name = name.Substring(1); } using (Stream resStream = assemblyBuilder.CreateEmbeddedResource(prov, name)) { EntityDesignerUtils.OutputXmlElementToStream(xmlElement, resStream); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DynamicRenderer.cs
- NativeCompoundFileAPIs.cs
- ZipPackagePart.cs
- TreeViewCancelEvent.cs
- XmlRootAttribute.cs
- ToolStripDesignerAvailabilityAttribute.cs
- SHA384CryptoServiceProvider.cs
- HelpInfo.cs
- XmlLanguage.cs
- HttpInputStream.cs
- ObjectNotFoundException.cs
- CodeSnippetStatement.cs
- RootAction.cs
- EntityReference.cs
- TreeViewItem.cs
- StringOutput.cs
- UrlMapping.cs
- ProfilePropertySettings.cs
- PropertyOverridesDialog.cs
- FormViewModeEventArgs.cs
- ValueSerializer.cs
- Visitors.cs
- BinaryFormatter.cs
- SimpleApplicationHost.cs
- Flowchart.cs
- Parallel.cs
- InstallerTypeAttribute.cs
- fixedPageContentExtractor.cs
- DataControlButton.cs
- _WinHttpWebProxyDataBuilder.cs
- EntitySetRetriever.cs
- RedirectionProxy.cs
- ADConnectionHelper.cs
- CodePageUtils.cs
- CellConstantDomain.cs
- ApplicationGesture.cs
- ConfigXmlWhitespace.cs
- BindingOperations.cs
- FixedBufferAttribute.cs
- DataGridViewRowStateChangedEventArgs.cs
- DataViewListener.cs
- RegisterInfo.cs
- RegularExpressionValidator.cs
- EntityClassGenerator.cs
- NamespaceTable.cs
- CompilerGlobalScopeAttribute.cs
- RemotingAttributes.cs
- KeyValuePair.cs
- XmlDictionaryWriter.cs
- PopOutPanel.cs
- ShimAsPublicXamlType.cs
- AutomationPattern.cs
- _ConnectionGroup.cs
- HttpInputStream.cs
- HtmlFormWrapper.cs
- ReflectionTypeLoadException.cs
- SmiEventSink_Default.cs
- DBDataPermission.cs
- TabItem.cs
- NamespaceExpr.cs
- IPGlobalProperties.cs
- SourceChangedEventArgs.cs
- ThreadSafeList.cs
- PathFigureCollection.cs
- keycontainerpermission.cs
- RadioButtonFlatAdapter.cs
- DesignConnectionCollection.cs
- SqlInternalConnectionSmi.cs
- Point.cs
- Soap.cs
- AvTraceFormat.cs
- ChangeBlockUndoRecord.cs
- LineSegment.cs
- TextSelection.cs
- ipaddressinformationcollection.cs
- XmlWhitespace.cs
- InstancePersistence.cs
- SoapEnumAttribute.cs
- DbParameterCollectionHelper.cs
- Int32CAMarshaler.cs
- InternalPermissions.cs
- CodeDomDesignerLoader.cs
- MimeTypeMapper.cs
- PersonalizationState.cs
- ReflectionHelper.cs
- CodeGeneratorOptions.cs
- SuppressMessageAttribute.cs
- CompositeCollectionView.cs
- WeakReferenceEnumerator.cs
- ExceptionValidationRule.cs
- CodeCommentStatementCollection.cs
- SemaphoreFullException.cs
- DataControlFieldCollection.cs
- StringOutput.cs
- MimePart.cs
- InputEventArgs.cs
- AudioLevelUpdatedEventArgs.cs
- SymLanguageType.cs
- DecoderReplacementFallback.cs
- XslNumber.cs