Tag Archives: Database

Presenting Entity Framework at GWU’s Graduate Computing Club

By Shahed C on September 21, 2013

Having presented Entity Framework Code First Migrations at several venues throughout  this year, I will be presenting an EF intro session at George Washington University (GWU)

Sep27

GWU logo

GWU Graduate Computing Club (GCC)

  • Website: http://gcc.seas.gwu.edu/?p=78
  • Date/Time: Wednesday, September 27, 2013 at 6:00 PM
  • Location: George Washington University, Washington DC.

Presenting EF Migrations at Caparea and RADNUG

By Shahed C on August 24, 2013

Updates:

  • the presentation material and sample files are available on the Downloads page.
  • all speaking engagements have been added to a new Speaking page

Original Post:

Having presented Entity Framework Code First Migrations at Microsoft’s NoVA Code Camp earlier this year, I will be presenting at the following user group meetings:

Aug27 capnet

Capital Area .NET Users Group (CapArea)

Sep17

radnugLogo

Rappahannock Area Developers .NET Users Group (RADNUG)

  • Website: http://radnug.org/meetings/9-17-2013
  • Date/Time: Tuesday, September 17, 2013 – 6:30pm
  • Location: SimVentions building, 11905 Bowman Drive, Suite 501, Fredericksburg, VA
  • Special Instructions: Use the entrance that has 3 flag poles outside

 

TechEd 2013, Day 1: Keynote, Surface and Reception

By Shahed C on June 4, 2013

The highlight of opening day is usually the keynote. And the highlight of the TechEd keynote was the Aston Martin. From the snazzy video clip of the fast and furious sports car, to the stage entrance of Brad Anderson in said vehicle, the exotic did not disappoint.

Brand Anderson exiting the Aston Martin

But enough about cars. What are we here for, again? Oh yeah, Microsoft TechEd.

Continue reading

Entity Framework Code First Migrations

By Shahed C on April 21, 2013

Updates:

  • the sample files are available on the Downloads page.
  • this speaking engagement has been added to a new Speaking page

Original Post:

I recently spoke at NoVA Code Camp (at Microsoft’s Reston VA office) about Entity Framework Code First Migrations. This talk was about the Data Layer of an enterprise web application, part of a larger presentation about Lean Enterprise Architecture. It was followed by presentations on the Domain Layer and Presentation Layer, given by my colleagues Sahil Talwar and Doguhan Uluca.

So what the heck is (are?) Code First Migrations? Read on to find out!

Continue reading

“All Your Database Are Belong To Us!”

By Shahed C on February 16, 2013

My first technical post in this blog involves a solution that my team and I implemented at work recently. The project is a .NET Web project in Visual Studio 2012.

The Problem:

Each developer on the team has a personal copy of the database for a web application. How will you store each connection string for each developer, without revealing your login information to others?

A Path to a Solution:

(A) Each developer could place their connection string in the Web.config file, without checking in their file. This is not a good choice, because they will eventually need to make other changes to the Web.config file and would have to remember to revert the connection string before each check-in. If they accidentally check in the file with their connection string, they would be sharing it with everyone.

Continue reading