Generating .NET POCO Classes for SQL Query Results: Listing 2
Test table and stored procedure to validate SchemaOnly behavior.
USE [Chinook]
GO
CREATE TABLE [dbo].[Test](
[ID] [int] IDENTITY(1,1) NOT NULL,
[Field] [varchar](50) NOT NULL
) ON [PRIMARY]
GO
CREATE PROCEDURE [dbo].[GetAlbums] AS
BEGIN
INSERT INTO [Test] (Field) VALUES ('Insert Worked')
SELECT * FROM Album
END
GO
About the Author
Joe Kunk is a Microsoft MVP in Visual Basic, three-time president of the Greater Lansing User Group for .NET, and developer for Dart Container Corporation of Mason, Michigan. He's been developing software for over 30 years and has worked in the education, government, financial and manufacturing industries. Kunk's co-authored the book "Professional DevExpress ASP.NET Controls" (Wrox Programmer to Programmer, 2009). He can be reached via email at [email protected].