在 HTML 中同时为多个类实现添加/编辑功能的最佳方法
我正在用 C# 编写一个 Web 应用程序。 我有几个类存储在 Fluent NHibernate 的数据库中。 用户将能够列出、添加、编辑和删除这些对象。
我想避免逐类添加控件来编辑和添加名称或文本等属性,而是使用某种方法根据类名称添加/编辑它们。 它应该获取发布的表单值、验证值、构造正确类型的新对象并调用 ClassXServiceClass.SaveOrUpdate(ClassX cx)。 您推荐什么方法? 如果验证失败,我还希望文本框保留其值。
I'm writing a web application in C#. I have several classes which are stored in a DB with Fluent NHibernate.
The users would be able to list, add, edit and delete these objects.
I would like to avoid adding controls on a class-by-class basis for editing and adding the properties like Name or Text, but rather have some method to add/edit them based on class name. It should be something that gets posted form values, validates the values, constructs a new object of the correct type and calls ClassXServiceClass.SaveOrUpdate(ClassX cx). What approach do you recommend? I would also like the textboxes to retain their values if validation fails.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定这是否可以与流畅的 nhibernate 一起使用,但是 动态数据非常适合为类/表创建 CRUD 页面。
I'm not sure if this play along with fluent nhibernate, but Dynamic Data is great for creating CRUD pages for classes/tables.