如何在将数据输入领域时设置关系?
有用于导入CSV或Excel文件的菜单,但是用于关系 如果我需要加入数据,我该怎么做呢。
我使用领域浏览器创建了一个db文件并导入了一个xlsx文件,但它没有用。哪里错了?我按照以下步骤操作。
public class MyEvent : PubSubEvent<string> { }
public class MyViewModel
{
private readonly IEventAggregator _eventAggregator = new EventAggregator();
public MyViewModel()
{
_eventAggregator.GetEvent<MyEvent>().Subscribe(GetMessage);
}
private void GetMessage(string text)
{
MessageBox.Show(text);
}
private DelegateCommand _pressButtonCommand;
public DelegateCommand PressButtonCommand
{
get
{
return _pressButtonCommand ?? (_pressButtonCommand = new DelegateCommand(PressButton));
}
}
private void PressButton()
{
_eventAggregator.GetEvent<MyEvent>().Publish("Hello World");
}
}
,realmTestClass()
,realmtestclass1
文件的文件。我使用导入菜单导入了我创建的数据,但它没有用。答案 0 :(得分:0)
领域浏览器数据导入功能仍在大力开发中。
如果您遇到一直崩溃的任何特定用例或任何功能请求,那么在Realm Browser GitHub repo处提交问题将会非常有帮助。 :)