├── .gitignore ├── EFCore.App ├── CompositionRoot.fs ├── EFCore.App.fsproj ├── Entities.fs ├── Program.fs ├── SerieContext.fs ├── SerieRepository.fs ├── Series.db ├── Series.sql └── Series_Sqlite.sql └── EFCore.sln /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /EFCore.App/CompositionRoot.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/EFCore.App/CompositionRoot.fs -------------------------------------------------------------------------------- /EFCore.App/EFCore.App.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/EFCore.App/EFCore.App.fsproj -------------------------------------------------------------------------------- /EFCore.App/Entities.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/EFCore.App/Entities.fs -------------------------------------------------------------------------------- /EFCore.App/Program.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/EFCore.App/Program.fs -------------------------------------------------------------------------------- /EFCore.App/SerieContext.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/EFCore.App/SerieContext.fs -------------------------------------------------------------------------------- /EFCore.App/SerieRepository.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/EFCore.App/SerieRepository.fs -------------------------------------------------------------------------------- /EFCore.App/Series.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/EFCore.App/Series.db -------------------------------------------------------------------------------- /EFCore.App/Series.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/EFCore.App/Series.sql -------------------------------------------------------------------------------- /EFCore.App/Series_Sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/EFCore.App/Series_Sqlite.sql -------------------------------------------------------------------------------- /EFCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EelcoMulder/EFCoreWithFSharp/HEAD/EFCore.sln --------------------------------------------------------------------------------