This code doesn't return data from table:
var pom = from k in dataContext.student_gods
where k.skgod == System.Convert.ToString(2002/03)
select k.id_stud;
This code does return data from table:
var pom = from k in dataContext.student_gods
where k.skgod== "2002/03"
select k;
How to convert a string variable without quotes???