我需要先获取主键值,然后才能将其由EF Core分配给模型。
我的模特:
**namespace Tree.Models
{
public class MeterLocationTree
{
[Key]
public int Id { get; set; }
[Required]
public string LocationElement { get; set; }
[Required]
public int[] Path { get; set; }
}
}**
我的模型迁移快照:
modelBuilder.Entity("Tree.Models.MeterLocationTree", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer")
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
b.Property<string>("LocationElement")
.IsRequired()
.HasColumnType("text");
b.Property<int[]>("Path")
.IsRequired()
.HasColumnType("integer[]");
b.HasKey("Id");
b.ToTable("MeterLocationTree");
});
是否可以在“添加”操作期间将当前主键值分配给模型之前获取? 那么也许我们可以访问主键值生成的ef机制?
答案 0 :(得分:0)
模型包含数据,在将其分配给EF核心中的模型之前,我们无法访问该值。