gpt4 book ai didi

c# - 桌面应用 Realm

转载 作者:行者123 更新时间:2023-11-30 18:18:54 24 4
gpt4 key购买 nike

有没有办法使用 realm.io 中的 Realm用于桌面 (WinForms/WPF) 应用程序?

我试过下面的代码:

public partial class Form1 : Form
{
private Realm realm;
public Form1()
{
InitializeComponent();

this.realm = Realm.GetInstance();
}

private void button1_Click(object sender, EventArgs e)
{
realm.Write(() =>
{
var jim = realm.CreateObject<Person>();
var myDog = realm.CreateObject<Dog>();

myDog.Name = "Fido";
myDog.Owner = jim;
});
}
}

public class Dog : RealmObject
{
public string Name { get; set; }
public int Age { get; set; }
public Person Owner { get; set; }
}

public class Person : RealmObject
{
public string Name { get; set; }
public IList<Dog> Dogs { get; }
}

但是在执行它时,VS 显示了一个 PlatformNotSupportedException

最佳答案

抱歉,正如@EpicPandaForce 所指出的,我们还不支持任何桌面环境。不过请留意那些 github 问题。

关于c# - 桌面应用 Realm ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40264494/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com