How to get Complete list of available Datasets in a Project (VS)
I want to get a list of all available datasets (that I'd creat in my Asp.net project)
After that I want to select a Dataet from the list and get The list of Available DataTable included in that Dataset.
Finally I should b able to check all Data Tables Fields
How To Do This ?
Note that I know VS already has a datas开发者_如何学运维et Panel but thats too heavy and I want to create my own panel. so please do not recommand to use this one.
Load the executing assembly using reflection and see getPropertyInfo function, it will help you a lot. This post from tech-republic may help you
精彩评论