以下是完整错误:
{"在模型生成期间检测到一个或多个验证错误:\ r \ n \ r \ nContentManager.CompilerResults :: EntityType' CompilerResults'没有定义键。定义此EntityType的键。\ r \ n \ nCompilerResults:EntityType:EntitySet' CompilerResults'基于类型' CompilerResults'没有定义键。\ r \ n"}
这是一个奇怪的错误。首先,我在该命名空间中没有名为CompilerResults的类(ContentManager.CompilerResults)。其次,没有" EntityType' CompilerResults'"。这是我创建的实体类" ContextEntityPair":
[Table("context_entity_pair")]
public class ContextEntityPair
{
[Column("id")]
[Key]
public Guid Id
{
get;
set;
}
[Column("context_name")]
public string ContextName { get; set; }
[Column("entity_compiler_results")]
public CompilerResults EntityCompilerResults { get; set; }
public ContextEntityPair(Guid id, string contextName, CompilerResults entityCompilerResults)
{
this.Id = id;
this.ContextName = contextName;
this.EntityCompilerResults = entityCompilerResults;
}
}
我觉得我正在尽一切努力避免无法定义任何关键字'错误。我使用名称" Id",我将其设置为属性,我甚至给它一个[Key]属性。但出于某种原因,它没有给出关于Id不是关键的错误。它说' CompilerResults'没有一个没有意义的钥匙。以下是我对它的背景:
namespace Laserfiche.BusinessEntities.ContentManager.ReadStore.EF
{
public class EntityCompilerResultsContext : DbContext
{
public EntityCompilerResultsContext()
: base("EFEntityCompilerResults")
{
Database.SetInitializer(new DropCreateDatabaseIfModelChanges<EntityCompilerResultsContext>());
}
public DbSet<ContextEntityPair> ContextEntityPairs { get; set; }
}
}
我正在使用某些CRUD方法的存储库。下面是使用Insert方法作为示例方法的开头:
public class EntityContextRepository
{
private readonly Type _entityType;
private EntityCompilerResultsContext _db = new EntityCompilerResultsContext();
public EntityContextRepository()
{
_entityType = typeof(ContextEntityPair);
}
public async Task InsertAsync(ContextEntityPair pair)
{
try
{
Ensure.IsNotNull(pair, "pair");
_db.ContextEntityPairs.Add(pair);
await _db.SaveChangesAsync();
}
catch (DbEntityValidationException dbEx)
{
DbEntityValidationExceptionHandle(dbEx);
}
}
}
最后这里是我正在运行的测试代码(有一些CodeDOM的东西 - 只是忽略它。重要的部分是我定义的实体结果1&#39;以及来自&#39;的所有内容。 contextName&#39;及以下):
string entityName = "Curtain";
EntityGenerator.EntityFieldInfo entityField1 = new EntityGenerator.EntityFieldInfo("Color", typeof(string), RelationshipType.NoRelation);
EntityGenerator.EntityFieldInfo entityField2 = new EntityGenerator.EntityFieldInfo("Size", typeof(int), RelationshipType.NoRelation);
ICollection<EntityGenerator.EntityFieldInfo> listOfProps = new List<EntityGenerator.EntityFieldInfo> { entityField1, entityField2 };
EntityGenerator.CreateEntityClass(listOfProps, entityName);
CompilerResults entityResults1 = EntityGenerator.GetCompiledEntity(entityName);
GenericEntity entityInstance1 = (GenericEntity) EntityGenerator.CreateInstanceOfEntity(entityResults1, entityName);
SetObjectField(entityInstance1, "Color", "Green");
SetObjectField(entityInstance1, "Size", 20);
string contextName = "EFEntityTest_v1";
Guid testGuid1 = new Guid("00000000000000000000000000000001");
ContextEntityPair entityCompilerResultsPair = new ContextEntityPair(testGuid1, contextName, entityResults1);
EntityContextRepository contextEntityRepo = new EntityContextRepository();
contextEntityRepo.InsertAsync(entityCompilerResultsPair).Wait();
它在行内的InsertAsync中断:
_db.ContextEntityPairs.Add(pair);
答案 0 :(得分:1)
您
public CompilerResults EntityCompilerResults { get; set; }
未标记ComplexType
属性,它既不是标量属性,也不是引用。你对它的表现如何?