是否可以在edmx模型内自动生成的.cs文件中批量重命名类(实体)名称?我需要所有实体的大写首字母,例如“帐户”需要更改为“帐户”。
partial class account
{
public long id { get; set; }
public int idPartner { get; set; }
public string accountName { get; set; }
}
Visual Studio一直在为已在生产环境中部署的项目中使用的MySql表生成小写名称,并且表名无法更改。
我知道可以使用edmx设计器中的属性窗口更改映射,但是由于表太多,在这种情况下它没有用。有没有可以做到这一点的工具?如果没有,那么修改edmx和其他文件的确切步骤是什么,以便我可以创建用于批量修改所有实体的工具?
最佳答案
我不确定Entity Framework 6是否比EF 5有所改善。我在EF 5上遇到了类似的问题,并且找到了一种解决方案,其中我能够成功转换VS生成的EDMX。基本上,这是一个控制台应用程序,它接收EDMX文件并对其进行转换。
我只是(成功地)使用了该工具。您可以在此处找到带有注释的原件:https://www.tabsoverspaces.com/233202-changing-entity-names-i-e-removing-prefix-in-entity-frameworks-edmx-in-batch/
感谢JiříČinčura(www.tabsoverspaces.com)
下面是代码:
static void TransformEDMXEntities(string inputFile, string outputFile)
{
XDocument xdoc = XDocument.Load(inputFile);
const string CSDLNamespace = "http://schemas.microsoft.com/ado/2009/11/edm";
const string MSLNamespace = "http://schemas.microsoft.com/ado/2009/11/mapping/cs";
const string DesignerNamespace = "http://schemas.microsoft.com/ado/2009/11/edmx";
XElement csdl = xdoc.Descendants(XName.Get("Schema", CSDLNamespace)).First();
XElement msl = xdoc.Descendants(XName.Get("Mapping", MSLNamespace)).First();
XElement designerDiagram = xdoc.Descendants(XName.Get("Designer", DesignerNamespace)).First();
Func<string, string> transformation = (string input) =>
{
const string PREFIX = "tbl";
Regex re = new Regex(string.Format(@"{0}(\w+)", Regex.Escape(PREFIX)), RegexOptions.None);
return re.Replace(input, new MatchEvaluator(
(Match m) =>
{
return m.Groups[1].Value;
}));
};
TransformCSDL(CSDLNamespace, csdl, transformation);
TransformMSL(MSLNamespace, msl, transformation);
TransformDesigner(DesignerNamespace, designerDiagram, transformation);
using (XmlTextWriter writer = new XmlTextWriter(outputFile, Encoding.Default))
{
xdoc.WriteTo(writer);
}
}
static void TransformDesigner(string DesignerNamespace, XElement designerDiagram, Func<string, string> transformation)
{
foreach (var item in designerDiagram.Elements(XName.Get("EntityTypeShape", DesignerNamespace)))
{
item.Attribute("EntityType").Value = transformation(item.Attribute("EntityType").Value);
}
}
static void TransformMSL(string MSLNamespace, XElement msl, Func<string, string> transformation)
{
foreach (var entitySetMapping in msl.Element(XName.Get("EntityContainerMapping", MSLNamespace)).Elements(XName.Get("EntitySetMapping", MSLNamespace)))
{
entitySetMapping.Attribute("Name").Value = transformation(entitySetMapping.Attribute("Name").Value);
foreach (var entityTypeMapping in entitySetMapping.Elements(XName.Get("EntityTypeMapping", MSLNamespace)))
{
entityTypeMapping.Attribute("TypeName").Value = transformation(entityTypeMapping.Attribute("TypeName").Value);
}
}
}
static void TransformCSDL(string CSDLNamespace, XElement csdl, Func<string, string> transformation)
{
foreach (var entitySet in csdl.Element(XName.Get("EntityContainer", CSDLNamespace)).Elements(XName.Get("EntitySet", CSDLNamespace)))
{
entitySet.Attribute("Name").Value = transformation(entitySet.Attribute("Name").Value);
entitySet.Attribute("EntityType").Value = transformation(entitySet.Attribute("EntityType").Value);
}
foreach (var associationSet in csdl.Element(XName.Get("EntityContainer", CSDLNamespace)).Elements(XName.Get("AssociationSet", CSDLNamespace)))
{
foreach (var end in associationSet.Elements(XName.Get("End", CSDLNamespace)))
{
end.Attribute("EntitySet").Value = transformation(end.Attribute("EntitySet").Value);
}
}
foreach (var entityType in csdl.Elements(XName.Get("EntityType", CSDLNamespace)))
{
entityType.Attribute("Name").Value = transformation(entityType.Attribute("Name").Value);
}
foreach (var association in csdl.Elements(XName.Get("Association", CSDLNamespace)))
{
foreach (var end in association.Elements(XName.Get("End", CSDLNamespace)))
{
end.Attribute("Type").Value = transformation(end.Attribute("Type").Value);
}
}
}
关于c# - 首先在 Entity Framework 数据库中批量重命名类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44421471/