SqlServer 2008 Express RTM Ok, now it’s realy official – SqlServer 2008 Express Editions, All Three of them, are available for download Which edition of SQL Server 2008 Express is right for you? SQL Server 2008 Express is available in the following 3 editions (each is available from the Install Wizard): SQL Server 2008 Express SQL Server database engine - create, store, update and retrieve your data SQL Server 2008 Express with Tools SQL Server database engine - create, store, update and retrieve...
MSDN has started to build a small list of "How do I?" Videos which currently have ASP.NET ASP.NET Ajax Devices Native Coding Silverlight Visual Studio Tools for Office Visual Studio Extensibility Visual Basic Visual Studio Team System Windows Forms Windows Presentation Foundation ... but I'm adding my link to that WSS 3.0 For the people ;) , just in case you forgot.
For some of you this may already be common knowledge/everyday experience , but today was my first time I have actually used in SQL2005 the "rownum" ( SqlServer Function row_number () ) feature, here's a small example: select * from ( select *, row_number () over ( order by CustomerId ) as rownum from customers ) as c where c . rownum between 1000 and 10000 ; this VERY NICE feature along together with the PagedDataSource class enables you paging in .NET 2.0. We know that the TOP had problems in the...
Just came across something interesting: NHibernate Best Practices with ASP.NET, 1.2nd Ed , take a look. LINQ is not out yet, and NHibernate just might do the thing.