Student.cs
Код: Выделить всё
public class Student
{
[GraphQLNonNullType]
public string Name{ get; set; }
[GraphQLNonNullType]
public string LastName{ get; set; }
[GraphQLNonNullType]
public string Picture { get; set; }
}
StudentQuery.cs
Код: Выделить всё
public class StudentQuery
{
[UseFiltering]
[UseSorting]
public List GetStudents()
{
return MongoDBHelper.LoadRecords(EMongoCollection.Students);
}
}
Может ли кто-нибудь быть любезны привести мне пример?
Заранее спасибо.
Подробнее здесь: https://stackoverflow.com/questions/644 ... th-c-sharp