Home Authors Posts by Ricardo Costa

Ricardo Costa

Ricardo Costa
53 POSTS 1 COMMENTS
Solution Architect at |create|it|. Member of the Systems Integration and Web Development team. More recently, manager of the RAD team (Rapid Application Development) with greater focus on the OutSystems platform. Special topics of current interest include: Solution Architecture design, Integration Patterns and Enterprise Application Patterns, Software Factories, Code Generation, Web Development.

Different web.configs

0
In the project that I'm currently working I had a problem because my connection strings are different from the other developers: I want to...

Recursive Queries in SQL Server 2005

0
For building recursive queries In SQL Server 2005 we have to use a new functionality called Common Table Expressions. Let's see how we can...

List User Profiles from MOSS 2007

0
using (SPSite site = new SPSite(siteUrl)){  ServerContext context = ServerContext.GetContext(site);  UserProfileManager profileManager = new UserProfileManager(context);  foreach (UserProfile userProfile in profileManager)    Console.WriteLine(userProfile.Value);}