3rd Party Tools

G

Guest

I'm researching different component suites to use in VS 2005 and SQL 2005.
I'm a beginner @ C# and ASP, so I'm looking for something stable, fast, and
easy to learn. I've found 2 that I think are good, Syncfusion's Essential
Studio and ComponentOne's Studio Enterprise. Has anyone used either one and
can critic good/bad? Are there other suites you would recommend?

Thanks!
 
M

Martin Z

This is a bit offtopic, but if you're a beginner at C# and ASP trying
to get into new projects, you should be looking into ORM tools as well
- directly using ADO.NET is tedious in the extreme unless you're doing
a straight GUI-to-database setup without any business object modelling
in C#.
 
M

Martin Z

Object-Relational-Mapping layer. A way to get properly typed objects
into and out of the database without manually converting the parameters
into ADO.Net parameters and converting stuff from the resulting
DataSets back into objects. Even simply calling a stored procedure in
a database can require lines upon lines of verbose ADO.Net code.

Microsoft has an ORM system built into the next version (C# 3.0) called
Linq - you can download the beta version from their website.
Otherwise, the most popular is NHibernate - an opensource solution.
There are numerous though, exhaustively compared (outdated) C2 page:

http://c2.com/cgi/wiki?ObjectRelationalToolComparisonDotNet
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top