我们应该通过工厂实例化实体,因为它们在客户端和服务器上的设置不同。我想确保是这种情况,但无法完全正常工作。

public interface IEntityFactory
{
    TEntity Create<TEntity>() where TEntity : new();
}

public abstract class Entity
{
    protected Entity()
    {
        VerifyEntityIsCreatedThroughFactory();
    }

    [Conditional("DEBUG")]
    private void VerifyEntityIsCreatedThroughFactory()
    {
        foreach (var methodBase in new StackTrace().GetFrames().Select(x => x.GetMethod()))
        {
            if (!typeof(IEntityFactory).IsAssignableFrom(methodBase.DeclaringType)
                || methodBase.Name != "Create")
                continue;

            // The generic type is TEnitiy but I want the provided type!
            if (methodBase.GetGenericArguments()[0] != GetType())
                Debug.Fail(string.Format("Use factory when creating {0}.", GetType().Name));
        }
    }
}

最佳答案

是否可以从结构上而不是在运行时解决此问题?您是否可以将实体和工厂隔离在不同的程序集中,然后为实体构造函数指定internal作用域,以便只有工厂才能调用它们?

10-06 12:04