Я учился Монго БД и в этом у меня следующие сомнения.Пожалуйста, помогите
У меня есть класс, как в следующем примере
public class NoteUser
{
private int userid{get;set;}
private List<notes> notes{get;set;}
}
И теперь у меня есть класс контекста для чтения из базы данных.И у меня также есть один класс репозитория для чтения значений из этого класса контекста, и у этого класса есть функции, подобные следующим:
private bool DeleteNoteByUserId(int userId, int noteId)
{
//Here i need to delete the note which having id as noteId for user
//who having the id as userId
}
private bool UpdateNoteByUserId(int userId, int noteId, Note objNote)
{
//Here i need to perform update the note with objNote which having id as
//noteId for user who having the id as userId
}
Как мне кодировать его, используя MongoDBDriver в моем классе репозитория?