我有以下代码利用PostSharp在设置导航属性(用ForeignKeyAttribute标记)时自动设置属性(外键)。
反序列化大量实体时代码非常慢,所以我想知道在反序列化过程中是否有任何阻止代码运行的方法。
代码中仍然有一些漏洞,我仍然在努力,但我在断开连接的环境中首先使用实体框架代码,并且没有dbcontext为我提供这样的服务。
[Serializable]
public class ForeignKeySynchronisationAttribute : LocationInterceptionAspect
{
public override void OnSetValue(LocationInterceptionArgs args)
{
try
{
var foreignKeyIdSet = false;
var entity = args.Instance;
var propertyInfo = args.Location.PropertyInfo;
if (typeof(BaseEntity).IsAssignableFrom(propertyInfo.PropertyType))
{
// First look for metadata defined ForeignKeyAttribute
var metadata =
entity.GetType()
.GetCustomAttributes(typeof(MetadataTypeAttribute), true)
.OfType<MetadataTypeAttribute>()
.FirstOrDefault();
if (metadata != null)
{
var metadataProperty = metadata.MetadataClassType.GetProperty(propertyInfo.PropertyType.Name);
if (metadataProperty != null)
{
var foreignKeyAttribute = metadataProperty.GetCustomAttributes<ForeignKeyAttribute>().First();
if (foreignKeyAttribute != null)
{
var foreignKeyIdPropertyInfo = entity.GetType().GetProperty(foreignKeyAttribute.Name);
foreignKeyIdPropertyInfo.SetValue(entity, ((BaseEntity)args.Value).PrimaryKey);
foreignKeyIdSet = true;
}
}
}
// Then look for normally defined ForeignKeyAttribute
if (!foreignKeyIdSet)
{
var foreignKeyAttribute = propertyInfo.GetCustomAttributes<ForeignKeyAttribute>().First();
if (foreignKeyAttribute != null)
{
var foreignKeyIdPropertyInfo = entity.GetType().GetProperty(foreignKeyAttribute.Name);
foreignKeyIdPropertyInfo.SetValue(entity, ((BaseEntity)args.Value).PrimaryKey);
}
}
}
}
catch (Exception)
{
throw;
}
finally
{
base.OnSetValue(args);
}
}
}
答案 0 :(得分:0)
请注意我已经通过不同的方法完成了我的要求。
干杯
克雷格