我想在 C# 中使用模块化编程。我试图用 Linq 查询创建一个方法。据我所知,我需要将 Linq 查询存储在一个变量中才能执行它。我创建了一个名为 的类和方法SearchStudent()
,但我不知道如何返回 Linq 查询。我应该怎么办?
public var SearchStudent(string ogrenci_id)
{
var query =
from d in context.ogrencis
where d.ogrenci_id ==Convert.ToInt32(ogrenci_id)
select new
{
d.ogrenci_adi,
d.ogrenci_soyadi
};
return query;
}