调用.Dispose()后无法删除领域

问题描述 投票:0回答:1

正在加载我的数据

Uri.TryCreate(realmPath, UriKind.Relative, out var outPathUri);
RealmConfigurationBase configuration = new FullSyncConfiguration(outPathUri, _currentUser, _realmFile)
{
    ObjectClasses = typesInSelectedRealm,
    SchemaVersion = 1
};

_realmInstance = Realm.GetInstance(configuration);

if(_realmInstance != null) _realmInstance.RealmChanged += LoadDataOnChange;

试图从USB驱动器复制相同格式的.realm文件

if(_realmInstance != null) 
{
    _realmInstance.RealmChanged -= LoadDataOnChange; // figure it's good to clear all external references to Realm object
    _realmInstance.Dispose();
    GC.Collect();
    Thread.Sleep(1000); // both of these are me trying to just make darn sure that everything is cleaned up and has had enough time to do so
    Realm.DeleteRealm(_realmInstance.Config); // error
}

抛出错误:The process cannot access the file '...\test.realm' because it is being used by another process.

我已经看过this thread,它是我发现的最接近我的问题和可能的解决方案,尽管它是针对IOS的,所以我不确定有多少适合我的情况。

c# .net-core realm
1个回答
0
投票

[同步线程可能仍在使用Realm,例如如果您向其中添加了很多数据,但尚未上传。您可以执行以下操作之一:等待上传完成:

await _realmInstance.GetSession().WaitForUploadAsync();
_realmInstance.Dispose();
// wait a second
// delete

或手动停止会话(但是有可能并非所有数据都已上传):

_realmInstance.GetSession().Stop();
_realmInstance.Dispose();
© www.soinside.com 2019 - 2024. All rights reserved.