선택

2012-12-03 2 views
7

나는 선택

public List<EquipamentoNoDiscovery> GetEquipamentosNoDiscovery(int imID) 

var lista = (from ma in ctx.macaddress 
         join m in ctx.mac on 
         ma.address_mac equals m.mac_id into g1 
         from m in g1.DefaultIfEmpty() 

         join ml in ctx.mac_link on 
         m.mac_id equals ml.mac_id into g2 
         from ml in g2.DefaultIfEmpty() 

         join im in ctx.immobile on 
         ml.link_id equals im.immobile_id into g3 
         from im in g3.DefaultIfEmpty() 

         join en in ctx.enterprise on 
          im.enterprise_id equals en.enterprise_id into g4 
         from en in g4.DefaultIfEmpty() 

         join pl in ctx.port_link on 
         ma.address_id equals pl.address_id into g5 
         from pl in g5.DefaultIfEmpty() 

         join p in ctx.port on 
         new { pl.sw_id, pl.port_id } equals new { p.sw_id, p.port_id } 

         join s in ctx.switch_lan on 
         pl.sw_id equals s.sw_id into g6 
         from s in g6.DefaultIfEmpty() 
         where pl.address_id == imID 
         select new 
         { 
          Regiao = en.enterprise_u_name, 
          Predio = im.immobile_u_name, 
          Equipamento = m.host, 
          TipoPlaca = m.mac_type, 
          Mac = ma.address_mac, 
          Ip_ma = ma.address_ip, 
          Ip_m = m.ip_address, 
          Comunidade = s.sw_community, 
          IpSwitch = s.sw_ip, 
          PortaIndex = p.port_index, 
          PortaNome = p.port_name 
         }); 

      ObjectQuery oQuery = (ObjectQuery)lista; 
      string cmdSQL = oQuery.ToTraceString(); 

내가) (명령 oQuery.ToTraceString를 사용하는 경우, 나는이 "여기서 pl.address_id == IMID"를 볼 수 있습니다 될

LINQ의이 선택이 this "[Extent6]. [address_id] = @p_ linq _0". 그럼 내 선택은 항상 값을 변경하는 SQL 명령에서 @p_ linq _0을 빈 값으로 반환합니다. 제대로 작동합니다. 제안 사항이 있으십니까? 감사합니다.

답변

7

이것은 단지 where에서 오는 쿼리 매개 변수입니다.

where pl.address_id == imID 

로그는 imID의 값이어야하는 매개 변수에 전달 된 값을 표시해야합니다. 그 값을 확인하십시오. 예상했던 것과 다를 수 있습니다.

+0

디버깅 모드에서 나는 imID가 예상했던 것처럼 값 2를 가졌지 만 어떤 방식 으로든 작동하지 않는다는 것을 알 수 있습니다. SQL 명령에서만 – Sah

+0

@Sah : 데이터베이스의'address_in' 유형은 무엇입니까? –

+0

그것은 PK, FK, int, not null입니다. – Sah