Tagged Questions
0
votes
3answers
297 views
Why I am getting Null from this statement. Query Syntax in C#
This is not working. Returns Null to dept_list.
var dept_list = ((from map in DtMapGuestDepartment.AsEnumerable()
where ...
1
vote
1answer
4k views
When using Query Syntax in C# “Enumeration yielded no results”. How to retrieve output
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 ...