I am new to .NET and have heard about several different ways of querying a SQL Server databse such as ADO.NET and the entity framework.
Can anyone give me some advis
Entity Framework is the easiest, and its built in.
All you have to do is important your model, and then just update simple classes, that are automatically mapped to your db.
Its just like updating normal objects, but at the end you call SaveChanges.