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
Mr Developer
NA
1
779
show data in WPF entity framework
Dec 9 2015 2:33 PM
I am working in WPF in VS2013 with linkage of database created in SQL Server 2014. I am writing simple functions like add, create, delete and update records. All function runs fine, but I want that all my records should be shown in a GridView in WPF..
I searched a lot but could not find any answer.. I wrote this code for adding records:
MyNew_DBEntities db = new MyNew_DBEntities();
Student st = new Student();
st.First_Name = First_Name.Text;
st.Last_Name = Last_Name.Text;
st.Department = Department.Text;
db.Students.Add(st);
db.SaveChanges();
and I want that after this addition all my record entered should be shown in GridView and so on. Similarity for deletion and update of records too.
Reply
Answers (
1
)
How to Retrieve more than 1 table with one LinqDataSource
not able to generate pdf file from crystal report