I have created this query to fetch some result from database. Here is my table structure.

What exaclty is happening.

DtMapGuestDepartment as Table 1

DtDepartment as Table 2

Are being used

    var dept_list=  from map in DtMapGuestDepartment.AsEnumerable()
                    where map.Field<Nullable<long>>("GUEST_ID") == DRowGuestPI.Field<Nullable<long>>("PK_GUEST_ID")
                    join 
                    dept in DtDepartment.AsEnumerable()
                    on map.Field<Nullable<long>>("DEPARTMENT_ID") equals dept.Field<Nullable<long>>("DEPARTMENT_ID")
                    select dept.Field<string>("DEPARTMENT_ID");

I am performing this query on DataTables and expect it to return me a datatable.

Here I want to select distinct department from Table 1 as well which will be my next quest. Please answer to that also if possible.

link|improve this question

What happens if you rewrite this as SQL and directly execute it against the database? Does it return results then? – Sebastian P.R. Gingter May 26 '10 at 5:50
@Sebastian: Yes, It is returning me desired result set. – Shantanu Gupta May 26 '10 at 5:50
2  
Then I'm afraid you need to profile the query against the database. What is the statement, that is generated and send to the database? Where does it differ from your original SQL query? If you see what Linq2SQL does wrong this could help you to find the error in the query. – Sebastian P.R. Gingter May 26 '10 at 5:54
Is this linq2sql or entity framework? It does not look like any linq2sql I have ever used. – leppie May 26 '10 at 6:04
1  
@Shantanu, why do you say it's Entity Framework ? The code you posted is Linq to DataSets... – Thomas Levesque May 26 '10 at 8:41
show 6 more comments
feedback

1 Answer

up vote 1 down vote accepted

break your query into parts and see which collection has no elements.

var mapList = DtMapGuestDepartment.AsEnumerable().ToList();
var deptList = DtDepartment.AsEnumerable().ToList();

var queryResult1 = (
  from map in mapList
  where map.Field<Nullable<long>>("GUEST_ID") ==
    DRowGuestPI.Field<Nullable<long>>("PK_GUEST_ID") 
  select map
).ToList();

var queryResult2 = (
  from map in queryResult1
  join dept in deptList
    on map.Field<Nullable<long>>("DEPARTMENT_ID")
    equals dept.Field<Nullable<long>>("DEPARTMENT_ID") 
  select dept.Field<string>("DEPARTMENT_ID")
).ToList();
link|improve this answer
Thx for support, although I resolved the problem in the same way u told, but an hour or two before your answer. – Shantanu Gupta May 27 '10 at 6:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.