নিয়ন্ত্রক:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MvcApplication1.Models;
using System.ComponentModel.DataAnnotations.Schema;
namespace MvcApplication1.Controllers
{
public class studentsController : Controller
{
//
// GET: /students/
public ActionResult details()
{
int id = 16;
studentContext std = new studentContext();
student first = std.details.Single(m => m.RollNo == id);
return View(first);
}
}
}
DbContext মডেল:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;
namespace MvcApplication1.Models
{
public class studentContext : DbContext
{
public DbSet<student> details { get; set; }
}
}
মডেল:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.ComponentModel.DataAnnotations.Schema;
namespace MvcApplication1.Models
{
[Table("studentdetails")]
public class student
{
public int RollNo;
public string Name;
public string Stream;
public string Div;
}
}
ডাটাবেস টেবিল:
CREATE TABLE [dbo].[studentdetails](
[RollNo] [int] NULL,
[Name] [nvarchar](50) NULL,
[Stream] [nvarchar](50) NULL,
[Div] [nvarchar](50) NULL
)
Global.asax.cs এ
Database.SetInitializer<MvcApplication1.Models.studentContext>(null);
উপরের কোডটিতে আমি যে সমস্ত ক্লাসে কাজ করছি তা তালিকাভুক্ত করে। আমার অ্যাপ্লিকেশন চালানোর পরে ত্রুটিটি পেয়েছি:
"মডেল জেনারেশনের সময় এক বা একাধিক বৈধতা ত্রুটি সনাক্ত করা হয়েছিল" পাশাপাশি "সত্তা টাইপের কোনও কী সংজ্ঞায়িত হয়নি"।