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
Jithil John
NA
935
143.9k
How can I solve this in Asp.net Mvc
May 11 2015 2:49 AM
Error : An anonymous type cannot have multiple properties with the same name
Here is my code
var employeeTasks = from empTasks in db.EmployeeTasks
join tsk in db.Tasks on empTasks.Tasks_TaskId equals tsk.TaskId
join emp in db.E_Employee on empTasks.Employee_CreatorID equals emp.EmpID
join emp2 in db.E_Employee on empTasks.Employee_AssigneeID equals emp2.EmpID
join emp3 in db.E_Employee on empTasks.Employee_ReporterID equals emp3.EmpID
where empTasks.EmployeeTaskId == id
select new
{
tsk.TaskId,
emp.EmpID,
emp2.EmpID,
emp3.EmpID,
empTasks.Status
};
Reply
Answers (
2
)
Bind database to textbox with EF
When i am creating new team project its getting error