1


当我尝试映射objectint.
我的类和方法在哪里转换:

[Serializable]
public class ProfileProperty
{
    public object PropertyValue { get; set; }

    public bool IsVisible { get; set; }

    public ProfileProperty(object value, bool isVisible = true)
    {
        this.PropertyValue = value;
        this.IsVisible = isVisible;
    }

    public ProfileProperty()
    {
        this.IsVisible = true;
    }

    public T GetValue<T>()
    {
        return (T)this.PropertyValue;
    }

    public override string ToString()
    {
        if (this.PropertyValue != null)
        {
            return this.PropertyValue.ToString();
        }

        return string.Empty;
    }
}

[Serializable]
public class ProfileProperty
{
    public object PropertyValue { get; set; }

    public bool IsVisible { get; set; }

    public ProfileProperty(object value, bool isVisible = true)
    {
        this.PropertyValue = value;
        this.IsVisible = isVisible;
    }

    public ProfileProperty()
    {
        this.IsVisible = true;
    }

    public T GetValue<T>()
    {
        return (T)this.PropertyValue;
    }

    public override string ToString()
    {
        if (this.PropertyValue != null)
        {
            return this.PropertyValue.ToString();
        }

        return string.Empty;
    }
}

public static class Helper
{
    public static ProfileModel PopulProfMod(Profile profile)
    {
        var mapper = ObjectMapperManager.DefaultInstance.GetMapper<Profile, ProfileModel>(new DefaultMapConfig()
                    .IgnoreMembers<Profile, ProfileModel>(new string[] { "GetValue", "ToString" }));
        ProfileModel prof = new ProfileModel();
        if (profile != null)
        {
            prof = mapper.Map(profile);
            //prof.Age = (int)profile.Age.PropertyValue;
            prof.Visibility = new List<string>();
        }

        //Some code

        return prof;
    }
}

当映射属性Age为 0 但时profile

Profile profile = new Profile()
            {
                Age = new ProfileProperty() { IsVisible = true, PropertyValue = 17 },
                Comments = 2,
                UserName = "Luck",
                FirstName = new ProfileProperty() { IsVisible = false, PropertyValue = "Alex" }
            };
4

1 回答 1

0

你需要一个转换器:

  new DefaultMapConfig()
       .IgnoreMembers<Profile, ProfileModel>(new string[] { "GetValue", "ToString" }))
       .ConvertUsing<ProfileProperty, int>(s => (int)s.PropertyValue)
于 2012-07-02T06:34:37.707 回答