Day to day good stuff I find regarding my work

Wednesday, January 09, 2008

Sharepoint Info

http://technet2.microsoft.com/Office/en-us/library/6a13cd9f-4b44-40d6-85aa-c70a8e5c34fe1033.mspx?mfr=true




Developer Map for Sharepoint Products
http://download.microsoft.com/download/0/9/c/09cda3f2-6d3d-4082-aec5-9a62b7679ecf/WSS%20Platform.pdf

2007 Office System Logical Architecture Diagram
http://download.microsoft.com/download/8/2/b/82bc962d-b18d-4fb4-9476-225c9efddebd/2007OfficeArchitecture.xps
Office Developer Map
http://download.microsoft.com/download/0/9/c/09cda3f2-6d3d-4082-aec5-9a62b7679ecf/2007OfficeDeveloperMap.pdf

Tuesday, December 11, 2007

On Microsoft

Some intresting Webcasts http://www.informit.com/podcasts/channel.aspx?c=3761c00b-ef8f-4385-9b08-a6e1c7a9a35f&rl=1

Sunday, October 28, 2007

Domain driven design

Reading the book Applying Domain-Driven Design and Patterns by Jimmy Nilsson
and are gathering links and commens in this blogpost

Ben Scherman has a good article serie about doing a project using Domain-Driven Design and Nhibernate

10 tips about using Hibernate

Repostory
Repository, the Foundation of Domain Driven Design
Persistence Last
Evans model-to-work


Value Objects


LINQ
LINQ to SQL comment
Non-scalar Value Objects aka "Complex Types"

Wednesday, September 19, 2007

Coalesce



Coalesce goes C# « Only Talking Sense

... the null-coalescing operator in C# 2.0.

string name = (userName == null? “” : userName);



There’s nothing wrong with this code ....but the ternary operator ?
you can now write



string name = userName ?? “
”;



Powered by ScribeFire.