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
Dharmendra Singh
NA
119
48.3k
Linq to Entities Insert, Delete on Foreign key relation
Nov 25 2013 6:27 AM
HI
I have problem to insert records on table through linq to entities, where two tables are connected with foreign key.
My first table is
CREATE TABLE [dbo].[Emp]
( [Id] [int] IDENTITY(1,1) NOT NULL,
[EmpName] [varchar](50) NULL,
CONSTRAINT [PK_Emp] PRIMARY KEY CLUSTERED
( [Id] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF,
IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON,
ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY]
and second table is
CREATE TABLE [dbo].[EMpSecond]
( [Id] [int] NOT NULL,
[EmpAge] [int] NULL )
ON [PRIMARY] GO
ALTER TABLE [dbo].[EMpSecond] WITH
CHECK ADD FOREIGN KEY([Id]) REFERENCES [dbo].[Emp] ([Id])
my insertion C# code is
Emp emp = new Emp();
emp.EmpName = txtName.Text;
EMpSecond sec = new EMpSecond();
sec.EmpAge = Convert.ToInt32(txtAge.Text);
//sec.Emp.Id = emp.Id;
using (TestEntities testEntities = new TestEntities())
{
testEntities.AddToEmps(emp);
testEntities.SaveChanges();
sec.Id=emp.Id;
testEntities.AddToEMpSeconds(sec);
testEntities.SaveChanges();
}
it gives error on the line testEntities.SaveChanges();// on Empseconds Unable to update the EntitySet 'EMpSecond' because it has a DefiningQuery and no element exists in the element to support the current operation.
please give me solution, its urgent
Reply
Answers (
2
)
How to generate Sql Script using C#
Step by step test driven Development