EF doesn't allow two classes with the same name, but different namespaces, to be mapped.
This is complex to change so we also have an item to provide a better exception message until this is supported -
http://entityframework.codeplex.com/workitem/589
namespace Test.Security
{
public class Question
{
public Guid Id { get; set; }
}
}
namespace Test.Forms
{
public class Question
{
public Guid Id { get; set; }
}
}