第5章 5.1.1----致谢网友【宪煌】

public virtual ICollection Post {get;set;}  
修改为
public virtual ICollection<Posts> Post {get;set;}  

第3章 3.2.1(P95 3 原始查询第四行)----致谢园友【cainong2001】

我们可以通过SqlQurey方法来进行原始查询。

修改为

我们可以通过SqlQuery方法来进行原始查询。

第2章 2.4.2(P43  顶部)----致谢园友【张四海】

public byte Quanatity {get;set;}  
修改为
public byte Quantity {get;set;}  

第2章 2.2.4(P15  顶部)----致谢园友【STM85】

modelBuilder.ComplexType(Address)();
修改为
modelBuilder.ComplexType<Address>()

第一篇完结 (P134 第一段话结尾)----致谢园友【张四海】

性能会更加 -》 性能会更佳

相关文章:

  • 2022-01-09
  • 2021-10-09
  • 2022-01-17
  • 2022-12-23
  • 2022-01-22
猜你喜欢
  • 2021-09-29
  • 2021-10-11
  • 2022-01-12
  • 2021-04-18
  • 2021-05-05
  • 2021-12-11
  • 2021-05-03
相关资源
相似解决方案