私は以下を使用してデータにアクセスします。
public ActionResult Index()
{
//IEnumerable<ChatLogs> c = from p in db.ChatLogs select p;
//return View(c);
using (var db = new ChatLogContext())
{
var list = db.ChatLogs.ToList();
return View(list);
}
}
このデータのコレクションを View の TextArea 内に保存する方法を知りたいですか? Web フォームを使用したときは、textBox.Text = textBox.Text + "some data from database"; だけで済みました。
意見:
@model IEnumerable<Chat.Models.ChatLogs>
@Html.TextArea("chatScreen", new { @Class = "chatScreen" })
ありがとうございました。