在我的 ASP.NET 网站中,我创建了新的实体数据模型并将其与我的 MsSql 数据库连接起来。现在我可以使用 Model.Student 类,但该类没有方法。我尝试添加扩展方法,例如
public static class Functions{
public static double calculateStudentScore(this Model.Student s){
//implementation
}
}
当我创建新学生并尝试调用我的方法时,我看不到它,为什么会这样?
例如让我们假设s
是类型Student
double score=s.calculateStudentScore();//I can't see my calculateStudentScore method