使用 Code First 方法并为现有系统实现数据库。因此,我无法对现有代码进行大量更改。这就是我使用 Fluent API 和实体框架的原因。
当我尝试实现一个Vector
由其他几个类使用的新类 ( ) 时,出现编译错误:
The relationship 'Price_Data' was not loaded because the type 'Vector' is not available.
The following information may be useful in resolving the previous error:
The property 'Item' of type 'Vector' in the assembly 'Core, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' cannot be used as a scalar property because it does not have both a getter and setter.
由于我对.NET(来自Java)相当陌生,我不知道从哪里开始寻找错误。
这里有谁知道为什么,以及如何解决这个问题?