I have two tables - "Customer" table and "Blacklist" customer table. When I blacklist a customer, I put the CusId as a foreign key into to Blacklist table.
What I want to do is get CusId and Name that are not in the BlackList Table.
How can I achieve this in Entity Framework C#?
Customer
---------
(CusId,Name,Telephone,Email)
Blacklist
---------
(CusId)