AndrewPeters

Stories kicked by AndrewPeters

In-process ASP.NET MVC Web Form View Rendering(andrewpeters.net)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 6 months ago

Sometimes it’s useful to be able to render a view in-process, for example, from within a unit test if you would like to validate the rendered XHTML. read more...

add a comment |category: |Views: 159

tags: another

LightSpeed 2.1 Released - includes new search API(mindscape.co.nz)

submitted by traskjdtraskjd(3229) 3 years, 7 months ago

LightSpeed 2.1, the performance minded object relational mapping framework, is fresh from the oven with new features like database independent full text search capabilities using Lucene.Net, Visual Studio integrated designer enhancements and a bundle of other new features. read more...

add a comment |category: |Views: 318

tags: another

NHaml: Block Methods and RESTful Helpers(andrewpeters.net)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 9 months ago

Describes some cool new NHaml features supporting REST style helper methods. read more...

add a comment |category: |Views: 27

tags: another

ASP.NET MVC Tip #35 – Use the NHaml View Engine (weblogs.asp.net)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 9 months ago

In this tip, I explain how you can use the NHaml view engine as the view engine for an ASP.NET MVC application. I demonstrate how to create NHaml views that display both static content and database records. I also discuss how you can use master pages and user controls with the NHaml view engine. read more...

add a comment |category: |Views: 256

tags: another

A Serious Challenge for Open Source?(chriscyvas.wordpress.com)

submitted by ccyvasccyvas(635) 3 years, 9 months ago

. . . what Mindscape has done is really quite impressive. To evaluate, accept, and incorporate feedback that quickly into the product and to have the installer ready that afternoon is impressive – for anyone. read more...

13 comments |category: |Views: 674

tags: another

Free Visual Studio File Explorer Add-in(mindscape.co.nz)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 9 months ago

The Visual Studio File Explorer Add-in (sexy name we know, but hey, it’s self documenting) is a free Tool Window add-in for VS 2008 that provides a Windows Explorer style file system view. It’s particularly useful for performing routine file system tasks without the need to “context switch” away from Visual Studio, which can be time-consuming over the course of days and weeks. It is shell-enabled so extensions like TortoiseSVN work too. read more...

add a comment |category: |Views: 638

tags: another

Elegant Invariant Checking with C# 3 (andrewpeters.net)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 9 months ago

Leveraging expression trees and extension methods to build a fluent invariant checking API. read more...

add a comment |category: |Views: 437

tags: another

How to use NDepend to improve code quality(blog.bluecog.co.nz)

submitted by traskjdtraskjd(3229) 3 years, 11 months ago

Code quality is an important aspect of every software development project - discover how NDepend can aid in giving you a richer and more meaningful understanding of the quality of your code as well as helping to identify areas you could improve. This post is a high level overview of what you can achieve with NDepend. read more...

add a comment |category: |Views: 430

tags: another

Faster domain model development with schema round-tripping(mindscape.co.nz)

submitted by traskjdtraskjd(3229) 3 years, 11 months ago

Schema round-tripping is the ability for your domain model entities to be updated seamlessly when schema changes occur or, when your modify your model, for those changes to be propagated back to your database schema without any fuss. This article covers how to leverage schema round-tripping with LightSpeed 2.0's Visual Studio 2008 integrated domain design tool. This functionality is baked into every version, including the free express edition. read more...

add a comment |category: |Views: 182

tags: another

Rich domain modeling with Visual Studio 2008(mindscape.co.nz)

submitted by traskjdtraskjd(3229) 3 years, 11 months ago

LightSpeed 2.0 includes a powerful visual domain model designer that has support for database round tripping (auto update on schema changes, push model changes to the database), creates .NET 2.0 compliant or .NET 3.5 compliant code depending on the target framework of your project and customizable code generation templates. Drag and drop database support for SQL Server, Oracle, My SQL, SQLite and PostgreSQL is also supported right out of Visual Studio 2008. Free version available. read more...

2 comments |category: |Views: 273

tags: another

Leveraging LightSpeed specific features from LINQ(mindscape.co.nz)

submitted by traskjdtraskjd(3229) 3 years, 11 months ago

Post about accessing the powerful features that LightSpeed offers through the new LINQ provider supplied with LightSpeed 2.0. Specifically this article deals with leveraging the powerful Named Aggregates feature and Soft Delete functionality. read more...

add a comment |category: |Views: 7

tags: another

When to use LINQ?(mindscape.co.nz)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 11 months ago

Great, in-depth discussion of when it makes to sense to use LINQ in LightSpeed 2.0. read more...

add a comment |category: |Views: 356

tags: another

Introducing LINQ to LightSpeed(mindscape.co.nz)

submitted by turtlespinturtlespin(634) 3 years, 11 months ago

LightSpeed 2 incorporates LINQ (Language Integrated Query) support. LINQ to LightSpeed means that if you know LINQ, you can get these benefits without having to learn a new API. You can continue to write LINQ queries as if against LINQ to SQL or another LINQ provider, but you’ll get database independence (effectively LightSpeed gives you LINQ to Oracle, LINQ to MySQL, LINQ to PostgreSQL and LINQ to SQLite as well as LINQ to SQL Server, all in the one box), advanced eager loading functionality (avoiding the so-called “n+1” problem which affects some LINQ implementations) and of course the blazingly fast LightSpeed query engine. read more...

add a comment |category: |Views: 203

tags: another

"Velocity" project - memcached by Microsoft?(blog.bluecog.co.nz)

submitted by traskjdtraskjd(3229) 3 years, 11 months ago

Is the Velocity project by Microsoft simply a me-too framework or are they creating real value for developers on the Windows platform? read more...

1 comment |category: |Views: 352

tags: another

LightSpeed 2.0 Released(mindscape.co.nz)

submitted by AndrewPetersAndrewPeters(1170) 3 years, 11 months ago

LightSpeed 2.0 has been released. It includes a full, round-tripping Visual Studio designer and support for LINQ! read more...

add a comment |category: |Views: 470

tags: another

Using the unit of work-per-request pattern in ASP.NET MVC(mindscape.co.nz)

submitted by AndrewPetersAndrewPeters(1170) 4 years ago

Describe a simple, efficient and testable approach to implementing the unit of work-per-request (a.k.a session-per-request) pattern in Microsoft’s new ASP.NET MVC framework. read more...

add a comment |category: |Views: 625

tags: another