I have an application in Asp.NET MVC with Entity Data Model. Now I have a model for state_master table where I have only one property 'State_Name' and in database table I have 2 fields 'State_ID' which is auto incremented and 'State_Name' for which I will insert the data. Now as I have only one property in Model I am not able to fetch both the fields 'State_ID' and 'State_Name' using this model. This is the issue which I am facing.
State Model File :
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
namespace ViewData.Models
{
 public class state_model
      {
        [Key]
        public string state_name { get; set; }
       }
 }
View File :
@using ViewData.Models
@{
   Layout = null;
 }
  <!DOCTYPE html>
  <html>
  <head>
  <meta name="viewport" content="width=device-width" />
  <title>state_view</title>
  </head> 
  <body>
   <div> 
   <ul>
      @foreach (var state in ViewData["states"] as   IList<state_model>)
          {
            <li>
               @state.state_name
            </li>
           }
   </ul>
   </div>
   </body>
   </html>
Controller File :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using ViewData.DataAccessLayer;
using ViewData.Models;
namespace ViewData.Controllers
{
 public class StateController : Controller
    {
     // GET: State
     public ActionResult Index()
        {
         DataLayer dl = new DataLayer();
         IList<state_model> data = (from o in dl.states select o).ToList();
         ViewData["states"] = data;
         return View("state_view");
         }
     }
 }
 
     
    