10

基本クラスの派生クラスからプロパティを取得するにはどうすればよいですか?

基本クラス:

public abstract class BaseModel {
    protected static readonly Dictionary<string, Func<BaseModel, object>>
            _propertyGetters = typeof(BaseModel).GetProperties().Where(p => _getValidations(p).Length != 0).ToDictionary(p => p.Name, p => _getValueGetter(p));
}

派生クラス:

public class ServerItem : BaseModel, IDataErrorInfo {
    [Required(ErrorMessage = "Field name is required.")]
    public string Name { get; set; }
}

public class OtherServerItem : BaseModel, IDataErrorInfo {
    [Required(ErrorMessage = "Field name is required.")]
    public string OtherName { get; set; }

    [Required(ErrorMessage = "Field SomethingThatIsOnlyHereis required.")]
    public string SomethingThatIsOnlyHere{ get; set; }
}

この例では、BaseModel クラスで ServerItem クラスから "Name" プロパティを取得できますか?

編集: ここで説明されているように、モデルの検証を実装しようとしています: http://weblogs.asp.net/marianor/archive/2009/04/17/wpf-validation-with-attributes-and-idataerrorinfo-interface-in -mvvm.aspx

(ほぼ) すべての検証マジックを含む基本モデルを作成し、そのモデルを拡張すれば、問題ないと考えました...

4

7 に答える 7

8

派生クラスがメソッドまたはプロパティを実装する必要がある場合は、そのメソッドまたはプロパティを抽象宣言として基本クラスに導入する必要があります。

たとえば、Nameプロパティの場合、基本クラスに次を追加します。

public abstract string Name { get; set; }

次に、派生クラスはそれを実装するか、それ自体が抽象クラスでなければなりません。

プロパティの抽象バージョンを基本クラスに追加すると、基本クラスのコンストラクター以外Nameのどこからでも基本クラスでアクセスできるようになります。

于 2013-04-05T12:53:36.013 に答える
7

基本クラス内から派生クラスのプロパティを文字通りフェッチする必要がある場合は、たとえばリフレクションを使用できます-このように...

using System;
public class BaseModel
{
    public string getName()
    {
        return (string) this.GetType().GetProperty("Name").GetValue(this, null);
    }
}

public class SubModel : BaseModel
{
    public string Name { get; set; }
}

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            SubModel b = new SubModel();
            b.Name = "hello";
            System.Console.Out.WriteLine(b.getName()); //prints hello
        }
    }
}

ただし、これは推奨されません。マシューが言ったように、おそらく設計を再考する必要があります。

プロパティを基本クラスにスローしないことについては、基本クラスと派生クラスを無関係なオブジェクトに分離し、コンストラクターを介して渡すことができます。

于 2013-04-05T13:06:24.157 に答える
7

両方のクラスが同じアセンブリにある場合は、これを試すことができます。

Assembly
    .GetAssembly(typeof(BaseClass))
    .GetTypes()
    .Where(t => t.IsSubclassOf(typeof(BaseClass))
    .SelectMany(t => t.GetProperties());

これにより、 のすべてのサブクラスのすべてのプロパティが得られますBaseClass

于 2013-04-05T13:06:37.657 に答える
1

さて、私はこの投稿の著者とは少し異なる方法でこの問題を解決しました: http://weblogs.asp.net/marianor/archive/2009/04/17/wpf-validation-with-attributes-and-idataerrorinfo-interface-in -mvvm.aspx

public abstract class BaseModel : IDataErrorInfo {
    protected Type _type;
    protected readonly Dictionary<string, ValidationAttribute[]> _validators;
    protected readonly Dictionary<string, PropertyInfo> _properties;

    public BaseModel() {
        _type = this.GetType();
        _properties = _type.GetProperties().ToDictionary(p => p.Name, p => p);
        _validators = _properties.Where(p => _getValidations(p.Value).Length != 0).ToDictionary(p => p.Value.Name, p => _getValidations(p.Value));
    }

    protected ValidationAttribute[] _getValidations(PropertyInfo property) {
        return (ValidationAttribute[])property.GetCustomAttributes(typeof(ValidationAttribute), true);
    }

    public string this[string columnName] {
        get {
            if (_properties.ContainsKey(columnName)) {
                var value = _properties[columnName].GetValue(this, null);
                var errors = _validators[columnName].Where(v => !v.IsValid(value)).Select(v => v.ErrorMessage).ToArray();
                return string.Join(Environment.NewLine, errors);
            }

            return string.Empty;
        }
    }

    public string Error {
        get { throw new NotImplementedException(); }
    }
}

多分それは誰かを助けるでしょう。

于 2013-04-05T14:02:39.677 に答える
0
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace TESTNEW
{
   public abstract class BusinessStructure
    {
       public BusinessStructure()
       { }

       public string Name { get; set; }
   public string[] PropertyNames{
       get
       { 
                System.Reflection.PropertyInfo[] Pr;
                System.Type _type = this.GetType();
                Pr = _type.GetProperties();
                string[] ReturnValue = new string[Pr.Length];
                for (int a = 0; a <= Pr.Length - 1; a++)
                {
                    ReturnValue[a] = Pr[a].Name;
                }
                return ReturnValue;
       }
   }

}


public class MyCLS : BusinessStructure
   {
       public MyCLS() { }
       public int ID { get; set; }
       public string Value { get; set; }


   }
   public class Test
   {
       void Test()
       {
           MyCLS Cls = new MyCLS();
           string[] s = Cls.PropertyNames;
           for (int a = 0; a <= s.Length - 1; a++)
           {
            System.Windows.Forms.MessageBox.Show(s[a].ToString());
           }
       }
   }
}
于 2016-06-15T11:09:35.423 に答える
0

BaseModel から継承されたすべてのクラスのアセンブリをスキャンし、次のように辞書を作成します。

Dictionary<Type, Dictionary<string, Func<BaseModel, object>>>
于 2013-04-05T12:55:29.013 に答える