DCSIMG
Visual Studio 2010,ADO.NET - Gil Fink's Blog

Gil Fink's Blog

Fink about IT

News

Microsoft MVP

My Facebook Profile My Twitter Profile My Linkedin Profile

Locations of visitors to this page

Creative Commons License

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.
© Copyright 2013 Gil Fink

Hebrew Articles

Index Pages

My OSS Projects

English Articles

Browse by Tags

All Tags » Visual Studio 2010 » ADO.NET (RSS)
SQL For .Net Developers – Entity Framework 4 Second Cycle Slide Deck
SQL For .Net Developers – Entity Framework 4 Second Cycle Slide Deck Yesterday’s evening I delivered a session at Microsoft Raanana about Entity Framework 4 as a part of Microsoft ’s SQL For .Net Developers series of sessions . I want to thank all the attendees who came to the session. I really enjoyed to talk about Entity Framework and the audience was very cooperative with a lot of really good questions. As I promised, I uploaded the session slide deck and demos to my Skydrive and you can download...
Entity Framework 4 Course
Entity Framework 4 Course In the last couple of months, I have updated my Entity Framework course to include the new subjects and features of EF4 . Yesterday I finished to deliver the first cycle of this course and got good reactions about it. If you want to learn what is Entity Framework , how to use it and how to integrate it into applications you can take a look at the following syllabus and to register for the three days instructor lead course I’ve created. See you there.
SQL For .Net Developers – Another Sessions Cycle
SQL For .Net Developers – Another Sessions Cycle Since the SQL For .Net Developers series of sessions was successful Microsoft is conducting another sessions cycle for whoever missed the first cycle. I’m scheduled to deliver a session about Entity Framework 4.0 & LINQ on 27.06.2010 at Microsoft office in Raanana starting at 16:30 until 19:30. For further details (in Hebrew) and registration you can use this link . You can read a review of Gadi J. Meir (in Hebrew) about the session here (Thanks...
SQL For .Net Developers – Entity Framework 4 Slide Deck
SQL For .Net Developers – Entity Framework 4 Slide Deck Yesterday’s evening I delivered a session at Microsoft Raanana about Entity Framework 4.0 & LINQ as a part of Microsoft ’s SQL For .Net Developers series of sessions . I want to thank all the attendees who came to the session. I really enjoyed to talk about Entity Framework and the audience was very cooperative with a lot of really good questions. I also want to thank Tzvia from Microsoft for the opportunity to be the one who opens this...
EF Evolution in .Net Framework 4
EF Evolution in .Net Framework 4 On next Monday I’m going to give a session about EF4 in the DevAcademy4 conference. The session will provide you details about why you will want EF in your application, which development approaches EF provides and how to apply them and the major tooling and functionality enhancements. If you are interested in the subject go to the DevAcademy4 web site for more details. Meet you there!
Entity Framework Evolution in .NET 4 at DevAcademy4
Entity Framework Evolution in .NET 4 at DevAcademy4 As I wrote yesterday DevAcademy4 is coming next month. My part in the conference will be a breakout session on EF4 . In the session we will explore the major changes that EF4 offers and how they can contribute to develop better data access layers. There are other great sessions in the conference which you can review from here . See you there!
Developer Academy 4 is Coming
Developer Academy 4 is Coming The biggest Israeli .Net developers conference is coming. Today the conference site of Developer Academy 4 was launched and you can sign in to the conference from here . You can also register as a fan in Facebook from here for online updates. This year the conference will be focusing on Visual Studio 2010 , Windows Azure and Silverlight . There are going to be many breakout sessions and also mini sessions which will include only demos. The conference will occur in March...
Get Ready for Sela SDP Conference
Get Ready for Sela SDP Conference The PDC conference is over. A new conference is on the way. The SDP conference is going to happen between the  27 to 30 of December. In that conference we ( Sela Group )  are going to to share the future technologies including the ones that where exposed in the Microsoft PDC . In the conference I’m going to have a session with Bnaya Eshet on ADO.NET Entity Framework Evolution in .NET 4.0 . If you want to hear where EF is heading, this is the place to be...
Execute T-SQL Statements in Entity Framework 4
Execute T-SQL Statements in Entity Framework 4 In this post I’m going to show a new Entity Framework 4 feature that enable us to execute T-SQL from the ObjectContext directly to the database. Executing T-SQL Statements from ObjectContext One of the new improvements in EF4 is the ability to execute T-SQL store queries and commands. This ability enable the EF developer to execute T-SQL directly against the database. This ability should only be used in cases that Entity Framework doesn’t support something...
ADO.NET Entity Framework Session at Microsoft
ADO.NET Entity Framework Session at Microsoft A few months ago I wrote about a session I’m supposed to do on ADO.NET Entity Framework at Microsoft Israel . This is a reminder for that session which will take place on October 19 at Microsoft Ra’anana . In the session I’ll introduce Entity Framework and talk about how to use it. I’m also going to dedicate the end of the session for EF4 and show some of the features it include like POCO, Model-Defined Functions and more. If you are interested to hear...
Entity SQL User-Defined Functions in Entity Framework 4
Entity SQL User-Defined Functions in Entity Framework 4 Continuing the tour about the new features in EF4 , the next stop is the new user-defined function capability of Entity SQL . Entity SQL User-Defined Functions There are two kinds of user-defined functions in EF4 : Functions that are being defined as part of the conceptual model Functions that are being defined inline within a query You should use the Entity SQL user-defined functions when you want to encapsulate commonly used Entity SQL inside...
Calling Database Functions in LINQ to Entities in Entity Framework 4
Calling Database Functions in LINQ to Entities in Entity Framework 4 Another new feature in EF4 is   the new SqlFunctions class. In this post I’ll explain what is SqlFunctions class and how to use it in LINQ to Entities queries. The SqlFunctions Class The SqlFunctions is a new class in EF4 . It contains methods that expose SQL Server functions to use inside your LINQ to Entities queries. When you use SqlFunctions methods the corresponding database functions are being executed. This feature is...
Model First in Entity Framework 4
Model First in Entity Framework 4 One of the new features of EF4 is the ability to generate a database and the SSDL and MSL that correspond to a provided model. In this feature we can start building our conceptual model first and then generate all the other parts of the EDM according to it. In this post I’ll introduce the model first feature. Generating a Database from a Given Conceptual Model One thing that was missing (in my opinion) in the first release of EF was the ability to start from a conceptual...
Pluralize or Singularize Generated Object Names Checkbox in Entity Framework 4
Pluralize or Singularize Generated Object Names Checkbox in Entity Framework 4 Creating entities with pluralize or singular object names was one of the missing features in EF V1 .  Like LINQ to SQL now EF4 also has a feature that enables to pluralize or singularize the created objects automatically. You have the choice whether to enable it or not by a new checkbox in the EDM Wizard . The Pluralize or Singularize Generated Object Names Checkbox The first thing that you notice when you create...
Complex Type Support in the EDM Designer in Entity Framework 4
Complex Type Support in the EDM Designer in Entity Framework 4 Yesterday I installed the new Visual Studio 2010 Beta 1 . Since then I’m learning the new features of .NET 4 and in particularly Entity Framework 4 (or EF4 ). In the near future I’m going to write about the new features and enhancement made in EF4 . In this post I’m revisiting a post I wrote in the past – Creating Complex Types in Entity Framework – and show how to use the EDM designer in EF4 to achieve the same functionality. What are...
More Posts Next page »