1

建物のデータベース テーブルには、建物の種類がコードとして格納されます。別のルックアップ テーブルに、そのコードの説明が格納されます。

どのように設計すればよいViewModelですか? また、関連する説明の値を取得するには、どこで呼び出しを行う必要がありますか?

1つのオプションを見ることができます。より良いオプションがあるかどうか知りたいです。

BuildingViewModel
{
 public string BuildingTypeCode { get;set;}  
 ...other properties
}

それから私の見解では

code...

<p>@MyService.GetDescription(Model.BuildingTypeCode)</p>

...code

私の考え方は間違っていますか?上記を実行すると、サービスへの依存関係が作成Viewされますか?

更新 1

提供されたソリューションのいくつかに取り組みます。私は別の問題に遭遇したようです。各建物のコンストラクターに直接アクセスできません...

    public ViewResult Show(string ParcelId)
    {
        var result = _service.GetProperty(ParcelId);
        var AltOwners = _service.GetAltOwners(ParcelId);
        var Buildings = _service.GetBuildings(ParcelId);

        ParcelDetailViewModel ViewModel = new ParcelDetailViewModel();
        ViewModel.AltOwnership = new List<OwnerShipViewModel>();
        ViewModel.Buildings = new List<BuildingViewModel>();

        AutoMapper.Mapper.Map(result, ViewModel);
        AutoMapper.Mapper.Map<IEnumerable<AltOwnership>, IEnumerable<OwnerShipViewModel>>(AltOwners,ViewModel.AltOwnership);
        AutoMapper.Mapper.Map<IEnumerable<Building>, IEnumerable<BuildingViewModel>>(Buildings, ViewModel.Buildings);
        ViewModel.Pool = _service.HasPool(ParcelId);
        ViewModel.Homestead = _service.IsHomestead(ParcelId);

        return View(ViewModel);
    }

public class ParcelDetailViewModel
    {
        public IEnumerable<OwnerShipViewModel> AltOwnership { get; set; }
        //public IEnumerable<ValueViewModel> Values { get; set; }
        public IEnumerable<BuildingViewModel> Buildings { get; set; }
        //public IEnumerable<TransferViewModel> Transfers { get; set; }
        //public IEnumerable<SiteAddressViewModel> SiteAddresses { get; set; }

        public string ParcelID { get; set; }
        //public string ParcelDescription { get; set; }
        //public int LandArea { get; set; }
        //public string Incorporation { get; set; }
        //public string SubdivisionCode {get;set;}
        public string UseCode { get; set; }
        //public string SecTwpRge { get; set; }
        //public string Census { get; set; }
        //public string Zoning { get; set; }
        public Boolean  Homestead {get;set;}

        //public int TotalBuildingArea { get; set; }
        //public int TotalLivingArea { get; set; }
        //public int LivingUnits { get; set; }
        //public int Beds { get; set; }
        //public decimal Baths { get; set; }
        public short Pool { get; set; }
        //public int YearBuilt { get; set; }
        
    }
4

2 に答える 2

4

私の理解では、ビューモデルは表示可能なデータを対象としています。ここでの本当の問題は、モデル依存のロジックをビューに入れることだと思います。

サービス ルックアップを実行できますが、そのコードはコントローラーに保持します。ビュー モデルは、表示準備ができていると見なされます (書式設定のために保存します)。

class BuildingViewModel 
{ 
    public string BuildingTypeCode { get;set;}   
    ...other properties 
} 

次に、レンダリングするにルックアップを行います。

public ActionResult Building()
{
    var typeCode = // get from original source?
    var model = new BuildingViewModel
    {
        BuildingTypeCode = MyService.GetDescription(typeCode)
    };
    return View("Building", model);
}

JSP カスタム タグの長い行から来たので、ビュー レイアウトにコードが隠されていることを恐れています。IMO、そのレイヤーはできるだけ馬鹿にする必要があります。

于 2012-02-21T16:32:38.130 に答える
0

それを行うヘルパー、またはDisplayTemplateを用意することをお勧めします

public class ViewHelpers
{
  public static string GetDescription(string code)
  {
    MyService.GetDescription(Model.BuildingTypeCode);
  }
}

また

@ModelType string
@Html.DisplayFor("",MyService.GetDescription(Model.BuildingTypeCode));

テンプレートの詳細:http ://www.headcrash.us/blog/2011/09/custom-display-and-editor-templates-with-asp-net-mvc-3-razor/

これらのアプローチはどちらもサービスへの依存関係をもたらしますが、アプリケーション全体ではなく、1つの場所でテスト/変更できます(さらに、使用法はよりクリーンに見えます)。

于 2012-02-21T15:51:48.193 に答える