gpt4 book ai didi

c# - EF Core 3.0 中的拥有类型映射问题

转载 作者:行者123 更新时间:2023-11-30 15:51:31 25 4
gpt4 key购买 nike

我已经从 EF Core Preview5 迁移到 Preview7,现在我通过选择具有相同的内部复杂属性映射。

例如:

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://learn.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 属性实际上没有任何作用,只是实验性的)。

OrderStoreDbContextpublic DbSet<OrderProfile> OrderProfiles { get; set; }属性(property)。

但是linq请求var orderProfiles = await orderDbContext.OrderProfiles.ToListAsync();映射只是简单类型(它们存在于 OrderProfiles 表中,但并不复杂。 var orderProfiles = await orderDbContext.OrderProfiles.Include(p => p.Volume).ToListAsync();代码也没有效果 - 我得到 orderProfiles.VolumeorderProfiles.StartPointorderProfiles.EndPoint值为 null .

但是,在 Preview5 中,这段代码工作正常。是 Microsoft 开发人员破坏了 EF Core 3.0 Preview7 中的复杂类型映射还是我弯曲的手的问题?

更新 2。在 github 项目 repo 上发布问题。

最佳答案

WithOwner fluent API 仍未记录(预览版软件正常),但它遵循关系 API (HasOne/HasMany/WithOne, WithMany) 导航属性模式 - 如果您有导航属性,请传递 lambda 表达式或属性名称(字符串))。如果您没有导航属性,请不要传递任何内容。

您可以看到使用 Go To Definition Command 的 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 */

关于c# - EF Core 3.0 中的拥有类型映射问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57218036/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com