假设我有这样的课程:
public class MyClass {
...
public List<SomeClass> MyProperty {
get {
SomeClass.GetCollectionOfThese(someId);
}
}
...
}
GetCollectionOfThese()
调用数据库以检索构建集合所需的记录。现在假设我在其他地方有以下代码:
MyClass obj = new MyClass(someId);
List<SomeClass> temp = obj.MyProperty;
...
SomeClass otherObj = obj.MyProperty.FirstOrDefault(i => i.Foo == "bar");
在这种情况下,数据库是否被调用了两次?还是属性值缓存在内存中?