ASP.NET C#の私のアプリでは、データベースからデータを渡すためにlinqtosqlを使用しています。以下の私のコード
統合言語クエリ:
私のコード:
public class course_list
{
//Id of event
public int id { get; set; }
// Name of event
public string name { get; set; }
//type of event
public string e_type { get; set; }
//name of the compay
public string compay { get; set; }
}
// Get data
protected void show_event()
{
for_testDataContext db = new for_testDataContext();
IQueryable<course_list> CourseList = from cl in db.events
select new course_list()
{
id = cl.id,
name = cl.name,
e_type = cl.e_type_id, // how to get name of e_type
compay = cl.company_id //How to get name of company
};
}
e_type = name of e_type
一致cl.e_type_id
とcompany
=name of compay
一致を割り当てる方法cl.company_id