Click here to Skip to main content
15,885,366 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I'm Using WPF C# and Entity Framework i did execute this query in SQL Server :

SQL
SELECT * FROM STUF_DEF
Full JOIN TCOD_VAHEDS ON STUF_DEF.VAHED = TCOD_VAHEDS.CODE


so when i want to show data in DataGrid , i see thats empty

i check this line , i see this proublem

This is my code behind in cs :

C#
var qre = dbms.Database.SqlQuery<STUF_DEF>("SELECT * FROM STUF_DEF Full JOIN TCOD_VAHEDS ON STUF_DEF.VAHED = TCOD_VAHEDS.CODE");
            dgv_Kalaha.ItemsSource = qre.ToList();


ther is no value in qre because :

**

Error The function evaluation requires all threads to run.


Please help me

What I have tried:

c# - Error: The function evaluation requires all threads to run - Stack Overflow[^]
Posted
Updated 19-Oct-20 23:46pm

1 solution

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900