English 中文(简体)
查看模型接线困难
原标题:View-Model wiring up difficulties

因此,我将视图中的字段连接到模型类,如下所示:

<%= Html.TextBox("FixedRateOverride", Model.FixedRateOverride.HasValue ? Model.FixedRateOverride.Value.ToString(Chatham.Web.Data.Constants.Format.FiveDecimalPlacesFormatString) : "", new { @class = "economicTextBox", propertyName = "FixedRateOverride", onchange = "UpdateField(this);" })%>

我们现在要做的是消除存储在模型base上的所有override类型字段,并将它们直接连接到从该模型base继承的class的实际字段(有3种类型)。

视图不能从其中的任何一个继承,因为进入视图时,它可能是3中的任何一种,因此它必须从基类继承。

当视图仅从继承时,我将如何将这些字段连接到模型的特定类型的字段?

最佳回答

我找到了一种方法,但我怀疑这是否是最有效或最推荐的方法,尽管它可能是。我将对嵌入式控件中Model的调用更改为将其强制转换为子模型,如下所示:

((SubModel)Model)

似乎有效,但正如我所说,看起来很奇怪,可能有更好的方法来做到这一点,但这是我目前的工作。

问题回答

暂无回答




相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签