如何以编程方式生成CSDL和MSL文件?

时间:2015-06-01 14:06:29

标签: c# .net entity-framework orm edmx

我正在尝试使用C#语言实现动态ORM模型生成。因为工作中的任务,我需要这个。

我已经实现了如何在C#中以编程方式创建SSDL文件。我正在使用EntityStoreSchemaGenerator类,它以这种方式写入数据:

var store = new EntityStoreSchemaGenerator(providerInvariantName, connectionString, "ShoppingModel");
store.GenerateStoreMetadata();
store.WriteStoreSchema(filePath);

我可以向您展示我获得的示例SSDL文件:http://pastebin.com/3U4A6fY9

没关系,但是如何获取CSDL和MSL文件?

据我了解,需要使用EntityModelSchemaGenerator类来实现System.Data.Entity.Design命名空间中用于生成CSDL和MSL文件的目标。

如果要查看https://msdn.microsoft.com/en-us/library/system.data.entity.design.entitymodelschemagenerator_methods(v=vs.110).aspx

有几种方法:

  • WriteModelSchema(String)将生成的概念架构定义语言(CSDL)写入指定的文件。
  • WriteModelSchema(XmlWriter)将生成的概念架构定义语言(CSDL)写入XmlWriter对象。
  • WriteStorageMapping(String)将生成的映射规范语言(MSL)写入指定的文件。
  • WriteStorageMapping(XmlWriter)将生成的映射规范语言(MSL)写入XmlWriter对象。

可用于生成所需文件(CSDL&& MSL)。 但我很困惑......如果EntityModelSchemaGenerator构造函数需要System.Data.Metadata.Edm.EntityContainer,如何生成它们。

据我所知,我必须使用EntityConnection类准备一些实体容器。

但是,我如何构建实体连接,如果我的目标是创建* .csdl&,则需要创建所有元数据文件(* .csdl,* .ssdl,* .msl)。 * .msl文件以前?

所以在创建所有元数据文件之前,我无法使用EntityModelSchemaGenerator?那么创建* .csdl和* .msl文件的方式是什么(* .ssdl文件已完成)?

1 个答案:

答案 0 :(得分:1)

我已经使用

解决了我的问题

Models = new EntityModelSchemaGenerator(Store.StoreItemCollection, "ShoppingModelConceptual", "ShoppingModelConceptualContainer");

这是基于之前准备的商店项目集合。

http://pastebin.com/B0gbzuin

using System;
using System.Data.Common;
using System.Data.SqlClient;
using System.Data.Entity;
using System.Data.EntityClient;
using System.Data.Entity.Design;
using System.Data.Entity.Infrastructure;

namespace DynamicOrm1
{
    class Generators
    {
        internal EntityModelSchemaGenerator Models { get; set; }
        internal EntityClassGenerator Classes { get; set; }
        internal EntityCodeGenerator Code { get; set; }
        internal EntityViewGenerator Views { get; set; }
        internal EntityStoreSchemaGenerator Store { get; set; }

        const string connectionString = "Server = MSSQL2014; Database = test.shop; Trusted_Connection = True;";
        const string providerInvariantName = "System.Data.SqlClient";

        public Generators()
        {
            InitializeSettings();
        }

        private void InitializeSettings()
        {
            Classes = new EntityClassGenerator(LanguageOption.GenerateCSharpCode);
            Code = new EntityCodeGenerator(LanguageOption.GenerateCSharpCode);
            Views = new EntityViewGenerator(LanguageOption.GenerateCSharpCode);
            Store = new EntityStoreSchemaGenerator(providerInvariantName, connectionString, "ShoppingModelStore");

            Store.GenerateForeignKeyProperties = true;
        }

        internal void CreateSsdlFile(string filePath)
        {
            if (filePath == String.Empty)
                throw new Exception("Can't create the SSDL file, because the given file path is an empty string.");

            Store.GenerateStoreMetadata();
            Store.WriteStoreSchema(filePath);
        }

        internal void CreateCsdlAndMslFile(string csdlFilePath, string mslFilePath)
        {
            if (Store == null)
                throw new Exception("Can't create the CSDL and MSL files, because the `Store` object is null.");

            Models = new EntityModelSchemaGenerator(Store.StoreItemCollection, "ShoppingModelConceptual", "ShoppingModelConceptualContainer");
            Models.GenerateMetadata();
            Models.WriteModelSchema(csdlFilePath);
            Models.WriteStorageMapping(mslFilePath);
        }
    }

    class Program
    {
        private static Generators EntityGenerators { get; set; }

        [STAThread]
        static void Main()
        {
            try
            {
                EntityGenerators = new Generators();
                EntityGenerators.CreateSsdlFile(@"\shopping.ssdl.xml");
                EntityGenerators.CreateCsdlAndMslFile(@"\shopping.csdl.xml", @"\shopping.msl.xml");
            }
            catch (Exception exception)
            {
                Console.WriteLine(exception.Message);
            }
        }
    }
}