これは可能ですか?
var results = (from c in _context.properties
where c.strap == somevalue
select c).include("characteristics).where(characteristics.cat_cd != 'DD');
基本的に、このクエリを作成したいと思います。アプリの成長に合わせて、他のテーブルを含めます。
select * from properties p,characteristics c
where
p.strap = c.strap
and c.cat_cd <> 'DD'