最初にエンティティ フレームワークとデータベースを使用して、asp.net C# MVC アプリケーションの開発を開始しました。私はすべての概念に不慣れです。データベースに「Lote」と「Cargas」の 2 つのテーブルがあります。両方のコントローラーとビューを作成しました。私のテーブル「Lote」には、lot_numero という名前の主キーがあり、これはテーブル「Carga」の外部キーとして機能します。
テーブル「Carga」のすべてのデータを印刷しているビューがあります。以下のコードを確認できます。
@model IEnumerable<Deltas.carga>
@*@model IEnumerable<IGrouping<string, Deltas.carga>>*@
@{
ViewBag.Title = "Cargas por Lote";
@*var dbAccess = Database.Open("FornosDeltaEntities");*@
}
<h2>Index</h2>
<p>
@*@Html.ActionLink("Create New", "Create")*@
@using (Html.BeginForm())
{
<p>
Número de Lote:@Html.TextBox("searchString")
<input type="submit" value="Pesquisar por lote"/>
</p>
}
</p>
<table border="1">
<tr>
<th>
NºLote
</th>
<th>
NºCarga
</th>
<th>
NºCemento
</th>
<th>
TPE
</th>
<th>Data</th>
<th>Acções</th>
</tr>
@foreach (var item in Model) {
@*var numLoteCurrente = @item.lot_numero;*@
<tr>
<td>
@*@Html.DisplayFor(modelItem => item.lot_numero)*@
@*@numLoteCurrente*@
@Html.ActionLink(item.lot_numero, "Details", "Lote",new { id = item.lot_numero },null)
</td>
<td>
@Html.ActionLink(item.cga_numero,"Details",new{id = item.cga_numero}, null)
</td>
<td>
@Html.DisplayFor(modelItem => item.cem_numero)
</td>
<td>
@Html.DisplayFor(modelItem => item.tpe_numero)
</td>
<td>@Html.DisplayFor(modelItem => item.ConverteData)</td>
<td>
@* @Html.ActionLink("Edit", "Edit", new { id=item.cga_numero }) |*@
@Html.ActionLink("Detalhes", "Details", new { id=item.cga_numero }) @*|
@Html.ActionLink("Delete", "Delete", new { id=item.cga_numero })*@
</td>
</tr>
}
</table>
<p> @Html.ActionLink("Back","Index") </p>
foreach ループの直後に、item.lot_numero に関連するリンクを作成して、lot_numero の詳細を確認できることがわかります。そして、これは機能しています。
@foreach (var item in Model)
{
<tr>
<td>
@Html.ActionLink(item.lot_numero, "Details", "Lote",new { id = item.lot_numero },null)
</td>
</tr>
今、リンクを作成する前にやりたいことは、テーブル "Lote" に移動し、その番号がデータベースに存在するかどうかを確認することです。存在する場合は、リンクを印刷します。そうでない場合は、リンクなしで item.lot_number を印刷します。
私の問題は、foreach 内でそのテーブルに接続し、item.lot_numero を持つレコードがあるかどうかを確認する方法です。
ご清聴ありがとうございました。
よろしく、
アガンジュ
私のクラスは次のようなものです:
namespace Deltas
{
using System;
using System.Collections.Generic;
public partial class lote
{
public string lot_numero { get; set; }
public string ope_numero { get; set; }
public string tpe_nome { get; set; }
public Nullable<int> lot_peso_total { get; set; }
public Nullable<int> lot_total_cargas { get; set; }
public Nullable<int> lot_cargas { get; set; }
public Nullable<int> lot_estado { get; set; }
public Nullable<decimal> lot_data { get; set; }
public Nullable<decimal> lot_hora { get; set; }
public Nullable<decimal> lot_peso_prp { get; set; }
public Nullable<decimal> lot_peso_total_cargas { get; set; }
public Nullable<int> lot_cem_num_utilizacoes { get; set; }
public Nullable<int> lot_cem_tipo { get; set; }
public string lot_datahora { get; set; }
}
}
namespace Deltas
{
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Web;
using System.Web.Mvc;
public partial class carga
{
public string cga_numero { get; set; }
public string cem_numero { get; set; }
public string lot_numero { get; set; }
public string tpe_numero { get; set; }
public string buj_numero { get; set; }
public string ope_numero { get; set; }
public Nullable<decimal> for_numero { get; set; }
public string ret_numero { get; set; }
public Nullable<decimal> cga_carga { get; set; }
public Nullable<int> cga_parte_lote { get; set; }
public Nullable<decimal> cga_data_in_forno { get; set; }
public Nullable<decimal> cga_hora_in_forno { get; set; }
public string cga_tmp_in_forno { get; set; }
public Nullable<decimal> cga_data_out_forno { get; set; }
public Nullable<decimal> cga_hora_out_forno { get; set; }
public string cga_tmp_out_forno { get; set; }
public Nullable<int> cga_estado { get; set; }
public Nullable<int> cga_cem_num_utilizacoes { get; set; }
public Nullable<int> cga_ret_total_utilizacoes { get; set; }
public Nullable<int> cga_ret_num_utilizacoes { get; set; }
public Nullable<int> cga_ret_lim_utilizacoes { get; set; }
public Nullable<int> cga_buj_total_utilizacoes { get; set; }
public Nullable<int> cga_buj_num_utilizacoes { get; set; }
public Nullable<int> cga_buj_lim_utilizacoes { get; set; }
public string cga_lot_tmp_out_forno { get; set; }
public string cga_lot_tmp_in_forno { get; set; }
public Nullable<int> cga_lot_cem_num_utilizacoes { get; set; }
public string cga_datahora { get; set; }
public DateTime ConverteData { get { return DateTime.ParseExact(cga_datahora, "yyMMddHHmmss", CultureInfo.CurrentCulture); }}
}
}
ナビゲーション プロパティがあるかどうかはわかりません。それについて簡単に説明していただけますか?
前もってありがとう、アガンジュ