Building Web Applications with Microsoft ASP

Slides:



Advertisements
Similar presentations
Test practice Multiplication. Multiplication 9x2.
Advertisements

Entity Framework Code First End to End
Getting Started with the ASP.NET Web API Dhananjay Kumar Infragistics Consultant Microsoft MVP
Send An with an Attachment in Microsoft Outlook Use Skype to Talk with Others Communicate with Windows Live Messenger on Mobile Create a Signature.
Introduction to ADO Y.-H. Chen International College Ming-Chuan University Fall, 2004.
Rebecca McCready Faculty of Medical Sciences Newcastle University Lecture 3 – Queries and Reports.
Национальная процедура одобрения и регистрации проектов (программ) международной технической помощи (исключая представление информации об организации и.
Microsoft Access 2013 ®® Tutorial 9 Using Action Queries and Advanced Table Relationships.
HTML Forms Chapter 9 pp Basic Form Join our list Name:
Database Connectivity with ASP.NET. 2 Introduction Web pages commonly used to: –Gather information stored on a Web server database Most server-side scripting.
Distribution of Marks For Second Semester Internal Sessional Evaluation External Evaluation Assignment /Project QuizzesClass Attendance Mid-Term Test Total.
Workflow Process Management An innovative range of integrated software for elevating and transforming the way you do business. Bringing together the most.
CLICK2EXPORT EXPORT TOOL FOR DYNAMICS CRM REPORTS.
Howard Paul. Sequential Access Index Files and Data File Random Access.
Building Web Applications using the latest ASP.NET technologies Max Déboli Director de Desarrollo Microsoft Azure MVP Lagash
ASP.NET Core* Shahed Chowdhuri Sr. Technical WakeUpAndCode.com A Quick Overview of ASP.NET Core * aka ASP.NET 5 before.
基 督 再 來 (一). 經文: 1 你們心裡不要憂愁;你們信神,也當信我。 2 在我父的家裡有許多住處;若是沒有,我就早 已告訴你們了。我去原是為你們預備地去 。 3 我 若去為你們預備了地方,就必再來接你們到我那 裡去,我在 那裡,叫你們也在那裡, ] ( 約 14 : 1-3)
ASP.NET Core* Shahed Chowdhuri Sr. Technical WakeUpAndCode.com A Quick Overview of ASP.NET Core RC2 * aka ASP.NET 5 before.
ASP.NET Core* Shahed Chowdhuri Sr. Technical WakeUpAndCode.com A Quick Overview of ASP.NET Core * aka ASP.NET 5 before.
6 eCommerce Development Trends 2017
6 Website Design Trends to Use When You Sell.
Best practices for E-Commerce websites in 2017
Building Web Applications with Microsoft ASP
Building Web Applications with Microsoft ASP
Building Web Applications with Microsoft ASP
Introduction to .NET Core and EF Core
Introduction to .NET Florin Olariu
How do I promote a social networking app if I have a low budget?
Building Web Applications with Microsoft ASP
Building Web Applications with Microsoft ASP
Introduction to Apple mobile technologies- I393
Microsoft Connect /28/ :21 AM
Introduction to Apple mobile technologies- I393
Building Web Applications with Microsoft ASP
Building Web Applications with Microsoft ASP
 .NET CORE
Dependency Injection Andres Käver, IT College 2016/2017 Spring.
Building Web Applications with Microsoft ASP
Web Applications Security What are web Applications?
Order Database – ER Diagram
Building Web Applications with Microsoft ASP
Web Applications Security INTRO
Digital Lobby.
Qualities to Look for While Hiring a Web Developer.
Call : (+91) | | Skype : kinshtech | Website : Interesting facts About Web Development.
ENTITY RELATIONSHIP DIAGRAM
Order Database – ER Diagram
In the name of God.
A Quick Overview of ASP.NET Core 1.0
Entity Framework Core (EF Core)
Слайд-дәріс Қарағанды мемлекеттік техникалық университеті
.. -"""--..J '. / /I/I =---=-- -, _ --, _ = :;:.
Business Organization and Administration
ASP.NET Core* MVC and Web API Shahed Chowdhuri
II //II // \ Others Q.
ДАРБИ КАРИЕРНа ориентация
I1I1 a 1·1,.,.,,I.,,I · I 1··n I J,-·
Entity Framework Core for Enterprise Applications
C# - EF Core IT College, Andres Käver, , Fall semester
Building Web Applications with Microsoft ASP
C# - Intro TTU IT College , Autumn SEMESTER Andres käver.
C# - EF Core Intro IT College, Andres Käver, , Fall semester
C# - Razor Pages Db/Scaffolding/Async
IT College 2016, Andres käver
06 | Integrating extra features and looking forward
. '. '. I;.,, - - "!' - -·-·,Ii '.....,,......, -,
CS4540 Special Topics in Web Development Course Overview
TALTECH IT College 2019/2020, Andres käver
Presentation transcript:

Building Web Applications with Microsoft ASP Building Web Applications with Microsoft ASP.NET - I376 Web Application Programming II – I713 IT College, Andres Käver, 2016-2017, Spring semester Web: http://enos.Itcollege.ee/~akaver/ASP.NETCore Skype: akaver Email: akaver@itcollege.ee

EF Core – Data access - basic All data Single entity Filtered list using (var ctx = new AppDbContext()) { var students = ctx.Students.ToList(); var student = ctx.Students.Single(a => a.StudentId == 1); var filtered = ctx.Students.Where(a => a.FirstName == "Andres").ToList(); }

EF Core – Data access – related data Eager, Explicit, Lazy Eager – specify data to include in query results (JOIN) .Include(table => table.ListOfRelatedEntity) Eager – include several relationships .Include(table => table.ListOfRelatedEntity) .Include(table => table.ListOfSomeOtherRelatedEntity) Eager – include multiple levels .Include(table => table.ListOfRelatedEntity) .ThenInclude(table => table.ListOfSomeOtherRelatedEntity)