简体   繁体   English

实体框架4.0和DDD模式

[英]Entity Framework 4.0 and DDD patterns

I use EntityFramework as ORM and I have simple POCO Domain Model with two base classes that represent Value Object and Entity Object Patterns (Evans). 我将EntityFramework用作ORM,我有一个简单的POCO域模型,带有两个表示值对象和实体对象模式(Evans)的基类。 These two patterns is all about equality of two objects, so I overrode Equals and GetHashCode methods. 这两种模式都是关于两个对象的相等性,因此我覆盖了Equals和GetHashCode方法。 Here are these two classes: 这是这两个类:

 public abstract class EntityObject<T>{
        protected T _ID = default(T);

        public T ID {
            get { return _ID; }
            protected set { _ID = value; }
        }

        public sealed override bool Equals(object obj) {
            EntityObject<T> compareTo = obj as EntityObject<T>;
            return (compareTo != null) &&
            ((HasSameNonDefaultIdAs(compareTo) ||
            (IsTransient && compareTo.IsTransient)) &&
            HasSameBusinessSignatureAs(compareTo));
        }       

        public virtual void MakeTransient() {
            _ID = default(T);            

        }

        public bool IsTransient {
            get {
                return _ID == null || _ID.Equals(default(T));
            }
        }

        public override int GetHashCode() {
            if (default(T).Equals(_ID))
                return 0;
            return _ID.GetHashCode();
        }

        private bool HasSameBusinessSignatureAs(EntityObject<T> compareTo) {
            return ToString().Equals(compareTo.ToString());
        }

        private bool HasSameNonDefaultIdAs(EntityObject<T> compareTo) {
            return (_ID != null && !_ID.Equals(default(T))) &&
            (compareTo._ID != null && !compareTo._ID.Equals(default(T))) &&
            _ID.Equals(compareTo._ID);
        }

        public override string ToString() {
            StringBuilder str = new StringBuilder();
            str.Append(" Class: ").Append(GetType().FullName);
            if (!IsTransient)
                str.Append(" ID: " + _ID);
            return str.ToString();
        }
    }

public abstract class ValueObject<T, U> : IEquatable<T> where T : ValueObject<T, U> {
        private static List<PropertyInfo> Properties { get; set; }
        private static Func<ValueObject<T, U>, PropertyInfo, object[], object> _GetPropValue;

        static ValueObject() {
            Properties = new List<PropertyInfo>();           
            var propParam = Expression.Parameter(typeof(PropertyInfo), "propParam");
            var target = Expression.Parameter(typeof(ValueObject<T, U>), "target");
            var indexPar = Expression.Parameter(typeof(object[]), "indexPar");            
            var call = Expression.Call(propParam, typeof(PropertyInfo).GetMethod("GetValue", new[] { typeof(object), typeof(object[]) }),
                new[] { target, indexPar });
            var lambda = Expression.Lambda<Func<ValueObject<T, U>, PropertyInfo, object[], object>>(call, target, propParam, indexPar);
            _GetPropValue = lambda.Compile();                            
        }

        public U ID { get; protected set; }        

        public override Boolean Equals(Object obj) {
            if (ReferenceEquals(null, obj)) return false;
            if (obj.GetType() != GetType()) return false;
            return Equals(obj as T);
        }

        public Boolean Equals(T other) {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            foreach (var property in Properties) {
                var oneValue = _GetPropValue(this, property, null);
                var otherValue = _GetPropValue(other, property, null);
                if (null == oneValue && null == otherValue) return false;
                if (false == oneValue.Equals(otherValue)) return false;
            }
            return true;
        }

        public override Int32 GetHashCode() {
            var hashCode = 36;
            foreach (var property in Properties) {
                var propertyValue = _GetPropValue(this, property, null);               
                if (null == propertyValue)
                    continue;
                hashCode = hashCode ^ propertyValue.GetHashCode();
            }
            return hashCode;
        }

        public override String ToString() {
            var stringBuilder = new StringBuilder();
            foreach (var property in Properties) {
                var propertyValue = _GetPropValue(this, property, null); 
                if (null == propertyValue)
                    continue;
                stringBuilder.Append(propertyValue.ToString());
            }
            return stringBuilder.ToString();
        }

        protected static void RegisterProperty(Expression<Func<T, Object>> expression) {           
            MemberExpression memberExpression;
            if (ExpressionType.Convert == expression.Body.NodeType) {
                var body = (UnaryExpression)expression.Body;
                memberExpression = body.Operand as MemberExpression;
            }
            else 
                memberExpression = expression.Body as MemberExpression;
            if (null == memberExpression) 
                throw new InvalidOperationException("InvalidMemberExpression");           
            Properties.Add(memberExpression.Member as PropertyInfo);
        }
    }

Everything was OK until I tried to delete some related objects (aggregate root object with two dependent objects which was marked for cascade deletion): I've got an exception "The relationship could not be changed because one or more of the foreign-key properties is non-nullable". 一切正常,直到我尝试删除一些相关对象(将根对象与两个从属对象聚合在一起,并标记为级联删除):我遇到了一个异常“由于一个或多个外键属性,该关系无法更改是不可为空的”。 I googled this and found http://blog.abodit.com/2010/05/the-relationship-could-not-be-changed-because-one-or-more-of-the-foreign-key-properties-is-non-nullable/ I changed GetHashCode to base.GetHashCode() and error disappeared. 我在Google上搜索了一下,发现http://blog.abodit.com/2010/05/the-relationship-could-not-be-changed-because-因为-one-or-more-of-the-foreign-key-properties- is -non-nullable /我将GetHashCode更改为base.GetHashCode(),错误消失了。 But now it breaks all my code: I can't override GetHashCode for my POCO objects => I can't override Equals => I can't implement Value Object and Entity Object patters for my POCO objects. 但是现在它破坏了我的所有代码:我无法为POCO对象覆盖GetHashCode =>我无法覆盖Equals =>我无法为POCO对象实现Value Object和Entity Object模式。 So, I appreciate any solutions, workarounds here etc. 因此,我感谢任何解决方案,解决方法等。

If you want to override GetHashCode, you have to solve the problem directly. 如果要覆盖GetHashCode,则必须直接解决问题。 The problem sais: 问题说:

"The relationship could not be changed because one or more of the foreign-key properties is non-nullable"

So, 所以,
1. Find the not nullable field that used as a foreign key and make it nullable (so when you delete the record - the fk can be null). 1.查找用作外键的不可为空的字段并使它为可空(因此,当您删除记录时-fk可以为空)。
2. Don't mark the dependency as cascade deletion. 2.不要将依赖项标记为级联删除。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM