soderlind.no

I code for fun

Object-Relational Persistence for .NET

This is cool:
“With SQL Server Yukon, you could do the following:

CREATE TABLE [dbo].[Person] (
   [Id] [int] IDENTITY (1, 1) NOT NULL ,
   [Person] [Person] NOT NULL
) ON [PRIMARY]

The Person type is a .NET class. Columns in Yukon can be typed to custom .NET classes.”

more …

Comments are closed.