Click here to Skip to main content
15,885,546 members
Articles / Web Development / ASP.NET

Creating DAL Components Using Custom ASP.NET Build Providers And Compiler Techniques

Rate me:
Please Sign up or sign in to vote.
4.86/5 (28 votes)
24 Oct 2006CPOL9 min read 106.8K   886   114  
This article describes how to create Data Access Layer Components (DALC) using ASP.NET build providers and a self-defined description language in C#, including an easy scanner, parser, and CodeDOM generator.
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("DALComp.BuildProvider")]
[assembly: AssemblyDescription("DALComp BuildProvider")]
[assembly: AssemblyCompany("Parago Media GmbH & Co. KG")]
[assembly: AssemblyProduct("DALComp")]
[assembly: AssemblyCopyright("Copyright © Parago Media GmbH & Co. KG 2006")]

[assembly: ComVisible(false)]
[assembly: Guid("bc98f72a-baf5-4d9d-8ca4-0ff7ade224b2")]

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Germany Germany
I’m a software developer based in Germany.

Homepage

Comments and Discussions