良い一日にLINQの拡張メソッドは、
をない選択私は、LINQの拡張メソッドで働いている、と私は私にはない、いくつかのコースを除いて、私のテーブルのコースから項目のリストを抽出するために必要なテーブルを持っています欲しいです。
public class Course
{
public Course()
{
Tags = new HashSet<Tag>();
}
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public int Level { get; set; }
public float FullPrice { get; set; }
public virtual Author Author { get; set; }
public int AuthorId { get; set; }
}
これは私がこれまでにやっていることです:
//Get some courses that I do not need.
var coursesDontNeed=_dbContext.courses.where(//here goes condition);
var coursesINeed= _dbContext.Courses.Except(coursesDontNeed);
ではなく、二つの異なるLINQ文を書くのは、データベースへのただ一つのアクセスでそれを作るための方法はありますか?
おかげ