0

我正在尝试为包含子网格视图的数据源的网格视图创建绑定源。我尝试过以下方式:

我有 3 个表:
患者:id(PK)、fname、fname
研究:id(FK)、study_id(PK)、treatment_site、treatment_type、physician、
dosimerist Study_Status:study_id(PK,FK)、hasContours、hasPlan、isReady

我有以下模型:

public class myPatient
{
     public string fname { get; set; }
     public string lname { get; set; }
     public bool hascontours { get; set; }
     public bool hasplan { get; set; }
     public bool isready { get; set; }
     public IEnumerable<editPatient> epr{ get; set; }
}

public class editPatient
{
     public string fname { get; set; }
     public string lname { get; set; }
     public string txsite { get; set; }
     public string txtype { get; set; }
     public string physician { get; set; }
     public string dosimetrist { get; set; }
}

public class myPatientList : List<myPatient>
{
    public myPatientsList()
    {
        AddRange(getMyPatients().ToList());
    }

    public IEnumerable<myPatient> getMyPatients()
    {
        Connection plan_trackerEM = new Connection();
        return from np in plan_trackerEM.patients
               join ns in plan_trackerEM.studies on np.ID equals ns.Id
               join nss in plan_trackerEM.study_status on ns.study_id equals nss.study_id
               where ns.dosimetrist == App.userClass.user_id || ns.physician == App.userClass.user_id)
               select new myPatient()
               {
                   fname = np.fname,
                   lname = np.lname,
                   hascontours = nss.hasContours,
                   hasplan = nss.hasPlan,
                   isready = nss.isReady,
                   epr = getEditPatients(ns.study_id).ToList()
               };

    }

    public IEnumerable<editPatient> getEditPatients(long study_id)
    {
        Connection plan_trackerEM = new Connection();
        return from np in plan_trackerEM.patients
               join ns in plan_trackerEM.studies on np.ID equals ns.Id
               where ns.study_id == study_id
               select new editPatient()
               {
                   fname = np.fname,
                   lname = np.lname,
                   txsite = ns.treatment_site,
                   txtype = ns.treatment_type,
                   physician = ns.physician,
                   dosimetrist = ns.dosimetrist
               };

    }
}

然后我使用 XML 绑定数据

<local:myPatientsList x:Key="mPL"/>
<CollectionViewSource x:Key="MP" Source="{StaticResource mPL}"/>
<CollectionViewSource x:Key="EP" Source="{Binding epr, Source={StaticResource MP}}"/>

此错误为:{“LINQ to Entities 无法识别方法 'System.Collections.Generic.List 1[Plan_Tracker.editPatient] ToList[editPatient](System.Collections.Generic.IEnumerable1[Plan_Tracker.editPatient])' 方法,并且此方法无法转换为存储表达式。”}

任何有关如何使其工作的指针将不胜感激。将存储在“epr”字段中的数据需要用户可编辑。

编辑 2013-05-21
好的,我可能会通过一个非常奇怪的工作来接近。

我从查询结果中删除了 epr = getEditPatients(ns.study_id).ToList() ,然后在查询结果之后添加:

List<mypatientResults> new_tmp_mp = new List<mypatientResults>();

foreach (mypatientResults tmp_mp in _mp)
{
    tmp_mp.epr = getEditPatients(tmp_mp.sid).ToList();
    new_tmp_mp.Add(tmp_mp);    
}
return new_tmp_mp;

这现在运行没有错误,但我还没有成功(YET)使用 epr 作为数据源。我已将它作为列添加到数据网格中以进行调试,它确实将其报告为 System.Collections.Generic.List`1[Plan_Tracker.editpatientResults],但这可能是由于声明了变量而不是因为数据。

我仍然在这里不知所措,可以帮助解决这个问题。

4

1 回答 1

0

我不确定推理,可能是 Linq 不喜欢树状结构?!?不管上面的编辑文本是解决方案。我能够成功创建自定义层次结构并将其显示在父/子网格视图中。

于 2013-05-21T17:50:47.423 回答