我们应该通过工厂实例化我们的实体,因为它们在客户端和服务器上的设置不同。我想确保情况确实如此,但是无法让它发挥作用。
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));
}
}
}
答案 0 :(得分:2)
可以在结构上而不是在运行时解决这个问题吗?您可以在不同的程序集中隔离实体和工厂,然后给实体构造函数internal
确定范围,以便只有工厂能够调用它们吗?
答案 1 :(得分:0)
问题是工厂方法类型在运行时被解析,因此该方法被视为“开放”方法。在这种情况下,泛型参数类型将返回TEntity,如您所见。
不幸的是,(除非我遗漏了什么),获取什么类型的TEntity的唯一方法是首先使用MethodInfo.MakeGenericMethod创建一个封闭的方法,然后执行,这当然不可能由你的调用者完成
有关其他详细信息,请参阅此MSDN page。
答案 2 :(得分:0)
感谢您的回复。 由于我们有多个包含实体的程序集,因此不可能将构造函数设置为internal。现在我倾向于创建一个类,工厂注册要创建的类型,构造函数检查注册类型,这不是我想要的解决方案,但它现在会做。