发射映射器和通用方法

时间:2012-06-22 15:03:36

标签: c# .net mapping emitmapper


当我尝试保存数据库属性时,我遇到了Emit映射器的问题。
首先,我映射了这个类(它工作得很好):

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

    public bool IsVisible { get; set; }

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

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

我在这里映射:

var mapper = ObjectMapperManager.DefaultInstance.GetMapper<PollmericaProfile, ProfileModel>();
ProfileModel prof = new ProfileModel();
if (x.User != null)
{
    prof = mapper.Map(x);
}

但有些要求不需要string属性。这就是为什么我决定写这个:

[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;
    }
}

并且所有映射都不起作用=(
如果你有ccan,请帮帮我。如果您愿意,我可以提供必要的信息。

附:说实话,我想转移到一个字符串并返回,所以至少可以工作

UPD:我试过没有方法public T GetValue<T>() ......它有效......

1 个答案:

答案 0 :(得分:1)

对不起,但我发现答案很顺利。
在映射中我必须写下这个:

var mapper = ObjectMapperManager
               .DefaultInstance
               .GetMapper<PollmericaProfile, ProfileModel>( new DefaultMapConfig()
               .IgnoreMembers<PollmericaProfile, ProfileModel>(new string[] { "GetValue" }));
ProfileModel prof = new ProfileModel();
if (x.User != null)
{
    prof = mapper.Map(x);
}