Click here to Skip to main content
15,885,278 members
Articles / Database Development / SQL Server

Light ORM Library for .NET

Rate me:
Please Sign up or sign in to vote.
4.83/5 (39 votes)
8 Oct 2010CPOL17 min read 220.7K   3.1K   184  
This article is about the Light Object-Relational Mapping library.
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <ProjectGuid>{C815591F-C7D9-45FD-8EEF-E2A5D15C2FF2}</ProjectGuid>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <OutputType>Library</OutputType>
    <RootNamespace>Light</RootNamespace>
    <AssemblyName>Light</AssemblyName>
    <AllowUnsafeBlocks>False</AllowUnsafeBlocks>
    <NoStdLib>False</NoStdLib>
    <WarningLevel>4</WarningLevel>
    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
    <OutputPath>bin\Debug\</OutputPath>
    <DebugSymbols>true</DebugSymbols>
    <DebugType>Full</DebugType>
    <Optimize>False</Optimize>
    <CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
    <OutputPath>bin\Release\</OutputPath>
    <DebugSymbols>false</DebugSymbols>
    <DebugType>None</DebugType>
    <Optimize>True</Optimize>
    <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
    <DocumentationFile>bin\Release\Light.xml</DocumentationFile>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
    <RegisterForComInterop>False</RegisterForComInterop>
    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
    <BaseAddress>4194304</BaseAddress>
    <PlatformTarget>AnyCPU</PlatformTarget>
    <FileAlignment>4096</FileAlignment>
  </PropertyGroup>
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.Targets" />
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.Data" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="AssemblyInfo.cs" />
    <Compile Include="Source\Actions.cs" />
    <Compile Include="Source\ColumnAttribute.cs" />
    <Compile Include="Source\Dao.cs" />
    <Compile Include="Source\DeclarationException.cs" />
    <Compile Include="Source\LightException.cs" />
    <Compile Include="Source\MappingAttribute.cs" />
    <Compile Include="Source\Model\AbstractColumn.cs" />
    <Compile Include="Source\Model\Command.cs" />
    <Compile Include="Source\Model\FieldColumn.cs" />
    <Compile Include="Source\Model\LRUCache.cs" />
    <Compile Include="Source\Model\ParamContainer.cs" />
    <Compile Include="Source\Model\PropertyColumn.cs" />
    <Compile Include="Source\Model\Table.cs" />
    <Compile Include="Source\Model\TableFactory.cs" />
    <Compile Include="Source\Model\Trigger.cs" />
    <Compile Include="Source\Parameter.cs" />
    <Compile Include="Source\Procedure.cs" />
    <Compile Include="Source\Query.cs" />
    <Compile Include="Source\SQLiteDao.cs" />
    <Compile Include="Source\SqlServerDao.cs" />
    <Compile Include="Source\TableAttribute.cs" />
    <Compile Include="Source\TableRefAttribute.cs" />
    <Compile Include="Source\TriggerAttribute.cs" />
    <Compile Include="Source\TriggerContext.cs" />
    <Compile Include="Source\TriggerException.cs" />
  </ItemGroup>
  <ItemGroup>
    <Folder Include="Source" />
    <Folder Include="Source\Model" />
  </ItemGroup>
</Project>

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)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions