├── .gitattributes ├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── EFCoreFluent ├── EFCoreFluent.sln └── src │ └── EFCoreFluent │ ├── EFExtensions.cs │ └── Snickler.EFCore.csproj ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snickler/EFCore-FluentStoredProcedure/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snickler/EFCore-FluentStoredProcedure/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snickler/EFCore-FluentStoredProcedure/HEAD/.gitignore -------------------------------------------------------------------------------- /EFCoreFluent/EFCoreFluent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snickler/EFCore-FluentStoredProcedure/HEAD/EFCoreFluent/EFCoreFluent.sln -------------------------------------------------------------------------------- /EFCoreFluent/src/EFCoreFluent/EFExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snickler/EFCore-FluentStoredProcedure/HEAD/EFCoreFluent/src/EFCoreFluent/EFExtensions.cs -------------------------------------------------------------------------------- /EFCoreFluent/src/EFCoreFluent/Snickler.EFCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snickler/EFCore-FluentStoredProcedure/HEAD/EFCoreFluent/src/EFCoreFluent/Snickler.EFCore.csproj -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snickler/EFCore-FluentStoredProcedure/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snickler/EFCore-FluentStoredProcedure/HEAD/README.md --------------------------------------------------------------------------------