Transitioning Dev Environments Azure IaaS
The internal policy at Create It is to use Virtual Machines to do all the coding, with different environments for Web development, BizTalk, SharePoint, etc. My personal dev-pc is...
Where’s Microsoft going?
|create|it| has had a strong bet on Microsoft technologies since day one. We strongly believe it has the best overall platform, the one best suited to solve our customer’s...
BizTalk 2010 R2
Steef-Jan has a great post about the next release of BizTalk Server in his blog. It seems to be mostly a platform upgrade, but the improvements in the area...
How to Access the Previous Row and Next Row value in SELECT statement?
LAG - http://msdn.microsoft.com/en-us/library/hh231256.aspx
USE AdventureWorks2012;
GO
SELECT BusinessEntityID, YEAR(QuotaDate) AS SalesYear, SalesQuota AS CurrentQuota,
LAG(SalesQuota, 1,0) OVER (ORDER BY YEAR(QuotaDate)) AS PreviousQuota
FROM Sales.SalesPersonQuotaHistory
WHERE BusinessEntityID = 275...
New Portuguese MVP
Tiago Pascoal has just been awarded Microsoft Most Valuable Professional on Visual Studio Team System. Congratulations, and welcome aboard! :-)
Microsoft WebCamp 2014: Working with AngularJS
Last week I delivered a session at Microsoft WebCamp 2014 event. A full-day event, with 3 simultaneous session tracks, focused on web technologies, not only from Microsoft but also...
DSL Tools para versão final do VS2005
Saiu mais uma build das DSL Tools (Novembro 2005), desta vez já com suporte para a versão definitiva do VS2005, um pouco mais tarde que o WCF e WWF. Além de...
Software Factories/Workbenches
O tema de software factories (e Domain Specific Languages) tem estado a surgir em força, a meu ver ligado em parte à necessidade de aumentar a produtividade no desenvolvimento de...
DEV310 – WCF: Building Secure, Reliable and Transacted Distributed Services (Shy Cohen)
Tenho a impressão de já ter visto esta sessão em algum lugar. Sem muito de novo, foi mais um "refresh" de WCF. Em termos de segurança, requisitos que o...