2011-08-27 12 views
6

में नहीं किया जा सकता है मुझे यह त्रुटि मिलती है "System.NotSupportedException: इकाई या जटिल प्रकार 'MyModel.Team' को LINQ से Entities क्वेरी में नहीं बनाया जा सकता है।" जब मैं टीम/इंडेक्स/आईडी आईडी पृष्ठ पर जाता हूं। क्या कोई मुझे गलती के लिए इंगित कर सकता है?त्रुटि: इकाई या जटिल प्रकार का निर्माण LINQ से Entities क्वेरी

नियंत्रक:

public ActionResult Index(int id) 
    { 
     IQueryable<Team> teams = teamRepository.GetTeamByPersonID(id); 
     return View("Index", teams); 
    } 

भंडार:

public IQueryable<Team> GetTeamByPersonID(int id) 
    { 
     return from t in entities.Teams 
       join d in entities.Departments 
       on t.TeamID equals d.TeamID 
       where (from p in entities.Person_Departments 
         join dep in entities.Departments 
         on p.DepartmentID equals dep.DepartmentID 
         where p.PersonID == id 
         select dep.TeamID).Contains(d.TeamID) 
       select new Team 
       { 
        TeamID = t.TeamID, 
        FullName = t.FullName, 
        ShortName = t.ShortName, 
        Iso5 = t.Iso5, 
        DateEstablished = t.DateEstablished, 
        City = t.City, 
        CountryID = t.CountryID 
       }; 
    } 

ViewModel:

public IQueryable<Team> teamList { get; set; } 
public TeamViewModel(IQueryable<Team> teams) 
    { 
     teamList = teams; 
    } 

दृश्य:

<% foreach (var team in Model){ %> 
    <tr> 
     <td><%: Html.ActionLink(team.ShortName, "Details", new { id=team.TeamID}) %></td> 
     <td><%: team.City %></td> 
     <td><%: team.Country %></td> 
    </tr> 
<% } %> 

उत्तर

10

समस्या यह है कि आप क्लास को select कथन में बना रहे हैं, जो LINQ से SQL तक समर्थित नहीं है।

select t 

या एक गुमनाम प्रकार का उपयोग करें: अपने select के लिए परिवर्तित करें

select new 
{ 
    TeamID = t.TeamID, 
    FullName = t.FullName, 
    ShortName = t.ShortName, 
    Iso5 = t.Iso5, 
    DateEstablished = t.DateEstablished, 
    City = t.City, 
    CountryID = t.CountryID 
}; 

या का उपयोग एक डीटीओ (कुछ भी है कि एक इकाई नहीं है):

select new TeamDTO 
{ 
    TeamID = t.TeamID, 
    FullName = t.FullName, 
    ShortName = t.ShortName, 
    Iso5 = t.Iso5, 
    DateEstablished = t.DateEstablished, 
    City = t.City, 
    CountryID = t.CountryID 
}; 
+0

विस्तृत उत्तर के लिए धन्यवाद! – Tsarl

4

तो वर्ग Team एक है इकाई इसे एक linq कथन के अंदर नहीं बनाया जा सकता है। आपको अपनी खुद की कक्षा बनाने पर विचार करना चाहिए और इसके बजाय उसे वापस करना चाहिए। या शायद select t

+0

सही उत्तर के लिए धन्यवाद। – Tsarl

+1

कोई भी विस्तार से कारण बता सकता है? –