私は非常にシンプルで簡単なモデルではありませんが、特定のデータを取得したいのですが、Linqや使用するコマンドに慣れていません。ここではモデルのコードは次のとおりです。Linqを使ってモデルから値を取得するasp.net mvc
public class RootObject
{
public string _id { get; set; }
public string court { get; set; }
public string type { get; set; }
public string caption { get; set; }
public Case cases { get; set; }
public Dates dates { get; set; }
public Judge judge { get; set; }
public Balance balance { get; set; }
public Sentence sentence { get; set; }
public List<Charge> charges { get; set; }
public List<Participant> participants { get; set; }
}
public class Participant
{
public string _id { get; set; }
public string type { get; set; }
public int partyNumber { get; set; }
public Name2 name { get; set; }
public Address address { get; set; }
public Phone phone { get; set; }
public Birth birth { get; set; }
public List<Cost> costs { get; set; }
public List<Receipt> receipts { get; set; }
}
public class Name2
{
public string prefix { get; set; }
public string first { get; set; }
public string middle { get; set; }
public string last { get; set; }
public string suffix { get; set; }
public string company { get; set; }
public string full { get; set; }
}
私は基本的にルートオブジェクトと参加者リストをそのName2はクラスで最初と最後の名前またはフルネームを取得しようとしています。私はオブジェクトを呼び出すためにasp.net 5とmvc 6とlinqを使用していますが、間違っている私のlinqのために値を取得するように見えることはできません。モデルは、ビュークラスにIEnumerableをリストのように渡され、ここで名前を試してみて、取得するために使用するコードです:任意の助けをいただければ幸いです
@foreach (var item in Model)
{
@item.participants.Select(i => i.name.full);
}
が。
はあなたの時間
は、あなたがしたいですかすべての名前を単一の文字列として表示するには? – Andrei
そのことについてはっきりしていないことをお詫び申し上げます。私は各エントリに1つの名前を表示したい。 –