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
Keorapetsi Matseme
1.4k
305
2.4k
Create a list of parent child and save to sql DB
Jun 13 2019 2:45 AM
I am trying to add a new parent child list to DB using treeview.
I have created my table and manually populated it. Now I want to populate it automatically from the view (MVC)
CREATE TABLE Tbl_WBS(
Task_ID INT PRIMARY KEY IDENTITY (1,1) NOT NULL,--Parent
project_Id INT FOREIGN KEY REFERENCES tbl_Projects(project_Id),
Child_Id INT,
WBS_Description NVARCHAR(500) NULL,
Parent_Id INT NULL
)
Reply
Answers (
1
)
Help for .NET project
How to write post,put,delete method using request url in c#?