Reputation: 371
Can anyone kindly tell me which one should I install to develop database applications using C#?
SSDT or SQL Server 2008 R2? Or both are the same?
Upvotes: 1
Views: 5326
Reputation: 1260
It depends which environment you are more comfortable in, Visual Studio or SSMS.
But, I recommend SSDT. The main reasons are:
Upvotes: 2
Reputation: 72636
This two software are two different things, one is a Database Server (SQL Server 2008 R2) the other (SSDT) is a set of tools that expands functionality of Visual Studio to allow the developer to use a lot of feature that are in SSMS directly inside Visual Studio.
So you can install both .
Upvotes: 1