c# npgsql Entity Framework Int 数组
c# npgsql Entity Framework Int Array
我有一个 table 列,其类型为 nullable int[]。我的问题是我不能在我的实体对象中使用此列。我尝试了很多东西。分机:
public List<int> column1 { get; set; }
public List?<int> column1 { get; set; }
public int?[] column1 { get; set; }
public int[] column1 { get; set; }
Npgsql 版本:3.2.5.0
EF 版本:6.0.0.0
谢谢。阿塔坎
Entity Framework 6.x 的封闭类型系统不允许支持数组。但是,Npgsql Entity Framework Core 确实支持数组列。
我有一个 table 列,其类型为 nullable int[]。我的问题是我不能在我的实体对象中使用此列。我尝试了很多东西。分机:
public List<int> column1 { get; set; }
public List?<int> column1 { get; set; }
public int?[] column1 { get; set; }
public int[] column1 { get; set; }
Npgsql 版本:3.2.5.0
EF 版本:6.0.0.0
谢谢。阿塔坎
Entity Framework 6.x 的封闭类型系统不允许支持数组。但是,Npgsql Entity Framework Core 确实支持数组列。