Xamarin C#-INotifyPropertyChanged模型-JSON反序列化中的错误

问题描述

我有一个与Azure移动服务同步的c#用户模型。 User类的定义如下:

public class Users : INotifyPropertyChanged
{
    [JsonProperty("Id")]
    private string id;
    
    [JsonIgnore]
    public string Id
    {
        get { return id; }
        set { id = value; OnPropertyChanged("Id"); }
    }



    [JsonProperty("Name")]
    private string name;
    [JsonIgnore]
    public string Name
    {
        get { return name; }
        set { name = value; OnPropertyChanged("Name"); }
    }

    [JsonProperty("Email")]
    private string email;
    [JsonIgnore]
    public string Email
    {
        get { return email; }
        set { email = value; OnPropertyChanged("Email"); }
    }

    [JsonProperty("Password")]
    private string password;
    [JsonIgnore]
    public string Password
    {
        get { return password; }
        set { password = value; OnPropertyChanged("Password"); }
    }  
public event PropertyChangedEventHandler PropertyChanged;

    private void OnPropertyChanged(string propertyName)
    {
        if(propertyName != null)
            PropertyChanged(this,new PropertyChangedEventArgs(propertyName));
    }

现在,在XAML页面代码中,一旦用户登录,我就会尝试吸引用户,就像这样:

var user = (await App.MobileService.GetTable<Users>().Where(u => u.Email == this.txtEmail.Text).ToListAsync()).FirstOrDefault();

如果我删除私​​有成员和公共成员上的JsonProperty()和JsonIgnore(),则会收到错误消息:NewtonSoft.Json反序列化错误

在上面的代码中,除了分别在每个私有字段和公共字段上声明JsonProperty()和JsonIgnore之外,还有什么更简单的方法吗?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)