c# Windows Form Application 将数据添加到具有关系的表中
我是 C# Windows 窗体应用程序的新手,在向具有表之间关系的 SQL DB 添加/插入数据时遇到问题。 我的问题是,表之间的关系会在 C# Windows 窗体应用程序中发挥作用吗?
这就是我的数据库的外观
我正在寻找一种将数据添加到 Article 表的方法和 Body 表,其中 Artcle.body_id 将相应地进行填充。与MVC相同。 谢谢
I'm new to c# Windows Form Application and I'm having a problem in adding/inserting data to SQL DB that has relationship between tables.
My question is, Will the relation between the tables function in C# Windows Form Application?
This is how my DB looks
I'm looking for a way to add data to the Article table and Body table where Artcle.body_id will pupolate accordingly. The same as MVC.
Thanx
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以定义自定义方法来更新或插入值。
You can define your custom method to update or insert the values.
现在得到代码了。希望这将来能对其他人有所帮助。
Got the code now. Hope this will help others in the future.