Microsoft TechDayshttp://www.techdays.ru Роман Здебский Эксперт по технологиям разработки ПО Microsoft

Slides:



Advertisements
Similar presentations
Introduction to NHibernate By Andrew Smith. The Basics Object Relation Mapper Maps POCOs to database tables Based on Java Hibernate. V stable Generates.
Advertisements

Language Integrated Query (LINQ) Martin Parry Developer & Platform Group Microsoft Ltd
Jacinto Limjap, Jr. Senior Software Design Engineer, Cormant Technologies Inc. LINQ for NHibernate { Easy OR Mapping with C# and Visual Studio 2008 }
.NET 3.5 – Mysteries. NetFx Evolution NetFx 1.0 C# 1.0, VB 7.0, VS.NET NetFx 1.1 C# 1.1, VB 7.1, VS 2003 NetFx 2.0 C# 2.0, VB 8.0, VS 2005 NetFx 3.0 C#
© Logica All rights reserved ADO vNext LINQ LINQ to SQL Entity Framework Freek Leemhuis
C#/.NET 5/4/ Ian Cooper
Joshua Clark Consultant Sogeti USA Blog:
.NET Database Technologies: Open-Source Frameworks.
Michael Paladino Lead Application Developer EagleOne.
ASP.NET 3.5 New Features. 2 Agenda What's New in.NET Framework 3.5? Visual Studio 2008 Enhancements LINQ (Language Integrated Query) New ASP.NET Server.
C# 3.0 & LINQ Raimond Brookman – IT Architect
LinqToSharePoint SandBoxed Solution Shakir Majeed Khan
Collections Create and organize your own privet and public collections.
Damien Guard (BSc, MBCS) Guernsey Software Developer Forum Language Integrated Query:
.NET Framework V3.5+ & RESTful web services Mike Taulty Developer & Platform Group Microsoft Ltd
Visual Studio 2008 and ASP.NET 3.5 Mike Ormond Developer & Platform Group Microsoft Ltd
What’s new in ASP.NET 3.5? Mike Ormond Developer & Platform Group Microsoft Ltd
Session-01. Hibernate Framework ? Why we use Hibernate ?
A tour of Visual Studio 2008 and the.NET Framework v3.5 Daniel Moth Developer & Platform Group Microsoft
Eric Nelson Developer & Platform Group Microsoft Ltd
Object and object-relational databases 1. Object databases vs. Object-relational databases Object databases Stores complex objects – Data + functions.
 Introduction  What is LINQ  Syntax  How to Query  Example Program.
Reflection IT LINQ & Entity Framework Fons Sonnemans (Trainer)
Eric Vogel Software Developer A.J. Boggs & Company.
Session 1 - Introduction and Data Access Layer
Intro to Entity Framework By Shahed Chowdhuri Don’t drown in database design during WakeUpAndCode.com.
Entity Framework MIS 324 MIS 324 Professor Sandvig Professor Sandvig.
ADO.NET ENTITY FRAMEWORK Mike Taulty Developer & Platform Group Microsoft UK
Introduction to LINQ Lecture # 19 August Introduction How do you interrogate/manipulate data? What if you could do the work in a type-safe," string-free.
Microsoft TechDays Роман Здебский Эксперт по технологиям разработки ПО Microsoft
LINQ and C# 3.0 Mads Torgersen Program Manager for the C# Language Microsoft Corporation.
LINQ: It’s Not Your Father’s Data Access Denny Boynton Anheuser-Busch Companies.
The.NET Language Integrated Query Project Anders Hejlsberg TLN306 Technical Fellow Microsoft Corporation.
WEB &.NET Web development trends in.NET World. Sanjay Jagarlamudi Associate Director at MATRIX Founder Dallas HTML5 Group Father of two girls.
Pradeep S Pushpendra Singh Consultants, Neudesic Technologies, Hyderabad, India.
C# AND ASP.NET What will I do in this course?. MAJOR TOPICS Learn to program in the C# language with the Visual Studio IDE (Interactive Development Environment)
Intoduction to NHibernate. Agenda Overview of NHibernate Models and Mappings Configuration Sessions and Transactions Queries.
Visual Studio “Orcas” &.NET Framework v3.5 Mike Taulty, Daniel Moth Developer & Platform Group Microsoft Ltd
Oct * Brad Tutterow. VS 2008.NET 3.5LINQ Entity Framework  The ADO.NET Entity Framework is part of Microsoft’s next generation of.NET technologies.
Lecture 1: IDE - Integrated Development Environment.NET Framework Visual Studio 2010.NET Solution Explorer Properties Window.
Microsoft TechDayshttp:// Роман Здебский Microsoft
Intoduction to NHibernate. Agenda Overview of NHibernate Models and Mappings Configuration Sessions and Transactions Queries.
Microsoft TechDayshttp:// Максим Ефремов системный инженер «Вебзавод»
AUC Technologies LINQ (Language Integrated Query) LINQ Presented By : SHAIKH SHARYAR JAVED Software Engineer (Daedalus Software Inc.) Technology Teacher.
Intoduction to NHibernate. Agenda Overview of NHibernate Models and Mappings Configuration Sessions and Transactions Queries.
C#: Future Directions in Language Innovation Anders Hejlsberg TLN307 Technical Fellow Microsoft Corporation.
1 ADO.NET Data Services Mike Taulty Developer & Platform Group Microsoft Ltd
All information's of PLINQO in this Document, I got it from: So, you could visit the link above to research.
Satisfy Your Technical Curiosity C# 3.0 Raj Pai Group Program Manager Microsoft Corporation
Joel Pobar Language Geek Microsoft DEV320 Improve on C# % Backwards Compatible Language Integrated Query (LINQ)
Ken Casada Developer Evangelist Microsoft Switzerland
Language Integrated Query Mike Taulty Developer & Platform Group Microsoft Ltd
Introduction to ORM Hibernate Hibernate vs JDBC. May 12, 2011 INTRODUCTION TO ORM ORM is a programming technique for converting data between relational.
2 Behind every great site, there is great data Eric Nelson Developer Evangelist Microsoft UK
Data Access Methodologies: When to choose what (ADO.NET, Entity Framework, WCF Data Services) Wriju Ghosh Lead Partner Consultant, Microsoft.
DEV313. MVC Unit Testing Repository Pattern Change Tracking Concurrency Unit of Work MVVM Separation of Concerns Dependency Injection N-Tier TDD Transactions.
Part 1: Overview of LINQ Intro to LINQ Presenter: PhuongNQK.
LINQ for SQL SQL Saturday May 2009 David Fekke.
A very brief introduction
Language Integrated Query: (LINQ) An introduction
LiNQ SQL Saturday David Fekke.
9/20/2018 2:13 PM Visual Studio развитие технологий доступа к данным на платформе Microsoft.NET Роман Здебский Эксперт по технологиям разработки.
ADO.NET Entity Framework
ADO.NEXT Advances in Data Access for 2008
Language Integrated Query (LINQ)
Visual Studio “Orcas” & .NET Framework v3.5
Технологии доступа к данным на платформе Microsoft.NET
ADO.NET Entity Framework
Visual Studio 2008.
.NET Framework V3.5+ & RESTful web services
Presentation transcript:

Microsoft TechDayshttp:// Роман Здебский Эксперт по технологиям разработки ПО Microsoft

Microsoft TechDayshttp:// ORM solution for the Microsoft.NET NHibernate free open source - LGPL NHibernate порт Java O/R маппера Hibernate NHibernate NHibernate 1.2.1, released in November 2007, support for.NET 2.0, stored procedures, generics, and nullable types NHibernate August 23, Схож с Hibernate 3.2 POCO HQL – строковые запросы LINQ provider RTM planned for 2.1 (hopefully)

Microsoft TechDays

var contacts = from c in customers where c.State == "WA" select new { c.Name, c.Phone }; var contacts = customers.Where(c => c.State == "WA").Select(c => new { c.Name, c.Phone }); Extension methods Lambda expressions Query expressions Object initializers Anonymous types Local variable type inference

Microsoft TechDayshttp:// Релиз – 11 августа 2008.NET Framework 3.5 SP1 Полная интеграция с.NET Visual Studio IDE Выделение двух функциональных уровней Маппинг – Entity Data Model ObjectContext – управление ссылками на инстанции объектов Встроенная полная поддержка LINQ

Microsoft TechDayshttp:// NHibernate Скачать дистрибутив, скопировать NHibernate.dll Добавить конфигурацию источника в web.config или hibernate.cfg.xml конфигурацию источника Создать POCO объекты Создать к ним xml mapping.hbm.xml Инстанциируем сессию ADO.NET Entity Framework

Microsoft TechDayshttp://

C# 3.0C# 3.0 VB 9.0VB 9.0 ДругиеДругие.NET Language Integrated Query Реляционные источники Microsoft SQL Server, Oracle, DB2, MySQL…

Microsoft TechDayshttp://

C# 3.0C# 3.0 VB 9.0VB 9.0 ДругиеДругие.NET Language Integrated Query Microsoft SQL Server, Oracle, DB2, MySQL… HTTP Сервер Клиент

Microsoft TechDays

Microsoft TechDayshttp:// Роман Здебский Эксперт по технологиям разработки ПО Microsoft