Entity Framework 6에서 특정 쿼리에 대해 지연로드를 비활성화하는 방법이 있습니까? 정기적으로 사용하고 싶지만 때때로 비활성화하고 싶습니다. 가상 속성을 사용하여 지연로드하고 있습니다.
20
set context.Configuration.LazyLoadingEnabled = false; 실행하려는 쿼리 전에
—
Karthik Ganesan
값
—
user1477388
this.Configuration.LazyLoadingEnabled = false;
을 설정 한 다음 다시 설정할 수 this.Configuration.LazyLoadingEnabled = true;
있습니까? 또한이 msdn.microsoft.com/en-us/data/jj574232.aspx
@KarthikGanesan 감사합니다. 예상대로 작동했습니다.
—
Marco Alves
@KarthikGanesan 답변으로 댓글을 달 수 있습니까? 이 : 정말 잘 일하고있어
—
Sampath
응답 @Sampath 등의 코멘트 추가
—
KARTHIK Ganesan