Showing results for November 2013 - Page 2 of 2 - .NET Blog

Nov 14, 2013
0
0

Azure Web Site now supports WebSockets

Gustavo Armenta Valdez
Gustavo Armenta Valdez

If you missed the announcement the other day, WebSockets are now supported in Windows Azure Web Sites. Let's try it with a sample SignalR application. Create an Azure Web Site Create a Visual Studio Project associated to an Azure Web Site Add SignalR Sto...

ASP.NET
Nov 13, 2013
0
0

PCL and .NET NuGet Libraries are now enabled for Xamarin

.NET Team
.NET Team

Earlier today, Soma announced a collaboration between Microsoft and Xamarin. As you probably know, Xamarin’s Visual Studio extension enables developers to use VS and .NET to extend the reach of their apps across multiple devices, including iOS and Android. As part of that collaboration, today, we are announcing two releases around the .NET portable...

.NET
Nov 9, 2013
0
0

Office Web Apps are using ASP.NET SignalR to power real-time co-authoring

Xinyang Qiu
Xinyang Qiu

Office Web Apps are now using SignalR as the backend to synchronize changes when two or more people are editing files on SkyDrive or on SharePoint Online.  SignalR enables real time communication among different browsers and native mobile apps to communicate with each other through the backend server.  It is flexible, scalable and offers ...

ASP.NET
Nov 7, 2013
0
0

OData Scaffolding

Kirthi [MSFT]
Kirthi [MSFT]

With the release of Visual Studio 2013 RTM, we added support for scaffolding OData controllers with Entity Framework. In this blog topic we will cover the following topics •    Scaffolding an OData controller with Entity Framework on a Web API 2 project. •    Extra configuration steps required to setup OData sca...

ASP.NET
Nov 6, 2013
0
0

A High-Value, Undocumented LESS Editor Feature in Visual Studio

VKichline
VKichline

Recently a very valuable, undocumented feature in the Visual Studio LESS editor came to my attention. This applies equally to Visual Studio 2012 Update 2 and later, and to Visual Studio 2013. The installation of Web Essentials is not required to benefit from this feature.The Visual Studio LESS Editor respects @import statements, and can resolve nam...

ASP.NET
Nov 1, 2013
0
0

Introducing batch support in Web API and Web API OData

Javier Calvarro Nelson
Javier Calvarro Nelson

With the release of Microsoft ASP.NET Web API 2 OData, we have introduced support for batching requests. Batching is a web API feature that allows a customer to pack several API requests and send them to the web API service in one HTTP request and receive a single HTTP response with the response to all their requests. This way, the client can optim...

ASP.NET
Nov 1, 2013
0
0

Tutorial series updated for Entity Framework 6 Code First with MVC 5

Tom Dykstra - MSFT
Tom Dykstra - MSFT

We have updated our EF Code First / MVC tutorial series to use Visual Studio 2013, Entity Framework 6, and MVC 5. New Entity Framework 6 features covered in these tutorials include: The series includes the following tutorials: The old EF 5 / MVC 4 series is still available at a new URL: The o...

ASP.NET
Nov 1, 2013
0
0

Tips When Making Changes in Entity Framework Code First Models after Scaffolding

AnhPhan
AnhPhan

When you scaffold an existing Entity Framework model, using MVC5 scaffolding in Visual Studio 2013, you can easily run into the issue of “The model backing the <DbContextName> context has changed since the database was created” as shown below. For example, in an MVC project, add the following model. Scaffold the Product model using...

ASP.NET