Book Image

Beginning C# 7 Hands-On ??? Advanced Language Features

By : Tom Owsiak
Book Image

Beginning C# 7 Hands-On ??? Advanced Language Features

By: Tom Owsiak

Overview of this book

Beginning C# 7 Hands-On – Advanced Language Features assumes that you’ve mastered the basic elements of the C# language and that you're now ready to learn the more advanced C# language and syntax, line by line, in a working Visual Studio environment. You'll learn how to code advanced C# language topics including generics, lambda expressions, and anonymous methods. You'll learn to use query syntax to construct queries and deploy queries that perform aggregation functions. Work with C# and SQL Server 2017 to perform complex joins and stored procedures. Explore advanced file access methods, and see how to serialize and deserialize objects – all by writing working lines of code that you can run within Visual Studio. This book is designed for beginner C# developers who have mastered the basics now, and anyone who needs a fast reference to using advanced C# language features in practical coding examples. You'll also take a look at C# through web programming with web forms. By the time you’ve finished this book, you’ll know all the critical advanced elements of the C# language and how to program everything from C# generics to XML, LINQ, and your first full MVC web applications. These are the advanced building blocks that you can then combine to exploit the full power of the C# programming language, line by line.
Table of Contents (35 chapters)
Title Page
Credits
About the Author
www.PacktPub.com
Customer Feedback
Preface

Working with SQL server inside Visual Studio


Once we have SQL server downloaded and installed, let's take a look at it inside Visual Studio. Go to View and then select SQL Server Object Explorer; it opens a little pane on the left-hand side, as shown in Figure 16.1.4:

Figure 16.1.4: The SQL Server Object Explorer pane in Visual Studio

Next, click on the Add SQL Server Button, as shown in Figure 16.1.5:

Figure 16.1.5: The Add SQL Server Button

Now, the dialog box shown in Figure 16.1.6 appears. Notice where it says Windows Authentication. This is known as integrated security. You don't have to specify a different username and password. Just fill the Server Name field, click on Connect, and you'll be logged in to it:

Figure 16.1.6: The Connect dialog box

The specific version that you have will be different than the one shown in Figure 16.1.7, but these are the basic things that will apply to many different versions:

Figure 16.1.7: The Databases folder specific to this version of SQL Server 2017 Express...