나는 내 데이터베이스에있는 모든 개체를 읽고 웹 API 컨트롤러를 사용하여 개체를 반환하려고합니다.EntityFramework6을 사용하여 개체 읽기
테이블에는 3 가지 레벨이 있습니다. 템플릿에는 단락 목록이 있고 단락에는 DataValues 목록이 있습니다.
템플릿을 읽고 단락이 용이 난 그냥 수행
Database db = new Database();
db.Configuration.ProxyCreationEnabled = false;
db.Configuration.LazyLoadingEnabled = false;
var aux = db.Templates.Include("Paragraphs");
내가이
var aux = db.Templates.Include("Paragraphs").Include("DataValues");
처럼 또한 DataVlues를 추가하면 나는이 메시지를 얻을 :
A specified Include path is not valid. The EntityType 'Database.Template' does not declare a navigation property with the name 'DataValues'.
을 이 오류는 정상적인 일이지만,이 방법으로 DataValues를 읽는 방법도 알고 있습니까?
나는 EF에서이 값의 POCO 개체를 만들어야합니다 (POCO)
Join()이 도움이된다면 어떤 아이디어가 필요할까요? –