in

Adatis Community

Welcome to Adatis blogs

Browse by Tags

  • LINQ and SQL Server

    Some time ago I reported on LINQ whilst Visual Studio 2008 was still in BETA. On Monday, Nov. 19 2007 , Microsoft announced that Visual Studio 2008 and the .NET Framework 3.5 was released to manufacturing (RTM). Since then I am sure many of you have had many hours playing with VS 2008, WPF, Expression...
  • LINQ

    The LINQ Project is fast becoming one of the most anticipated integrated technologies in Visual Studio 2008 (ORCAS). LINQ is simply a set of extensions to the .NET framework that encompass language-integrated query, set, and transform operations. It extends C# and Visual Basic with native language syntax...
  • ORCAS CTP..... What's in it?

    The March CTP release of ORCAS (Visual Studio 2008) incorporates a number of new and exciting technologies, as well as enhancing some of the older greats. The current release of the IDE implements tools and functionality supporting LINQ (Microsoft's .NET Extensions, Language Integration Query), AJAX...
  • XML Namespaces and the ADOMD XML Reader Result Set

    I'm building a generic helper class to flatten an ADOMD data set to a data table for easier consumption by default and third party .NET controls. I can't rely on the Load method of the data table, nor the CellSet object as in some cases not all the information is persisted; datatypes and top...
    Posted to Sacha Tomey's blog (Weblog) by sachatomey on 07-31-2007
  • Visual Studio 2008 and Javascript Intellisense

    Visual Studio 2008 (Codname ORCA) has intorduced a new feature to aid with Web development, official release date has not yet been announced, however a BETA 2 is due to released later this year. One of the most publicied, and simplistic enhancement to the Visual Studio 2008 enviroment is the somple introduction...
  • WinFX Name Change

    Well, I'm glad I've been keeping an eye on this WinFX stuff... http://blogs.msdn.com/somasegar/archive/2006/06/09/624300.aspx
    Posted to Sacha Tomey's blog (Weblog) by sachatomey on 06-12-2006
  • Invalidating ASP.NET OutputCache

    You can invalidate ASP.NET output level cache using cache dependencies. The ASP.NET webform should contain something like this: <%@ OutputCache Duration="60" Location="Server" VaryByParam="None" %> If you need to invalidate the cache prior to the 60 seconds elapsing...
    Posted to Sacha Tomey's blog (Weblog) by sachatomey on 03-29-2006
  • Assembly Base Address Generator

    Saves having to calculate one.. http://montgomerysoftware.com/DLLBaseAddressGenerator.aspx
    Posted to Sacha Tomey's blog (Weblog) by sachatomey on 03-17-2006
  • Enterprise Library Woes

    When deploying the enterprise library to a production server the following errors (or similar) can be fixed by running the 'InstallUtil' utility against the enterprise library assemblies. Failed to fire the WMI event 'DataConnectionOpenedEvent'. Exception: System.Exception: This schema...
    Posted to Sacha Tomey's blog (Weblog) by sachatomey on 03-16-2006
  • Recycle IIS6.0 application pools from code

    Works with IIS6.0 Windows Server 2003 SP1... public static void Recycle( string host, string poolname) { using (DirectoryEntry apppool = new DirectoryEntry( string .Format("IIS://{0}/w3svc/apppools/{1}", host, poolname))) { apppool.Invoke("Recycle"); } }
    Posted to Sacha Tomey's blog (Weblog) by sachatomey on 02-28-2006
Page 1 of 2 (11 items) 1 2 Next >