Coder Social home page Coder Social logo

learndotnet's Introduction

Week by Week guide to learn Microsoft .NET

Database

All content will reference the AdventureWorks Database found over at https://github.com/microsoft/sql-server-samples/tree/master/samples/databases/adventure-works

Week 1

Starting with simple console applications, learn and explore Linq

https://ef.readthedocs.io/en/staging/platforms/full-dotnet/existing-db.html

https://www.tutorialsteacher.com/linq/sample-linq-queries

https://code.msdn.microsoft.com/101-LINQ-Samples-3fb9811b

Integrating a DB backend using Linq to a front-end After importing AdventureWorks DB into a local instance of SQL Server

  1. Connect the DB to the Console App using EntityFramework
  2. Select all records from the People table using EF
  3. Output all the first names from the People table
  4. Read user input from console and then use it to filter based on middlename (where middlename.contains('userinput')
  5. Use the group by feature to display the number of unique firstname and the count of occurance within the filtered dataset in #4
  6. Read user input from console and then use it to filter the email field, i.e at this point you will be filtering based on 2 inputs, one for middlename and another for emailaddress
  7. Change from listing the firstnames to listing the entire people record. To simplify, list it in JSON format

Week 2

  1. Finish up last week HW (aka output in JSON), plagiarism is allowed, but i want all of you to understand what is the cause. The feature that cause this problem is both good and bad for you
  2. Time to learn about the System.IO namespace. Continue to use the console app and do this
  3. Download https://github.com/microsoft/sql-server-samples/blob/master/samples/databases/adventure-works/oltp-install-script/CurrencyRate.csv
  4. Read the file via your console app and display it as is line by line
  5. Cast each line to a class and store it in a list e.g List
  6. Print SourceCurrency, DestinationCurrency, Conversation rate
  7. Read user input and filter by DestinationCurrency
  8. Group by DestinationCurrency and then display the average, low and highest exchange rate in the data set
  9. PLOT USD-CAD exchange rate over time i.e X is Time, Y is exchange rate

Week 3

CRUD operations

Week 4

Bringing it all together

Week 5-8

Winform

Week 9-12

Webform

learndotnet's People

Contributors

kwanann avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.