Exemplo n.º 1
0
 /// <summary>
 /// Execute query locking collection in write mode. This is avoid any other thread change results after read document and before transaction ends
 /// </summary>
 public ILiteQueryableAsyncResult <T> ForUpdate()
 {
     _wrappedQuery.ForUpdate();
     return(this);
 }