IEnumerable模型对象到数组

时间:2016-11-04 18:18:28

标签: c# arrays asp.net-core asp.net-core-mvc .net-core

我正在学习C#和dotnet核心,因为我想从我的网络应用程序中移开PHP。我在这里遇到一个具体的问题,我无法理解它。

我将向您展示下面的所有代码,但这里是我想要实现的内容的摘要:我从SQL数据库中获取一个表。我可以使用foreach循环在我的页面上完整显示表格。但是,当我尝试将结果转换为数组,以便我可以从返回的表中访问特定项时,我会遇到各种错误。

顺便说一下,我使用本教程来补充我的Udemy学习课程: https://docs.efproject.net/en/latest/platforms/aspnetcore/existing-db.html

值得一提的是,我是从现有数据库对模型进行逆向工程(因为它在上面的链接教程中)

以下是我的文件,我将在下面解释错误:

型号:

namespace ASPNET_Core_1_0.Models
{
    public partial class Graph
    {
        public int AutoId { get; set; }
        public int Numbers { get; set; }
    }

}

ModelContext:

using System;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata;

namespace ASPNET_Core_1_0.Models
{
    public partial class GraphsContext : DbContext
    {
        public virtual DbSet<Graph> Graph { get; set; }


        public GraphsContext(DbContextOptions<GraphsContext> options)
            : base(options)
        { }


        protected override void OnModelCreating(ModelBuilder modelBuilder)
        {
            modelBuilder.Entity<Graph>(entity =>
            {
                entity.HasKey(e => e.AutoId)
                    .HasName("PK_Blog");
            });
        }
    }
}

控制器:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using ASPNET_Core_1_0.Models;
using Microsoft.EntityFrameworkCore;

// For more information on enabling MVC for empty projects, visit http://go.microsoft.com/fwlink/?LinkID=397860

namespace ASPNET_Core_1_0.Controllers
{
    public class GraphsController : Controller
    {
        private GraphsContext _context;

        public GraphsController(GraphsContext context)
        {
            _context = context;
        }

        public IActionResult Index()
        {
            return View(_context.Graph.ToArray());
        }

        public IActionResult GraphJ()
        {
            var graphs = _context.Graph.FromSql("SELECT * FROM dbo.Graph").ToList();
            ViewBag.YourHtml = graphs;

            return View(_context.Graph.ToList());
        }

    }
}

在MS教程中,索引视图使用了ToList()方法:

    public IActionResult Index()
    {
        return View(_context.Graph.ToList());
    }

我将它更改为ToArray(),希望它的行为类似于:/

索引视图

@model IEnumerable<ASPNET_Core_1_0.Models.Graph>

@{
    ViewBag.Title = "Graphs";
}

<h2>Graphs</h2>



<table class="table">
    <tr>
        <th>Id</th>
        <th>Numbers</th>
    </tr>

    @foreach (var item in Model)
    {
        <tr>
            <td>
                @Html.DisplayFor(modelItem => item.AutoId)
            </td>
            <td>
                @Html.DisplayFor(modelItem => item.Numbers)
            </td>
        </tr>
    }
</table>

@{ 

    // int[] arr = Model.ToArray();

    // int[] array = Model.Cast<int>().ToArray();
    // int somenumber = array[5];
}

<div class="row">
    <div class="col-md-12 text-center">
        @Html.DisplayForModel(Model)
        <br />

    </div>
</div>

问题:

如果查看我的索引视图,有三条注释掉的行,我试图将Model对象强制转换为数组,这样我就可以独立访问返回表中的每个项目。

运行项目后,我收到错误:

  

处理请求时发生未处理的异常。

     

InvalidCastException:无法转换类型的对象   'ASPNET_Core_1_0.Models.Graph'输入'System.Int32'。

问题: 如何将Model对象放入数组中,以便我可以显示表中的特定项而不是整个表。

我想要返回ID 4的值字段吗?

我理解这很可能是一个新手问题,但我在获取甚至理解我在网上看到的答案时遇到了麻烦。

表格数据

我的表数据是简单的两列密钥 - &gt;价值对。 ID号和相应的值。

ID Value
1  10
2  20
3  30
4  40
5  50 

ECT

研究

Best way to convert IList or IEnumerable to Array

Convert IEnumerable<int> to int[]

Error: "Cannot implicitly convert type"

C# - Cannot implicitly convert type List<Product> to List<IProduct>

https://www.tutorialspoint.com/csharp/csharp_arrays.htm

https://www.dotnetperls.com/array

https://www.dotnetperls.com/list

How can I find a specific element in a List<T>?

Getting an item in a list

Getting a list item by index

Get array item based on index

2 个答案:

答案 0 :(得分:2)

你有Graph个对象的数组,而不是int的数组。如果您想要的只是这些图表中的Numbers值数组,您可以选择它:

int[] array = Model.Select(g => g.Numbers).ToArray()

或者,从您已经拥有的数组中获取特定数字:

int value = Model.ToArray()[0].Numbers

Graph不只是int。它是包含 int s。

的对象

答案 1 :(得分:0)

您的模型是IEnumerable<ASPNET_Core_1_0.Models.Graph>的类型,因此您无法将其解析为int - 这是异常的根本原因。

要显示您可以编写的数组中的特定值:

@{
    int specificItemValue = Model[5].Numbers;
}