我正在尝试使用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文件的目标。
有几种方法:
可用于生成所需文件(CSDL&& MSL)。
但我很困惑......如果EntityModelSchemaGenerator
构造函数需要System.Data.Metadata.Edm.EntityContainer
,如何生成它们。
据我所知,我必须使用EntityConnection
类准备一些实体容器。
但是,我如何构建实体连接,如果我的目标是创建* .csdl&,则需要创建所有元数据文件(* .csdl,* .ssdl,* .msl)。 * .msl文件以前?
所以在创建所有元数据文件之前,我无法使用EntityModelSchemaGenerator
?那么创建* .csdl和* .msl文件的方式是什么(* .ssdl文件已完成)?
答案 0 :(得分:1)
我已经使用
解决了我的问题 Models = new EntityModelSchemaGenerator(Store.StoreItemCollection, "ShoppingModelConceptual", "ShoppingModelConceptualContainer");
这是基于之前准备的商店项目集合。
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);
}
}
}
}