AutoMapper

0
AutoMapper is a «convention-based object-to-object mapper». According to the description, «AutoMapper uses a fluent configuration API to define an object-object mapping strategy. AutoMapper uses a convention-based matching algorithm to...

BizTalk RFID: notes

0
After finally getting around to setting up VMWare Workstation with a BizTalk 2006 R2 Beta2 + BizTalk RFID, I did several experiences with the Phigets RFID reader and the...

log4net PatternLayout and PatternConverter

0
I have the following scenario: I'm using Unity dependency injection container and interception techniques to log some WCF operation calls. I need to log the input parameters and also the...

How to Access the Previous Row and Next Row value in SELECT statement?

0
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...

«Architecting a Large Software Project – Lessons Learned» @ Netponto 50th Meeting – Lisboa...

0
Two weeks ago I presented a session at the 50th meeting of the Lisbon Netponto Group, the largest community of .Net development in Lisboa. This two-hour session, which was...

PDC08 + TechEd Emea 2008

0
Next week I’ll be off at PDC08, which is shaping up to be as good as PDC05 was, with a lot of sessions on Today’s hot topic: Cloud Computing....

GRANT permission to all stored procedures

0
If you need to grant a specified permission to all stored prcedures you can execute the following scriptDECLARE @User sysname SET @User = '<USER>' SELECT 'GRANT EXECUTE ON '...

MyTechEd 2007 – Day 2

0
The second day started with a BizTalk Server session: "Enterprise Ready BizTalk - Best Practices from Customer Implementations", by Ewan Fairweather, one of the authors of the excellent "Professional...

PDC2005: DSL Tools

0
Podem recordar-se que há alguns dias atrás enviei um post sobre Domain Specific Languages (DSL) e Software Factories. Uma das apresentações mais interessantes que vi no PDC foi precisamente sobre...

ITARC15 Architecting a Large Software Project – Lessons Learned

0
This morning I presented my “Lessons Learned” workshop at ITARC 2015 in Stockholm, Sweden. This session had previously been presented at Netponto, and was improved with more content targeted...