Tag: .NET

  • Npgsql 8.0, Entity Framework Core and JSON POCOs

    Npgsql 8.0 introduced NativeAOT and trimming support (hooray!), which necessitated explicit opt-ins to some dynamic coding practices that are incompatible with NativeAOT/trimming. One of these is JSON POCO mapping which I use quite heavily in some of my projects (boo! hiss!) As mentioned, though, it is opt-in via NpgsqlDataSourceBuilder introduced in Npgsql 7.0 or the…

  • Email in Castle Monorail 2.0

    Castle Monorail has been my web framework of choice for some years now. I’ve been using the obsolete RenderEmailAndSend method as that was how it is done in the sample code. Monorail 2.0 uses Core 1.2 which features an integrated email sender component, and the old sample code does not work any more since Castle.Components.Common.EmailSender.Message…

  • Database Drivers not provided by Microsoft

    Good post by Joseph Guadagno about database drivers not provided by Microsoft. He missed a few, though, so here they are: PostgreSQL PostgreSQL needs no introductions. Probably my favourite open source DBMS. Npgsql is de facto the ADO.NET provider. Performance and stability seems alright. PostgreSQLDirect .NET is a commercial provider, and is supposed to out-perform…

  • SubSonic 2.0 Beta 3

    Made another attempt to update the current project I am working on from SubSonic 1.0.6 to the newly released 2.0 Beta 3. The issue I had with Beta 1 is gone. Great job. As a public service, these were the things I needed to do for the update. Simple.

  • SubSonic 2.0 Beta 1

    SubSonic has shipped 2.0 Beta 1. I have used SubSonic (formerly ActionPack) in a few projects now and I have been waiting for this release. Very exciting. So I downloaded the zip file, updated the DLLs, web.config, compiled successfully. Went to the home page of the web application, so far so good. Datagrid, OK. Clicked…

  • Enterprise Library 3.0 Released

    Most excellent. I have looked at Enterprise Library in the past, but never quite found a suitable project for it. 3.0 has just been released and the highlights (as covered by Tom Hollander) are I particularly like the Validation block and the Software Factory. I should think up a project where it makes sense to…