如何获得动态类型属性

本文关键字:属性 类型 动态 何获得 | 更新日期: 2023-09-27 18:06:19

我有一个项目,我应该在其他层放置一些代码,因此我应该将linq查询转移到方法。这段代码:

var HRPersonnelContactInfoTelService = App.Api.HRPersonnelContactInfoTelService.Instance().Data();
        var SMSGroupMemberService = App.Api.SMSGroupMemberService.Instance().Data();
        return (from x in SMSGroupMemberService
                where Recivers.Contains(x.GroupID)
                join v in HRPersonnelContactInfoTelService on x.Pers_Code equals v.Pers_Code
                select new { Pers_Code = (int)x.Pers_Code, Tel = v.Tel }).ToList();

我将代码转换为:

public dynamic HRPersonnelContactInfoTelMethod(List<int> Recivers)
    {
        var HRPersonnelContactInfoTelService = App.Api.HRPersonnelContactInfoTelService.Instance().Data();
        var SMSGroupMemberService = App.Api.SMSGroupMemberService.Instance().Data();
        return (from x in SMSGroupMemberService
                where Recivers.Contains(x.GroupID)
                join v in HRPersonnelContactInfoTelService on x.Pers_Code equals v.Pers_Code
                select new { Pers_Code = (int)x.Pers_Code, Tel = v.Tel }).ToList();
    }

但是当我在foreach

中使用时

类型为'Microsoft.CSharp.RuntimeBinder '的异常。RuntimeBinderException'在System.Core.dll中发生,但未在用户代码中处理

附加信息:'object'不包含'Pers_Code'的定义

像这样使用:

var q = App.Api.HRPersonnelContactInfoTelService.Instance().HRPersonnelContactInfoTelMethod(Recivers);
        foreach (var item in Recivers)
        {
            var res = App.Api.SMSMessageGroupService.Instance().AddOrUpdate(null, MessageId, item);
        }
        foreach (var z in q)
        {
            string SendNumber = Number[1].Trim().Substring(0, 3) == "+98" ? Number[1].Trim() : "+98" + Number[1].Trim();
            var res = App.Api.SMSMessageLogService.Instance().AddOrUpdate(null, MessageId, (int)z.Pers_Code, z.Tel.ToString(),
                 0, int.Parse(ddlSMSWorkingGroups.SelectedValue.ToString()), (int)z.Pers_Code, SendNumber, 0);
            send.SendSMS("nazmaran", "qwerty", SendNumber, "09122596898", txtPredefinedRemarks.Text);
        }

如何获得动态类型属性

我永远不会使用动态返回使用匿名类型投影结果的linq查询的结果。相反,我将创建一个保存结果的类:

public class SomeName
{
   public int Pers_Code { set; get; }
   public string /* Change to Correct Type */ Tel { set; get;}
}

用法:

public List<SomeName> HRPersonnelContactInfoTelMethod(List<int> Recivers)
{
   var HRPersonnelContactInfoTelService = App.Api.HRPersonnelContactInfoTelService.Instance().Data();
   var SMSGroupMemberService = App.Api.SMSGroupMemberService.Instance().Data();
   return (from x in SMSGroupMemberService
           where Recivers.Contains(x.GroupID)
           join v in HRPersonnelContactInfoTelService on x.Pers_Code equals v.Pers_Code
           select new SomeName() { Pers_Code = (int)x.Pers_Code, Tel = v.Tel }).ToList();
}

创建一个类型来保存结果,这与使用dynamic的复杂性相比简直不值一提。

似乎。net不能通过动态的方式对var和迭代器进行动态类型化,它呈现一个对象列表。

因此,当您使用var - . net创建变量时,不能预测返回类型并创建新的object变量,因为每个类型都继承自object

然而,将返回类型实现为dynamic是一种不好的做法-除非您不调用此方法,否则无法发现可能的错误。因此,实现另一个类的用法,正如@user3185569建议的那样。