【发布时间】:2020-03-04 15:15:15
【问题描述】:
我正在使用 asp.net core 3.1 和 efcore 3.1.1 和 Microsoft.EntityFrameworkCore.Cosmos 3.1.1 来开发 graphql API。
这是我的代码详细信息:
Articles.cs
public class Articles
{
public string id { get; set; }
public int ArticleId { get; set; }
public string PublishedDate { get; set; }
public ICollection<RelatedArticlesSchema> RelatedArticles { get; set; }
public ICollection<RelatedEntityId> RelatedCountries { get; set; }
}
RelatedArticlesSchema.cs
public class RelatedArticlesSchema
{
[JsonProperty("ArticleId")]
public int ArticleId { get; set; }
[JsonProperty("Title")]
public string Title { get; set; }
public ICollection<RelatedEntityId> RelatedCountries { get; set; }
[JsonProperty("PartitionKey")]
public string PublishedDate { get; set; }
}
RelatedEntityId.cs
public class RelatedEntityId
{
public int IdVal { get; set; }
}
SampleDbContext.cs
public class SampleDbContext : DbContext
{
public DbSet<Articles> Articles { get; set; }
public DbSet<Countries> Countries { get; set; }
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
var converter = new NumberToStringConverter<int>();
modelBuilder.Entity<Articles>().Property(e => e.LanguageId).HasConversion(converter);
modelBuilder.Entity<Articles>().HasPartitionKey(o => o.LanguageId);
modelBuilder.Entity<Articles>().OwnsMany(p => p.RelatedCountries, a =>
{
a.WithOwner().HasForeignKey("Articlesid");
a.Property<int>("id");
a.Property(o => o.IdVal);
}
).OwnsMany(p => p.RelatedArticles, a =>
{
a.OwnsMany(p => p.RelatedCountries, a =>
{
a.WithOwner().HasForeignKey("RelatedArticlesSchemaArticlesidid");
a.Property<int>("id");
a.Property(o => o.IdVal);
}
);
a.WithOwner().HasForeignKey("Articlesid");
a.Property<int>("id");
a.Property(o => o.ArticleId);
a.Property(o => o.Title);
a.Property(o => o.PublishedDate);
}
).OwnsMany(p => p.RelatedResources, a =>
{
a.OwnsMany(p => p.RelatedCountries, a =>
{
a.WithOwner().HasForeignKey("RelatedArticlesSchemaArticlesidid");
a.Property<int>("id");
a.Property(o => o.IdVal);
}
);
a.WithOwner().HasForeignKey("Articlesid");
a.Property<int>("id");
a.Property(o => o.ArticleId);
a.Property(o => o.Title);
a.Property(o => o.PublishedDate);
}
);
}
}
CosmosDB 中用于集合的数据如下:文章
{
"ArticleId": 100,
"PublishedDate": "12/1/2020 2:43:00 AM",
"Author": null,
"LanguageId": 37,
"RelatedCountries": [
{
"IdVal": 1
}
],
"RelatedArticles": [
{
"ArticleId": 101,
"Title": "Article_101",
"RelatedCountries": [
{
"IdVal": 1
}
],
"PublishedDate": "5/26/2020 5:55:00 AM"
},
{
"ArticleId": 102,
"Title": "Article_102",
"RelatedCountries": [
{
"IdVal": 1
},
{
"IdVal": 2
}
],
"PublishedDate": "8/12/2020 4:57:00 AM"
},
{
"ArticleId": 103,
"Title": "Article_103",
"RelatedCountries": [
{
"IdVal": 1
},
{
"IdVal": 2
},
{
"IdVal": 3
}
],
"PublishedDate": "8/20/2020 6:30:00 AM"
},
{
"ArticleId": 104,
"Title": "Article_104",
"RelatedCountries": [
{
"IdVal": 10
}
],
"PublishedDate": "9/17/2020 6:06:00 AM"
},
{
"ArticleId": 105,
"Title": "Article_105",
"RelatedCountries": [
{
"IdVal": 11
}
],
"PublishedDate": "11/26/2020 1:02:00 AM"
}
]
}
我收到下面提到的错误:
无法将属性“RelatedArticlesSchemaArticlesidid”添加到类型“RelatedArticlesSchema.RelatedCountries#RelatedEntityId”,因为没有指定属性类型,也没有对应的 CLR 属性或字段。要添加影子状态属性,必须指定属性类型。
谁能帮我解决这个问题
【问题讨论】:
-
正如错误所说,任何这些类中都没有
RelatedArticlesSchemaArticlesidid属性。您应该在OnModelCreating中分别配置每个实体,而不是尝试在另一个内部配置一个。即使语法似乎建议您可以嵌套和嵌套配置,它也不起作用
标签: c# azure-cosmosdb asp.net-core-3.1 ef-core-3.1