コード例 #1
0
        public bool Commit()
        {
            var success = _engine.Commit();

            if (success)
            {
                NotificationService.Notify();
            }

            return(success);
        }
コード例 #2
0
ファイル: LiteDatabase.cs プロジェクト: heliomarpm/LiteDB
 /// <summary>
 /// Commit current transaction
 /// </summary>
 public bool Commit() => _engine.Commit();