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

Adding a Show People button to the HTML


Crank up Visual Studio, and make a project. What we will do first is to put a simple button into the HTML page. For this, go to Toolbox, grab a Button control, and drop it below the line that begins with <form id=.... Change the text on the button to say Show People.

You will make a class called Person, and you will make that class from the database. To do this, go to the View menu and open SQL Server Object Explorer. Remember that we made a database called People, and it is comprised of these fields: Id, NAME, and DATEADDED.

Adding a field to the people database

Now, let's add one more field. Right-click on the dbo.People table icon, and select View Code. To make an additional field, type the following after DATEADDED:

SALARY decimal(18,2)

This is a new field type, decimal (18,2) means a field that is 18 units wide and has 2 decimals; that is, it's a total of 18 units wide with 2 to the right and 16 units to the left for a total of 18 units altogether...