0

I'm building an android application that is very data intensive, and need to an interface to use to add data quickly and easily.

i've looked at all of the database tools, none of which make it easy to enter data using foreign keys. I need all the foreign key fields to show up with dropdown lists (for 1-1) or checkbox lists (for *-1) for fields to make it easy to enter data.

The closest I've found to achieving this is the following: http://www.sqlmaestro.com/products/sqlite/datawizard/download/

Which claims to generate ASP.Net forms from a database. Does anybody know any other tools that'd help me?

I guess I could build my own forms,but would prefer to spend my time developing my app. I'd be happy with a framework to kickstart development of my required forms, maybe somebody has done something similar already? (ASP.Net preferable but not a necessity).

4

1 回答 1

1

我知道aspnet 制造商。

http://www.hkvstore.com/aspnetmaker/

可以非常快速地创建一个完整的站点来处理您的数据库操作。它不是免费的,你坚持他给你的任何东西,但对于快速工具来说还不错。

从另一个角度,你听说过脚手架吗?

我使用了 SubSonic ver 2,它有脚手架,但其他 DAL 也有。这种技术的作用是自动为您创建编辑表单。

你可以在谷歌上搜索“scaffold asp.net”

所以你可以选择一个有脚手架的 DAL 并使用它。

于 2013-02-10T21:17:16.860 回答