包括的な日付で結果を取得する次のクエリがあります。
var q = from x in db.TableX
where x.Timestamp.CompareTo(fromDate) >= 0
&& x.Timestamp.CompareTo(toDate) <= 0
select x;
TableX に複数の外部キーがあります。ただし、デバッグすると、DB で正しく null ではなく、ID で外部テーブルに接続されているのに、他のすべてのキーが null であるのに、そのうちの 1 つだけが抽出されます。
public class TableX
{
public int Id { get; set; }
public string str1{ get; set; }
public Table2 t1{ get; set; }
public Table3 t2{ get; set; }
public Table4 t3{ get; set; }
public Table5 t4{ get; set; }
public Tablet5 t5{ get; set; }
}