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
Sofique Uddin
NA
107
10.6k
How to Pass StoreProcedure Multiple parameter in by EF
Feb 11 2017 4:14 AM
My Store Procedure (Single Parameter) :
ALTER procedure [dbo].[CountryInsert]
(
@CountName varchar(50)
)
as
begin
INSERT INTO [DevPayPension].[dbo].[Country]
([CountryName])
VALUES
(@CountName)
end
Entity Framework Code this is Single Parameter Pass:
private void InsertData()
{
using (var db = new EFPIMS())
{
db.CountryInsert(TextBox1.Text);
}
}
Now How I can Pass Multiple parameter by Entity Framework ??
Reply
Answers (
1
)
Reusing View in Another View or Not?
How To Store All Array Value in One Variable As String in C#