What's Hot

Get the Latest Orcas CTP

Orcas is coming! Plus other download goodies this month.

News flash: Microsoft has designated a launched date for Visual Studio 2008, AKA Orcas: February 27, 2008. Note that the tool is still set to be released in late 2007.

In other VS 2008 news, a blog post by a Microsoft employee in the UK pointed readers to the June CTP of Visual Studio Orcas. The blog post was cancelled within the day, yet the link (remains). I can only guess Microsoft doesn't want to share this build with the public at large, especially given that Beta 2 is touted as coming soon. That's too bad, because this is a significant build for VB developers.

The Orcas June CTP includes support for Lambda functions in VB. Lambda functions are basically inline functions, and their inclusion makes working with LINQ a lot more fun. This CTP also incorporates support for the new Nullable(Of T) syntax:

' example 1
Dim x as Integer? 
' example 2
Dim x? As Integer

You can also use operators on the nullable types, based on the type they wrap. For Integer? that means you can use all the operators as you would with Integer. For nullable types, these operators work just as the underlying type does, except they include null propagation: If either operand is null, then the result is null.

A much appreciated addition to VB in the June CTP is the inclusion of the new If operator (see the article ""Load Up With VB's Operators" in this issue for more details).

Microsoft has also released the ADO.NET Entity Framework June 2007 CTP. This update includes many functional improvements, but it still lacks a visual designer for code generation. One of the big changes the ADO.NET team has made in this version is to make the framework more interface- and attribute-based rather than require implementation inheritance. The term the ADO.NET team uses is IPOCO, which seems to stand for Interface Plain Old CLR Object. The team cites a plethora of additions with this build, including IPOCO, the ability to detach from long-running ObjectContext instances, multiple entity sets per type, support for referential integrity constraints, span support, transactions, serialization, the elimination of default constructors in code-generated classes, improvements to stored procedure support, access to the underlying store connection, directory macros in the entity connection string to support hosted scenarios, native SQL read-only views, UNICODE support in Entity SQL, query plan caching, and canonical functions in Entity SQL.

One drawback is that the release notes state this version works only with Beta 1 Visual Studio Orcas Web Express. All the other Beta 1 versions apparently don't work with it. I did test out this CTP with the June Orcas CTP, and it does work there. However, it appears the ADO.NET team, like the rest of Microsoft, isn't talking about the June Orcas CTP. Download the ADO.NET Entity Framework June 2007 CTP here.

You can also now acquire the Microsoft SDK for Open XML Formats. Open XML is the new Office format, usually indicated by an "x" suffix, such as Document1.docx. This SDK provides full fidelity support for all of office's features, while also providing an XML schema-based way of working with documents. Each document, presentation, or spreadsheet is a zip file that contains different parts in separate files. This SDK provides managed code wrappers using the new .NET 3.0 IO.Packaging API to make working with the parts included in these zip files incredibly easy. Note that Open XML is an ECMA standard and is currently in the process of ISO standardization. Download the Open XML Formats SDK from here.

If you never got your fill of playing with sandcastles as a kid, you can download the Sandcastle – June 2007 CTP. Sandcastle is a batch-line tool for creating source-code documentation based on the XML comments in the code files. This is the same tool teams at Microsoft use to create their .NET framework class library documentation. Ironically, this is a documentation tool that comes with little to no documentation about itself. The process is painful until you work out how to use the batch files. There is an online Wiki here, where you can find links to a couple of open source free GUI's that alleviate the pain of trying to work out how you configure this tool. Download Sandcastle from here.

About the Author

Bill McCarthy is an independent consultant based in Australia and is one of the foremost .NET language experts specializing in Visual Basic. He has been a Microsoft MVP for VB for the last nine years and sat in on internal development reviews with the Visual Basic team for the last five years where he helped to steer the languageā€™s future direction. These days he writes his thoughts about language direction on his blog at http://msmvps.com/bill.

comments powered by Disqus

Featured

  • AI for GitHub Collaboration? Maybe Not So Much

    No doubt GitHub Copilot has been a boon for developers, but AI might not be the best tool for collaboration, according to developers weighing in on a recent social media post from the GitHub team.

  • Visual Studio 2022 Getting VS Code 'Command Palette' Equivalent

    As any Visual Studio Code user knows, the editor's command palette is a powerful tool for getting things done quickly, without having to navigate through menus and dialogs. Now, we learn how an equivalent is coming for Microsoft's flagship Visual Studio IDE, invoked by the same familiar Ctrl+Shift+P keyboard shortcut.

  • .NET 9 Preview 3: 'I've Been Waiting 9 Years for This API!'

    Microsoft's third preview of .NET 9 sees a lot of minor tweaks and fixes with no earth-shaking new functionality, but little things can be important to individual developers.

  • Data Anomaly Detection Using a Neural Autoencoder with C#

    Dr. James McCaffrey of Microsoft Research tackles the process of examining a set of source data to find data items that are different in some way from the majority of the source items.

  • What's New for Python, Java in Visual Studio Code

    Microsoft announced March 2024 updates to its Python and Java extensions for Visual Studio Code, the open source-based, cross-platform code editor that has repeatedly been named the No. 1 tool in major development surveys.

Subscribe on YouTube