我已经从EF Core Preview5迁移到Preview7,现在我通过select具有相同的内部复杂属性映射。
例如:
public class Car
{
public Volume Volume { get; set; }
public string OtherProperty { get; set; }
}
[Owned]
public class Volume
{
public float Height { get; set; }
public float Width { get; set; }
public float Length { get; set;}
}
之前,代码modelBuilder.Entity<Car>().OwnsOne(e => e.Volume)
可以正常工作,但是现在它需要使用WithOwner
,但我听不懂(请参见此处:https://docs.microsoft.com/en-us/ef/core/what-is-new/ef-core-3.0/breaking-changes)
我不能使用这样的代码:modelBuilder.Entity<Car>().OwnsOne(e => e.Volume).WithOwner("Car")
或modelBuilder.Entity<Car>().OwnsOne(e => e.Volume).WithOwner(f => f.Car)
。
有人有同样的问题吗?
谢谢。
更新。
我已经检查了OrderStoreDbContextModelSnapshot.cs。我在这里发布了与上例完全一致的其他示例。
modelBuilder.Entity("DatabaseServiceNew.Database.Order_information.OrderProfile", b =>
{
b.HasOne("DatabaseService.Database.Order_information.Order", "Order")
.WithOne("OrderProfile")
.HasForeignKey("DatabaseServiceNew.Database.Order_information.OrderProfile", "OrderId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.OwnsOne("FoundationClasses.Technical_Classes.Volume", "Volume", b1 =>
{
b1.Property<Guid>("OrderProfileId");
b1.Property<float>("Cum");
b1.Property<float>("Height");
b1.Property<float>("Length");
b1.Property<float>("Width");
b1.HasKey("OrderProfileId");
b1.ToTable("OrderProfiles");
b1.WithOwner()
.HasForeignKey("OrderProfileId");
});
b.OwnsOne("WebFoundationClassesCore.Data_classes.GeoPoint", "EndPoint", b1 =>
{
b1.Property<Guid>("OrderProfileId");
b1.Property<string>("Address");
b1.Property<double>("Latitude");
b1.Property<double>("Longitude");
b1.HasKey("OrderProfileId");
b1.ToTable("OrderProfiles");
b1.WithOwner()
.HasForeignKey("OrderProfileId");
});
b.OwnsOne("WebFoundationClassesCore.Data_classes.GeoPoint", "StartPoint", b1 =>
{
b1.Property<Guid>("OrderProfileId");
b1.Property<string>("Address");
b1.Property<double>("Latitude");
b1.Property<double>("Longitude");
b1.HasKey("OrderProfileId");
b1.ToTable("OrderProfiles");
b1.WithOwner()
.HasForeignKey("OrderProfileId");
});
});
其中
[Owned, ComplexType]
public class Volume
{
public float Height { get; set; }
public float Width { get; set; }
public float Length { get; set;}
}
[Owned, ComplexType]
public class GeoPoint
{
public GeoPoint()
{
}
public GeoPoint(double latitude, double longitude, string address)
{
this.Address = address;
this.Latitude = latitude;
this.Longitude = longitude;
}
public double Latitude { get; set; }
public double Longitude { get; set; }
public string Address { get; set;}
}
因此,正如我们所看到的,ContextSnapshot可以正确映射数据(在这种情况下,根据实验,ComplexType属性实际上不执行任何操作)。
OrderStoreDbContext
具有public DbSet<OrderProfile> OrderProfiles { get; set; }
属性。
但是linq请求var orderProfiles = await orderDbContext.OrderProfiles.ToListAsync();
仅映射简单类型(OrderProfiles表中存在,但不复杂)。
var orderProfiles = await orderDbContext.OrderProfiles.Include(p => p.Volume).ToListAsync();
代码也无效-我得到orderProfiles.Volume
的{{1}}和orderProfiles.StartPoint
和orderProfiles.EndPoint
值。
但是,在Preview5中,此代码可以正常工作。微软开发人员是否破坏了EF Core 3.0 Preview7中的复杂类型映射,或者是我弯腰的问题?
更新2。 在github项目仓库上发布了一个问题。
答案 0 :(得分:2)
WithOwner
流利的API仍未记录(对于预览软件而言是正常的),但遵循关系API(HasOne
/ HasMany
/ WithOne
,WithMany
)导航属性的模式-如果您具有导航属性,请传递lambda表达式或属性名称(字符串))。如果您没有导航属性,则不要传递任何内容。
使用“转到定义命令”,您可以看到WithOwner
重载之一是VS:
//
// Summary:
// Configures the relationship to the owner.
// Note that calling this method with no parameters will explicitly configure this
// side of the relationship to use no navigation property, even if such a property
// exists on the entity type. If the navigation property is to be used, then it
// must be specified.
//
// Parameters:
// ownerReference:
// The name of the reference navigation property pointing to the owner. If null
// or not specified, there is no navigation property pointing to the owner.
//
// Returns:
// An object that can be used to configure the relationship.
public virtual OwnershipBuilder<TEntity, TDependentEntity> WithOwner([CanBeNullAttribute] string ownerReference = null);
VS Intellisense显示相同。
因此,在您的情况下,只需使用WithOwner()
,例如
modelBuilder.Entity<Car>().OwnsOne(e => e.Volume).WithOwner()
. /* configuration goes here */