I have a table name "actorlist" with column 'id' and 'ActorName' which contain 50 numbers of rows and also I have another table name "addrecord" with column 'iid','Actor1','Actor2','Actor3','Actor4'. 'id' column in "actorlist" and 'iid' column in "addrecord" are not same.
I have to find all those 'ActorName' from "actorlist" which are not in 'Actor1','Actor2','Actor3','Actor4' column. What will be LInq query for this result? Note that "addrecord" table have only one row.
please help me.....