├── .gitattributes ├── .gitignore ├── MicroOrm.Pocos.SqlGenerator.Tests ├── MicroOrm.Pocos.SqlGenerator.Tests.csproj ├── Properties │ └── AssemblyInfo.cs └── SqlGeneratorTests.cs ├── MicroOrm.Pocos.SqlGenerator.sln ├── MicroOrm.Pocos.SqlGenerator ├── Attributes │ ├── Deleted.cs │ ├── KeyProperty.cs │ ├── NonStored.cs │ ├── Scheme.cs │ ├── StatusProperty.cs │ └── StoredAs.cs ├── ISqlGenerator.cs ├── MicroOrm.Pocos.SqlGenerator.1.0.0.1.nupkg ├── MicroOrm.Pocos.SqlGenerator.1.0.0.2.nupkg ├── MicroOrm.Pocos.SqlGenerator.1.0.0.3.nupkg ├── MicroOrm.Pocos.SqlGenerator.1.0.0.4.nupkg ├── MicroOrm.Pocos.SqlGenerator.1.0.0.5.nupkg ├── MicroOrm.Pocos.SqlGenerator.csproj ├── MicroOrm.Pocos.SqlGenerator.nuspec ├── Properties │ └── AssemblyInfo.cs ├── PropertyMetadata.cs └── SqlGenerator.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator.Tests/MicroOrm.Pocos.SqlGenerator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator.Tests/MicroOrm.Pocos.SqlGenerator.Tests.csproj -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator.Tests/SqlGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator.Tests/SqlGeneratorTests.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator.sln -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/Attributes/Deleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/Attributes/Deleted.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/Attributes/KeyProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/Attributes/KeyProperty.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/Attributes/NonStored.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/Attributes/NonStored.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/Attributes/Scheme.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/Attributes/Scheme.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/Attributes/StatusProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/Attributes/StatusProperty.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/Attributes/StoredAs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/Attributes/StoredAs.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/ISqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/ISqlGenerator.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.1.0.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.1.0.0.1.nupkg -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.1.0.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.1.0.0.2.nupkg -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.1.0.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.1.0.0.3.nupkg -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.1.0.0.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.1.0.0.4.nupkg -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.1.0.0.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.1.0.0.5.nupkg -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.csproj -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/MicroOrm.Pocos.SqlGenerator.nuspec -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/PropertyMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/PropertyMetadata.cs -------------------------------------------------------------------------------- /MicroOrm.Pocos.SqlGenerator/SqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/MicroOrm.Pocos.SqlGenerator/SqlGenerator.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ElNinjaGaiden/MicroOrm.Pocos.SqlGenerator/HEAD/README.md --------------------------------------------------------------------------------