├── .gitattributes ├── .gitignore ├── Dapper_ORM.sln ├── Dapper_ORM ├── Controllers │ └── HomeController.cs ├── Dapper_ORM.csproj ├── DataContext │ └── AppContext.cs ├── Models │ └── Parameters.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Services │ ├── Dapperr.cs │ └── IDapper.cs ├── Startup.cs ├── appsettings.Development.json └── appsettings.json ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/.gitignore -------------------------------------------------------------------------------- /Dapper_ORM.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM.sln -------------------------------------------------------------------------------- /Dapper_ORM/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Dapper_ORM/Dapper_ORM.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/Dapper_ORM.csproj -------------------------------------------------------------------------------- /Dapper_ORM/DataContext/AppContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/DataContext/AppContext.cs -------------------------------------------------------------------------------- /Dapper_ORM/Models/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/Models/Parameters.cs -------------------------------------------------------------------------------- /Dapper_ORM/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/Program.cs -------------------------------------------------------------------------------- /Dapper_ORM/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/Properties/launchSettings.json -------------------------------------------------------------------------------- /Dapper_ORM/Services/Dapperr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/Services/Dapperr.cs -------------------------------------------------------------------------------- /Dapper_ORM/Services/IDapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/Services/IDapper.cs -------------------------------------------------------------------------------- /Dapper_ORM/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/Startup.cs -------------------------------------------------------------------------------- /Dapper_ORM/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/appsettings.Development.json -------------------------------------------------------------------------------- /Dapper_ORM/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/Dapper_ORM/appsettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JayKrishnareddy/Dapper_ORM/HEAD/README.md --------------------------------------------------------------------------------