php 到 asp.net:如何在视图中显示 sql 结果
首先,我是一名 PHP 开发人员,试图了解 ASP.NET。
所以我创建了一个基本的 MVC 项目。
我有一个没有已知字段的查询(即从产品中选择 *)我该如何:
在控制器中执行 - 我的尝试:
public ActionResult getProducts() { 使用 (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["myDB"].ToString())) { string sql = "从产品中选择*"; SqlCommand cmd = new SqlCommand(sql, cn); cn.Open(); SqlDataReader rdr = cmd.ExecuteReader(CommandBehavior.CloseConnection); } 返回视图(); }
如何将结果传递给视图,然后循环遍历它们,如下所示:
foreach ($data as $key => $val) { 回显 $key。 = '.$val.'
'; }
请帮忙,因为这在 PHP 中非常简单,但在 ASP.NET 中似乎非常令人困惑。
附:抱歉格式错误。
干杯, 旅行。
Firstly, im a PHP developer trying to get my head around asp.net.
so i have created a basic MVC project.
I have a query without the fields known (ie. select * from products) how do I:
execute in Controller - my attempt:
public ActionResult getProducts() { using (SqlConnection cn = new SqlConnection(ConfigurationManager.ConnectionStrings["myDB"].ToString())) { string sql = "select * from products"; SqlCommand cmd = new SqlCommand(sql, cn); cn.Open(); SqlDataReader rdr = cmd.ExecuteReader(CommandBehavior.CloseConnection); } return View(); }
how do i pass the results to a View and then loop through them like:
foreach ($data as $key => $val) { echo $key.' = '.$val.'<br>'; }
please help as this is SOOOOO simple in PHP but seems to be very confusing in asp.net.
ps. sorry for the formatting.
cheers,
trav.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您需要一个模型类:
在您的控制器中:
在视图中:
一个警告。您在这里做事“困难”,不使用像实体框架或 Nhibernate 这样的 ORM,也不遵循不使用视图模型的最佳实践。当然,这对于学习来说没问题,只是需要注意一些事情。 ;)
First you'll need a model class:
And in your controller:
And in the View:
One caveat. Your doing things "the hard way" here by not using an ORM like Entity Framework or Nhibernate and not following best practices by not using a View Model. Thats fine for just learning of course, just something to be aware of. ;)