Top ".net-4.5" questions

Version 4.5 of the Microsoft .NET Framework.

Entity Framework - Migrations - Code First - Seeding per Migration

I am looking into Migrations in an effort to clean up our deployment processes. The less manual intervention required when …

c# entity-framework .net-4.5 entity-framework-migrations seeding
Creating an async method in .NET 4.0 that can be used with "await" in .NET 4.5

I have a .NET project that uses C# in .NET 4.0 and VS2010. What I would like to do is add …

c# .net async-await .net-4.5
Dlls not deployed to GAC - SharePoint 2013, Visual Studio 2012, .Net FW 4.5

When I create a simple SharePoint 2013 project in Visual Studio 2012 and I want to deploy it, it deploys fine, but …

sharepoint visual-studio-2012 .net-4.5 sharepoint-2013
Using Async Await keywords with Dapper

I want to use a micro-orm and decided to go with Dapper. But can't seem to find any mentions of …

async-await .net-4.5 dapper
IObserver and IObservable in C# for Observer vs Delegates, Events

All I am trying to do is implementing the observer pattern. So, I came up with this solution: We have …

c# design-patterns .net-4.5 system.reactive
Unit Of Work & Generic Repository with Entity Framework 5

I'm using ASP.NET MVC 4 with Entity Framework 5. I have model classes and Entity Maps to map existing tables to …

asp.net-mvc-4 entity-framework-5 .net-4.5
Brief explanation of Async/Await in .Net 4.5

How does Asynchronous tasks (Async/Await) work in .Net 4.5? Some sample code: private async Task<bool> TestFunction() { var …

c# .net-4.5 async-await
What's the difference between InvokeAsync and BeginInvoke for WPF Dispatcher

I noticed in .NET 4.5 that the WPF Dispatcher had gotten a new set of methods to execute stuff on the …

c# wpf .net-4.5 async-await
Format A TimeSpan With Years

I have a class with 2 date properties: FirstDay and LastDay. LastDay is nullable. I would like to generate a string …

c# .net formatting .net-4.5 timespan
Shortest way to deserialize XmlDocument

I am looking for a clean and short way to deserialize a XmlDocument object. The closest thing I found was …

c# xml .net-4.5 .net-4.6