gpt4 book ai didi

c# - 表达式树可能不包含动态操作,但它没有告诉我在哪里

转载 作者:太空狗 更新时间:2023-10-29 22:09:11 28 4
gpt4 key购买 nike

我在收到消息时遇到问题:

\OrderGas.cshtml(24): error CS1963: An expression tree may not contain a dynamic operation"}

这是我的网络表单代码:

@using SuburbanCustPortal.MiscClasses

@{
ViewBag.Title = "Order Gas";
}

<h2>Order Gas</h2>

@using (Html.BeginForm("OrderGasSuccess", "GasOrder", FormMethod.Post))
{
@Html.ValidationSummary(true, "Submit was unsuccessful. Please correct the errors and try again.")

<div>
<fieldset>
<legend>Account Information - all fields required</legend>

<div class="highlightedtext">
@ViewBag.Account
</div>

@if (SessionHelper.ShowPaymentOptions)
{
<div class="editor-label">
@Html.LabelFor(m => m.PaymentMethod)
</div>
<div class="editor-field">
@Html.DropDownListFor(x => x.PaymentMethod, SessionHelper.PaymentMethods)
</div>
}

<div class="editor-label">
@Html.LabelFor(m => m.TankPercent)
</div>
<div class="editor-field">
@Html.TextBoxFor(m => m.TankPercent, new { @class = "GenericSmallTextBox" })
<label class="SmallBluelabel">Please enter the current percentage in your tank.</label>
@Html.ValidationMessageFor(m => m.TankPercent)
</div>

<br/>

<div class="editor-field">
@Html.CheckBoxFor(x => x.IsFill)
@Html.LabelFor(m => m.IsFill)
<label class="SmallBluelabel">Would you like us to fill your tank?</label>
@Html.ValidationMessageFor(m => m.IsFill)
</div>

<div class="editor-label">
<b> - OR - </b>
</div>

@if (!string.IsNullOrWhiteSpace(ViewBag.AlternateGasMessage))
{
<fieldset class="pleasenote">
<legend>@ViewBag.AlternateGasMessageHeader</legend>
<label class="warningLabel">@ViewBag.AlternateGasMessage</label>
</fieldset>
}

<div class="editor-label">
@Html.LabelFor(m => m.Amount)
</div>

<div class="editor-field">
@Html.TextBoxFor(m => m.Amount, new { @class = "GenericSmallTextBox" })
<label class="SmallBluelabel">Or request a specific amount in the tank?</label>


@if (ViewBag.MinimumGasMessage != null)
{
<div>
<label class="SmallBluelabel">@ViewBag.MinimumGasMessage</label>
</div>
}

@Html.ValidationMessageFor(m => m.Amount)
</div>

<div class="editor-label">
@Html.LabelFor(m => m.ContactNumber)
</div>
<div class="editor-field">
@Html.TextBoxFor(m => m.ContactNumber, new { @class = "GenericTextBox" })
@Html.ValidationMessageFor(m => m.ContactNumber)
</div>

<div class="editor-label">
@Html.LabelFor(m => m.Message)
</div>
<div class="editor-field">
@Html.EditorFor(x => x.Message)
</div>

<div>
<input type="submit" value="Submit" class="typicalbutton"/>
</div>

</fieldset>

</div>
}

这是调用网络表单的类:

public ActionResult OrderGas()
{
var control = Logging.StartLog();

try
{
Logging.WriteLog("Starting OrderGas");

var svc = new SubService();
var orderGasModel = new OrderGasModel();

orderGasModel.ContactNumber = svc.GetCustomerPhoneNumber(SessionHelper.TokenId, SessionHelper.CurrentAccountGuid);
Logging.WriteLog(string.Format("orderGasModel.ContactNumber: {0}", orderGasModel.ContactNumber));

if (SessionHelper.ShowPaymentOptions)
{
SessionHelper.PaymentMethods = GetPaymentMethods2();
}
if (SessionHelper.MinimumGasOrderAmount > 0)
{
var msg = string.Format("Minimum gas order is {0} gallons.", SessionHelper.MinimumGasOrderAmount);
Logging.WriteLog(msg);
ViewBag.MinimumGasMessage = msg;
}

var gasordermsg = svc.GetAlternateGasOrderMessage(SessionHelper.TokenId);
ViewBag.AlternateGasMessageHeader = gasordermsg.Item1;
ViewBag.AlternateGasMessage = gasordermsg.Item2;
ViewBag.Account = string.Format("{0}-{1}", SessionHelper.CurrentBranchNumber.ToBranchString(),
SessionHelper.CurrentAccountNumber.ToAccountString());

return View(orderGasModel);
}
catch (Exception ex)
{
Logging.WriteException(ex);
Logging.WriteLog(ex.Message);
return View("Error");
}
finally
{
Logging.WriteLog(control, "End OrderGas");
}
}

我将其与我的历史记录进行了比较,以查看我更改了什么,但我不明白为什么它不再起作用了。当我对我的 PaymentMethods 进行调试时,它在到达那里之前给出了一个异常。

我已经尝试注释掉 cshmtl 的部分内容,但我无法明确回答是哪一部分导致了错误。

我不知所措......有人看到我做错了什么吗?

最佳答案

您的 HTML 中缺少 @model 引用。第一行遇到lambda,找不到模型,会抛出这个错误。

在您的 cshtml 顶部,添加 @model OrderGasModel

关于c# - 表达式树可能不包含动态操作,但它没有告诉我在哪里,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28488992/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com