すべての一般的な操作を備えた汎用リポジトリがあります。Customer と Address の 2 つのテーブルがあります。住所は顧客で参照されています
public IEnumerable<TEntity> GetAll()
{
return context.Set<TEntity>();
}
以下は私のリポジトリです
Repository<Customer> customerRepostitory = new Repository<Customer>();
var cusotomerList = customerRepostitory.GetAll();
上記の行は顧客リストを返すだけで、住所の詳細は含まれていません。親レコードを呼び出すときに子レコードを取得する最良の方法を提案できますか?