实际上我有两个tableA,tableB 我在tableA 中有记录。TanleA 与一个实体相关,而 TableB 与另一个实体模型相关如果我在 tableB 中有相同的相关记录,那么如果记录没有插入到 tableB 中,我应该显示 TRUE,它应该显示 FALSE。最后我应该在网格显示中显示所有记录,所以请告诉我可以通过哪种方式继续。请给我发送示例代码...
我是这样写的,但它得到了空异常
var que = (from i in ContactsContext.My_schedule_categories
join j in profileContexton i.Usr_schedule_category_id equals j.sid into g
from j in g.DefaultIfEmpty()
where i.catid == j.Usr_contact_schedule_setting_cat_ID
select new
{
category = i.Usr_schedule_category,
catid = i.Usr_schedule_category_id,
ownerid = i.Usr_schedule_owner_usr_id,
sid = j.sid
}).ToArray();