我们模型中的大多数表都有一个名为“intConcurrencyID”的字段,我们打算将其用于并发检查。我相信在 Database First 环境中启用此字段以进行并发检查的唯一方法是将并发模式设置为固定。
但是,如果每个 EDMX 有大量表,我们将很难手动配置每个实体的每种类型,更不用说某些实体被忽略的可能性。
你对我如何自动化这个过程有什么想法吗?似乎 T4 模板不是要走的路,因为并发模式在 CSDL 中而不是在后面的代码中..
我们模型中的大多数表都有一个名为“intConcurrencyID”的字段,我们打算将其用于并发检查。我相信在 Database First 环境中启用此字段以进行并发检查的唯一方法是将并发模式设置为固定。
但是,如果每个 EDMX 有大量表,我们将很难手动配置每个实体的每种类型,更不用说某些实体被忽略的可能性。
你对我如何自动化这个过程有什么想法吗?似乎 T4 模板不是要走的路,因为并发模式在 CSDL 中而不是在后面的代码中..
我在更改属性的并发模式之前和之后查看了 edmx 文件,并提出了一个作为控制台应用程序的解决方案,它从“时间戳”列的存储模型开始解析 edmx 文件,并通过遵循映射修改概念模型。这是一个相当强大的解决方案,但它有一些警告。
我正在使用 MSSQL 2008,其时间戳/行版本是事实上的并发类型。在我的模型中,我只使用这种类型作为并发令牌。如果您在其他地方使用它,但对所有并发令牌使用一致的名称,我已经包含了可以取消注释的此场景的代码。如果您只是使用不同的并发类型并且该类型对于并发列是唯一的,则可以在这行代码中将类型从“时间戳”更改:
IEnumerable<XElement> storageEntities =
from el in ssdl.Descendants(XName.Get("EntityType",ssdlNS))
where (from prop in el.Elements(XName.Get("Property",ssdlNS)) where prop.Attribute("Type").Value == "timestamp" select prop).Count()>0
select el;
如果您的并发模式更复杂,则此代码将不够用。
话虽如此,我在大约一个小时内完成了它并运行了它,它在一个有近 200 个实体的模型上对我来说非常有用,为我节省了很多通过缓慢的 edmx 设计器的烦恼,所以我相信其他人会受益. 这是一个控制台应用程序,因此您可以将其放在模型项目的预构建步骤中,以将其集成到您的构建过程中。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml;
using System.Xml.Linq;
namespace ConfigureConcurrency
{
class Program
{
static void Main(string[] args)
{
string edmxPath = args[0]; //or replace with a fixed path
if (edmxPath == null || edmxPath.Length == 0)
return;
string edmxNS = @"http://schemas.microsoft.com/ado/2008/10/edmx";
string ssdlNS = @"http://schemas.microsoft.com/ado/2009/02/edm/ssdl";
string csdlNS = @"http://schemas.microsoft.com/ado/2008/09/edm";
string mapNS = @"http://schemas.microsoft.com/ado/2008/09/mapping/cs";
XElement root = XElement.Load(edmxPath);
//Storage Model
XElement ssdl = root.Descendants(XName.Get("StorageModels", edmxNS)).FirstOrDefault();
//Conceptual
XElement csdl = root.Descendants(XName.Get("ConceptualModels", edmxNS)).FirstOrDefault();
//Mapping
XElement map = root.Descendants(XName.Get("Mappings", edmxNS)).FirstOrDefault();
/*
Use this code instead of the line below it, if the type of your concurrency columns is used on other non-concurrency columns
and you use the same name for every concurrency column
string ConcurrencyColumnName = "RowVersion";
IEnumerable<XElement> storageEntities =
from el in ssdl.Descendants(XName.Get("EntityType", ssdlNS))
where (from prop in el.Elements(XName.Get("Property", ssdlNS)) where prop.Attribute("Name").Value == ConcurrencyColumnName select prop).Count() > 0
select el;
*/
IEnumerable<XElement> storageEntities =
from el in ssdl.Descendants(XName.Get("EntityType",ssdlNS))
where (from prop in el.Elements(XName.Get("Property",ssdlNS)) where prop.Attribute("Type").Value == "timestamp" select prop).Count()>0
select el;
//for each timestamp column, find the mapping then find the conceptual model property and establish the concurrency mode
foreach(XElement storageEntity in storageEntities)
{
//Get the mapping
XElement mapping = (from el in map.Descendants(XName.Get("EntityTypeMapping",mapNS)) where el.Element(XName.Get("MappingFragment",mapNS)).Attribute("StoreEntitySet").Value == storageEntity.Attribute("Name").Value select el).FirstOrDefault();
if (mapping != null)
{
//Get the column mapping
XElement column = (from el in storageEntity.Descendants(XName.Get("Property",ssdlNS)) where el.Attribute("Type").Value == "timestamp" select el).FirstOrDefault();
string columnName = column.Attribute("Name").Value;
XElement columnMapping = (from el in mapping.Descendants(XName.Get("ScalarProperty",mapNS)) where el.Attribute("ColumnName").Value == columnName select el).FirstOrDefault();
string propertyName = columnMapping.Attribute("Name").Value;
//Get the conceptual schema namespace and type name
string[] split = mapping.Attribute("TypeName").Value.Split('.');
string ns="", typeName =split[split.Length-1];
for (int i = 0; i < split.Length-1; i++)
{
if (i>0)
ns+=".";
ns += split[i];
}
//Find the entry in the conceptual model
XElement schema = (from el in csdl.Elements(XName.Get("Schema",csdlNS)) where el.Attribute("Namespace").Value == ns select el).FirstOrDefault();
if (schema != null)
{
//Find the entity type
XElement entity = (from el in schema.Descendants(XName.Get("EntityType",csdlNS)) where el.Attribute("Name").Value == typeName select el).FirstOrDefault();
//Find the property
XElement concurrencyProperty = (from el in entity.Elements(XName.Get("Property",csdlNS)) where el.Attribute("Name").Value == propertyName select el).FirstOrDefault();
//Set concurrency mode to fixed
concurrencyProperty.SetAttributeValue("ConcurrencyMode", "Fixed");
}
}
}
//Save the modifications
root.Save(edmxPath);
}
}
}
使用上述控制台应用程序解决了我的类似问题。但是,如果您正在运行更高版本的实体框架,请务必更新对模式的引用。我正在使用 EF 5,对我来说,我使用了以下几行:
string edmxNS = @"http://schemas.microsoft.com/ado/2009/11/edmx";
string ssdlNS = @"http://schemas.microsoft.com/ado/2009/11/edm/ssdl";
string csdlNS = @"http://schemas.microsoft.com/ado/2009/11/edm";
string mapNS = @"http://schemas.microsoft.com/ado/2009/11/mapping/cs";