2012-12-03 3 views
7

Ich habe diese select in LINQWählen Sie in LINQ mit einem seltsamen Wert @ p__linq__0

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(); 

Wenn ich den Befehl oQuery.ToTraceString() verwenden, kann ich sehen, um dieses "wo pl.address_id == IMID" geworden dies "WHERE [Extent6]. [Adresse_ID] = @p_ linq _0". Dann meine Auswahl immer leer, wenn in SQL-Befehl ich den Wert @p_ linq _0 auf eine Zahl ändern, funktioniert es gut. Irgendwelche Vorschläge, bitte? Danke!

Antwort

7

Das ist nur ein Abfrageparameter, der von diesem where abgeleitet wird.

where pl.address_id == imID 

Ihr Protokoll sollte auch den Wert anzuzeigen, die für diesen Parameter übergeben wurden, der der Wert imID sein sollte. Überprüfen Sie diesen Wert - es ist möglich, dass es nicht das ist, was Sie erwartet haben.

+0

im Debugging-Modus kann ich sehen, imID hat den Wert 2 wie es erwartet wurde, aber es funktioniert überhaupt nicht. Nur im SQL-Befehl – Sah

+0

@Sah: Was ist der Typ von 'address_in' in Ihrer Datenbank? –

+0

Es ist PK, FK, int, nicht null – Sah