使用 EF 在 Blazor 中使用 SyncFusion 数据网格显示二维动态表
如何展示&使用 EF 数据库连接在 Blazor 中编辑真正动态的 SyncFusion 数据网格表。棘手的部分是二维动态:具有 x 行数和 y 列数(来自其他表)。
在本例中,我有一个包含多个任务(行)和多个角色(列)的动态表,其中可以为每个任务/角色组合为每个角色分配不同的工作量(双数)。
所需的组件是动态 ExpandoObject,包括。能够更新的附加方法(因为字典本质上是只读的)、用于存储数组数据的数据库接口(据我所知 EF 没有提供)以及 razor 页面中的实现。
How to show & edit truly dynamic SyncFusion datagrid table in Blazor with EF database connection. The tricky part is the 2-dimensional dynamic: having x number of rows AND y number of columns (coming from other tables).
In this case, I have a dynamic table with a number of Tasks (rows) and a number of Roles (columns) where each Role can be assigned with different efforts (double number) for each Task/Role combination.
The required components are a dynamic ExpandoObject incl. additional methods to be able to update (because the dictionary by nature is read-only), a database interface to store the array data (which EF does not provide to my knowledge) and the implementation in the razor page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是我解决它的方法:
This is how I solved it: