TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Gaurav Singh
NA
0
25.2k
Entity framework 6.1.3 Code first many to many relationship
May 30 2015 7:21 PM
I tried to build a database with entity framework code first. When i run my project its
not being able to create a new database
at all and corresponding tables which are in many to many relationship. I do not get a clue what went wrong, please guys help me out with it. i am stucked on it for a day already.
Thank you.
below are my codes:
public
class Student
{
public int StudentID { get; set; }
public string StudentName { get; set; }
public ICollection<Course> Courses { get; set; }
}
public
class Course
{
public int CourseID { get; set; }
public string CourseName { get; set; }
public IList<Student> Students { get; set; }
}
public
class StudentDbContext : DbContext
{
public DbSet<Student> Students { get; set; }
public DbSet<Course> Courses { get; set; }
}
<connectionStrings>
<add name="StudentDbContext"
connectionString="server=.; database=Lenovoedu; integrated security = true"
providerName ="System.Data.SqlClient"/>
</connectionStrings>
I would be grateful.
Reply
Answers (
1
)
GridView row data Shown in FormView. Change Mode & Save data
Developing a dynamic website in English and Arabic Language.