툴을 이용해서 서로 고리를 만들어줍니다.

카테고리가 부모개념이니깐 아래와 같이 연결

이걸로 끝~

 

실제 Linq 에서 사용하는방법은

아래는 CategoryName이 삼숑인것만 가져오는 쿼리 입니다.

    private void Form1_Load(object sender, EventArgs e)
        {
            var Query = from c in dc.Products
                       where c.Category.CategoryName =="삼숑"
                        select c;

            this.dataGridView1.DataSource = Query.ToList();
        }

+ Recent posts