ユーザーが「スイスの銀行」に一定の金額を追加できる機能を作成しています。スイス銀行の残高は、ユーザーごとにdb
(id
と) に保存されます。balance
ユーザーの現在の残高を表示する方法と、金額を追加または削除する方法に行き詰まっています。私は非常に新しいのでc#
、mvc4
助けていただければ幸いです(正しい方向へのプッシュだけでも素晴らしいでしょう)。
コントローラ:
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using FiveGangs.Models;
namespace FiveGangs.Controllers {
public class BankController : Controller {
private FGEntities db = new FGEntities();
//
// GET: /SwissBank/
[HttpGet]
public ActionResult Index()
{
var gangster =
db.UserGangster.FirstOrDefault(g => g.UserProfile.UserName == User.Identity.Name && g.Health > 0);
}
public ActionResult Index() {
return View(db.SwissBank);
}
}
}
モデル:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace FiveGangs.Models
{
public partial class SwissBank {
public int Id { get; set; }
public string Balance { get; set; }
}
}
意見:
@using FiveGangs.Models
@model System.Data.Entity.DbSet<SwissBank>
@{
ViewBag.Title = "Bank";
}
<h2>Bank</h2>
<form>
<fieldset>
<legend>Swiss Bank</legend>
<label>Balance: @String.Format("{0:C0}", @Model.Balance)</label>
<span class="add-on">$</span>
<input type="text" placeholder="Amount...">
<span class="help-block">Withdrawing from your Swiss bank will cost you 25% of the amount of cash withdrawn!</span>
<button class="btn" type="button">Deposit</button>
<button class="btn" type="button">Withdraw</button>
</fieldset>
</form>