DynamicData - 动态 Linq 类
任何人都知道是否可以;
- 为定期更改的表/列动态创建 LINQ 类?
- 如果该创建可以在 DynamicData 中使用。
我们正在开发的一个 Web 应用程序在 SQL 中创建表和列。我们想要在 DynamicData 中编辑这些表。
想法?
Anybody know if it's possible to;
- Dynamically create LINQ classes for tables/columns that change regularly?
- If that creation can be used in DynamicData.
A web app we are developing creates tables and columns in SQL. We want to edit these tables in DynamicData.
Thoughts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据您运行的数据库类型,您始终可以使用 linq 语句来查询系统架构表并让它返回表和列。然后可以使用您返回的内容,然后使用另一个 linq 查询来分解每个表中的信息。
Depending on what type of Database you are running, but you could always have a linq statement that queries the systems schema table and have it return the tables and columns. Then could use what you return and then use another linq query to break out the information from each table.
我使用了 SDK 中的 sqlmetal.exe,它是一个胜利者。
I used sqlmetal.exe from the SDK, it's a winner.