开发者

What is the best way to handle a large table of data?

I'开发者_Python百科ve been playing with Visual C# lately and have formulated a project idea now. I'd like to be able to read in a .csv file and display easy-to-read reports based on the data contained within.

As I'm new to C#, and to real programming at all, I was wondering what is the BEST or recommended way to deal with large amounts of data (with easy, flexible manipulation for data report generation)?


GridViews and Data Sets are something to look into. I bet there's other ones but this is pretty straightforward and works for my needs.

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.aspx


ADO.Net DataSets work really well for this purpose. If you think you might need to use this data model in several applications, you may also check out Entity Framework.


Storing the Data in a Relational DB like SQL Server is probably the way to go as far as storage goes. To get you started you can use the Free SQL Expresss version.

You can then retrieve the data into ADO.Net Datasets to manipulate the data in C#.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜