In my current project I found myself in need for a connection to a database.
However in the new asp.net 5.0 I found myself in the position where I could only find SqlCeCommand.
So now is my question is there or what is the difference between SqlCeCommand and SqlCommand?
SqlCeCommand is a class from System.Data.SqlServerCe; and SqlCommand is a class from System.Data.SqlClient
SqlCommand= server-based SQL Server (Express, Web, Standard, Enterprise);SqlCeCommand= SQL Server Compact Edition - based on a.sdffile, single-user, used for local storage only, embedded by including some DLL's in your app