Giter VIP home page Giter VIP logo

Comments (4)

JonathanMagnan avatar JonathanMagnan commented on June 12, 2024

Hello @neoGeneva ,

Thank you for reporting, we will look at it today.

We will change all backslashes for foward slashes which seem to be the standard everywhere.

Best Regards,

Jonathan

from entityframework-classic.

neoGeneva avatar neoGeneva commented on June 12, 2024

Hey, thanks for that.

I managed to get things working locally by writing my own implementation of UseDatabaseFirstManager.Execute(), note that I'm calling OutputXml() twice, once with the full path and a second time with just the name because after fixing the slashes (which solved my initial problem) I started getting The given key 'DataModel.csdl' was not present in the dictionary. when callingDbContextExtensions.UpdateFromQuery()

Here's my working hack:

namespace Z.EntityFramework.Classic.Hacks
{
    // THIS IS A HACK TO DEAL WITH Z.EntityFramework.Classic ASSUMING WINDOWS PATHS
    internal class UseDatabaseFirstManager
    {
        internal static void Execute(string modelName)
        {
            var path = Path.Combine(Directory.GetCurrentDirectory(), modelName);
            var fileInfo = new FileInfo(path);

            using (StreamReader reader = new StreamReader(fileInfo.FullName))
            {
                // GET model element
                XmlElement conceptualSchemaElement;
                XmlElement mappingElement;
                XmlElement storageSchemaElement;
                string processingValue;
                EntityDesignerUtils.ExtractConceptualMappingAndStorageNodes(reader, out conceptualSchemaElement, out mappingElement, out storageSchemaElement, out processingValue);

                // SAVE model element
                OutputXml(Path.ChangeExtension(fileInfo.FullName, "csdl"), conceptualSchemaElement);
                OutputXml(Path.ChangeExtension(fileInfo.Name, "csdl"), conceptualSchemaElement);
                OutputXml(Path.ChangeExtension(fileInfo.FullName, "msl"), mappingElement);
                OutputXml(Path.ChangeExtension(fileInfo.Name, "msl"), mappingElement);
                OutputXml(Path.ChangeExtension(fileInfo.FullName, "ssdl"), storageSchemaElement);
                OutputXml(Path.ChangeExtension(fileInfo.Name, "ssdl"), storageSchemaElement);
            }
        }

        private static void OutputXml(string outputPath, XmlElement xmlElement)
        {
            var type = Type.GetType("Z.EntityFramework.Classic.UseDatabaseFirstManager, Z.EntityFramework.Classic, Version=7.0.0.0, Culture=neutral, PublicKeyToken=afc61983f100d280");
            var method = type.GetMethod("OutputXml", BindingFlags.Static | BindingFlags.NonPublic);

            method.Invoke(null, new object[] { outputPath, xmlElement });
        }
    }

    internal static class EntityDesignerUtils
    {
        internal static void ExtractConceptualMappingAndStorageNodes(StreamReader edmxInputStream, out XmlElement conceptualSchemaNode, out XmlElement mappingNode, out XmlElement storageSchemaNode, out string metadataArtifactProcessingValue)
        {
            var type = Type.GetType("Z.EntityFramework.Classic.EntityDesignerUtils, Z.EntityFramework.Classic, Version=7.0.0.0, Culture=neutral, PublicKeyToken=afc61983f100d280");
            var method = type.GetMethod("ExtractConceptualMappingAndStorageNodes", BindingFlags.Static | BindingFlags.NonPublic);

            var parameters = new object[] { edmxInputStream, null, null, null, null };

            method.Invoke(null, parameters);

            conceptualSchemaNode = (XmlElement)parameters[1];
            mappingNode = (XmlElement)parameters[2];
            storageSchemaNode = (XmlElement)parameters[3];
            metadataArtifactProcessingValue = (string)parameters[4];
        }
    }
}

from entityframework-classic.

JonathanMagnan avatar JonathanMagnan commented on June 12, 2024

Nice hack ;)

Unfortunately, EFE has been built with windows path as well otherwise your fix would have worked great.

A new version v7.0.15 has been released.

We should now replace all \ by / to support all systems.

Let me know if that is working correctly on your side.

Best Regards,

Jonathan

from entityframework-classic.

neoGeneva avatar neoGeneva commented on June 12, 2024

Thanks! I've got the latest version and it works great, so thanks again!

from entityframework-classic.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.