├── .gitignore ├── M02 Building Your FIrst App ├── After │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── PubContext.cs │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Author.cs │ │ ├── Book.cs │ │ └── PublisherDomain.csproj └── Before │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ └── PublisherConsole.csproj │ └── PublisherDomain │ ├── Author.cs │ ├── Book.cs │ └── PublisherDomain.csproj ├── M03 Query a Database ├── After │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── PubContext.cs │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Author.cs │ │ ├── Book.cs │ │ └── PublisherDomain.csproj └── Before │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── PubContext.cs │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Author.cs │ ├── Book.cs │ └── PublisherDomain.csproj ├── M04 Tracking and Saving ├── After │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── PubContext.cs │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Author.cs │ │ ├── Book.cs │ │ └── PublisherDomain.csproj └── Before │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── PubContext.cs │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Author.cs │ ├── Book.cs │ └── PublisherDomain.csproj ├── M05 Migrations ├── After │ ├── GeneratedSQL.sql │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231125142357_initial.Designer.cs │ │ │ ├── 20231125142357_initial.cs │ │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ │ ├── 20231125185013_SeedAuthors.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Author.cs │ │ ├── Book.cs │ │ └── PublisherDomain.csproj ├── Before │ ├── GeneratedSQL.sql │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── PubContext.cs │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Author.cs │ │ ├── Book.cs │ │ └── PublisherDomain.csproj ├── ReverseEngineerAfter │ ├── Author.cs │ ├── Book.cs │ ├── PubDatabaseContext.cs │ ├── PubDatabaseContext.dgml │ ├── ReverseEngineerBefore.csproj │ └── ReverseEngineerBefore.sln └── ReverseEngineerBefore │ ├── Class1.cs │ ├── ReverseEngineerBefore.csproj │ └── ReverseEngineerBefore.sln ├── M06 Defining One to Many ├── After │ ├── GeneratedSQL.sql │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ ├── PubContext.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231125142357_initial.Designer.cs │ │ │ ├── 20231125142357_initial.cs │ │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ │ ├── 20231125185013_SeedAuthors.cs │ │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ │ ├── 20231130162953_authoridchange.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ ├── PubContext.dgml │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Author.cs │ │ ├── Book.cs │ │ └── PublisherDomain.csproj └── Before │ ├── GeneratedSQL.sql │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ ├── PubContext.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── Migrations │ │ ├── 20231125142357_initial.Designer.cs │ │ ├── 20231125142357_initial.cs │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ ├── 20231125185013_SeedAuthors.cs │ │ └── PubContextModelSnapshot.cs │ ├── PubContext.cs │ ├── PubContext.dgml │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Author.cs │ ├── Book.cs │ └── PublisherDomain.csproj ├── M07 Logging ├── After │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231125142357_initial.Designer.cs │ │ │ ├── 20231125142357_initial.cs │ │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ │ ├── 20231125185013_SeedAuthors.cs │ │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ │ ├── 20231130162953_authoridchange.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ ├── PubContextStreamWriter.cs │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Author.cs │ │ ├── Book.cs │ │ └── PublisherDomain.csproj └── Before │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── Migrations │ │ ├── 20231125142357_initial.Designer.cs │ │ ├── 20231125142357_initial.cs │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ ├── 20231125185013_SeedAuthors.cs │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ ├── 20231130162953_authoridchange.cs │ │ └── PubContextModelSnapshot.cs │ ├── PubContext.cs │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Author.cs │ ├── Book.cs │ └── PublisherDomain.csproj ├── M08 Interacting with Related Data ├── After │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231125142357_initial.Designer.cs │ │ │ ├── 20231125142357_initial.cs │ │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ │ ├── 20231125185013_SeedAuthors.cs │ │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ │ ├── 20231130162953_authoridchange.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Author.cs │ │ ├── Book.cs │ │ └── PublisherDomain.csproj └── Before │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── Migrations │ │ ├── 20231125142357_initial.Designer.cs │ │ ├── 20231125142357_initial.cs │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ ├── 20231125185013_SeedAuthors.cs │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ ├── 20231130162953_authoridchange.cs │ │ └── PubContextModelSnapshot.cs │ ├── PubContext.cs │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Author.cs │ ├── Book.cs │ └── PublisherDomain.csproj ├── M09 Many to Many ├── After │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231125142357_initial.Designer.cs │ │ │ ├── 20231125142357_initial.cs │ │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ │ ├── 20231125185013_SeedAuthors.cs │ │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ │ ├── 20231130162953_authoridchange.cs │ │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ │ ├── 20231201181405_ArtistAndCover.cs │ │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ │ ├── 20231201191224_seedartistcover.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ ├── PubContext.dgml │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Artist.cs │ │ ├── Author.cs │ │ ├── Book.cs │ │ ├── Cover.cs │ │ ├── CoverAssignment.cs │ │ └── PublisherDomain.csproj └── Before │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── Migrations │ │ ├── 20231125142357_initial.Designer.cs │ │ ├── 20231125142357_initial.cs │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ ├── 20231125185013_SeedAuthors.cs │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ ├── 20231130162953_authoridchange.cs │ │ └── PubContextModelSnapshot.cs │ ├── PubContext.cs │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Artist.cs │ ├── Author.cs │ ├── Book.cs │ ├── Cover.cs │ └── PublisherDomain.csproj ├── M10 One to One ├── After │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231125142357_initial.Designer.cs │ │ │ ├── 20231125142357_initial.cs │ │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ │ ├── 20231125185013_SeedAuthors.cs │ │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ │ ├── 20231130162953_authoridchange.cs │ │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ │ ├── 20231201181405_ArtistAndCover.cs │ │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ │ ├── 20231201191224_seedartistcover.cs │ │ │ ├── 20231203184202_bookcoverrelationship.Designer.cs │ │ │ ├── 20231203184202_bookcoverrelationship.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ ├── PubContext.dgml │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Artist.cs │ │ ├── Author.cs │ │ ├── Book.cs │ │ ├── Cover.cs │ │ └── PublisherDomain.csproj └── Before │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── Migrations │ │ ├── 20231125142357_initial.Designer.cs │ │ ├── 20231125142357_initial.cs │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ ├── 20231125185013_SeedAuthors.cs │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ ├── 20231130162953_authoridchange.cs │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ ├── 20231201181405_ArtistAndCover.cs │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ ├── 20231201191224_seedartistcover.cs │ │ └── PubContextModelSnapshot.cs │ ├── PubContext.cs │ ├── PubContext.dgml │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Artist.cs │ ├── Author.cs │ ├── Book.cs │ ├── Cover.cs │ └── PublisherDomain.csproj ├── M11 Raw SQL ├── After │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231125142357_initial.Designer.cs │ │ │ ├── 20231125142357_initial.cs │ │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ │ ├── 20231125185013_SeedAuthors.cs │ │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ │ ├── 20231130162953_authoridchange.cs │ │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ │ ├── 20231201181405_ArtistAndCover.cs │ │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ │ ├── 20231201191224_seedartistcover.cs │ │ │ ├── 20231203184202_bookcoverrelationship.Designer.cs │ │ │ ├── 20231203184202_bookcoverrelationship.cs │ │ │ ├── 20231204191538_addstoredproc.Designer.cs │ │ │ ├── 20231204191538_addstoredproc.cs │ │ │ ├── 20231205153034_authornamesproc.Designer.cs │ │ │ ├── 20231205153034_authornamesproc.cs │ │ │ ├── 20231205191603_AddDbView.Designer.cs │ │ │ ├── 20231205191603_AddDbView.cs │ │ │ ├── 20231205195924_AddDeleteSproc.Designer.cs │ │ │ ├── 20231205195924_AddDeleteSproc.cs │ │ │ ├── 20231206140915_insertauthorprocedure.Designer.cs │ │ │ ├── 20231206140915_insertauthorprocedure.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ ├── PubContext.dgml │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Artist.cs │ │ ├── Author.cs │ │ ├── AuthorByArtist.cs │ │ ├── Book.cs │ │ ├── Cover.cs │ │ └── PublisherDomain.csproj ├── Before │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231125142357_initial.Designer.cs │ │ │ ├── 20231125142357_initial.cs │ │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ │ ├── 20231125185013_SeedAuthors.cs │ │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ │ ├── 20231130162953_authoridchange.cs │ │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ │ ├── 20231201181405_ArtistAndCover.cs │ │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ │ ├── 20231201191224_seedartistcover.cs │ │ │ ├── 20231203184202_bookcoverrelationship.Designer.cs │ │ │ ├── 20231203184202_bookcoverrelationship.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ ├── PubContext.dgml │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Artist.cs │ │ ├── Author.cs │ │ ├── Book.cs │ │ ├── Cover.cs │ │ └── PublisherDomain.csproj └── SprocsAndViewsSQL.txt ├── M12 ASPNET Core API ├── After │ ├── PubAPI │ │ ├── AuthorDTO.cs │ │ ├── AuthorEndpoints.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── launchSettings.json │ │ │ ├── serviceDependencies.json │ │ │ └── serviceDependencies.local.json │ │ ├── PubAPI.csproj │ │ ├── PubAPI.http │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── PublisherApp.sln │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231125142357_initial.Designer.cs │ │ │ ├── 20231125142357_initial.cs │ │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ │ ├── 20231125185013_SeedAuthors.cs │ │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ │ ├── 20231130162953_authoridchange.cs │ │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ │ ├── 20231201181405_ArtistAndCover.cs │ │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ │ ├── 20231201191224_seedartistcover.cs │ │ │ ├── 20231203184202_bookcoverrelationship.Designer.cs │ │ │ ├── 20231203184202_bookcoverrelationship.cs │ │ │ ├── 20231204191538_addstoredproc.Designer.cs │ │ │ ├── 20231204191538_addstoredproc.cs │ │ │ ├── 20231205153034_authornamesproc.Designer.cs │ │ │ ├── 20231205153034_authornamesproc.cs │ │ │ ├── 20231205191603_AddDbView.Designer.cs │ │ │ ├── 20231205191603_AddDbView.cs │ │ │ ├── 20231205195924_AddDeleteSproc.Designer.cs │ │ │ ├── 20231205195924_AddDeleteSproc.cs │ │ │ ├── 20231206140915_insertauthorprocedure.Designer.cs │ │ │ ├── 20231206140915_insertauthorprocedure.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Artist.cs │ │ ├── Author.cs │ │ ├── AuthorByArtist.cs │ │ ├── Book.cs │ │ ├── Cover.cs │ │ └── PublisherDomain.csproj └── Before │ ├── PublisherApp.sln │ ├── PublisherData │ ├── Migrations │ │ ├── 20231125142357_initial.Designer.cs │ │ ├── 20231125142357_initial.cs │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ ├── 20231125185013_SeedAuthors.cs │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ ├── 20231130162953_authoridchange.cs │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ ├── 20231201181405_ArtistAndCover.cs │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ ├── 20231201191224_seedartistcover.cs │ │ ├── 20231203184202_bookcoverrelationship.Designer.cs │ │ ├── 20231203184202_bookcoverrelationship.cs │ │ ├── 20231204191538_addstoredproc.Designer.cs │ │ ├── 20231204191538_addstoredproc.cs │ │ ├── 20231205153034_authornamesproc.Designer.cs │ │ ├── 20231205153034_authornamesproc.cs │ │ ├── 20231205191603_AddDbView.Designer.cs │ │ ├── 20231205191603_AddDbView.cs │ │ ├── 20231205195924_AddDeleteSproc.Designer.cs │ │ ├── 20231205195924_AddDeleteSproc.cs │ │ ├── 20231206140915_insertauthorprocedure.Designer.cs │ │ ├── 20231206140915_insertauthorprocedure.cs │ │ └── PubContextModelSnapshot.cs │ ├── PubContext.cs │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Artist.cs │ ├── Author.cs │ ├── AuthorByArtist.cs │ ├── Book.cs │ ├── Cover.cs │ └── PublisherDomain.csproj ├── M13 Testing the API └── After │ ├── PubAPI │ ├── AuthorDTO.cs │ ├── AuthorEndpoints.cs │ ├── DataLogic.cs │ ├── Program.cs │ ├── Properties │ │ ├── launchSettings.json │ │ ├── serviceDependencies.json │ │ └── serviceDependencies.local.json │ ├── PubAPI.csproj │ ├── PubAPI.http │ ├── appsettings.Development.json │ └── appsettings.json │ ├── PublisherApp.sln │ ├── PublisherData │ ├── Migrations │ │ ├── 20231125142357_initial.Designer.cs │ │ ├── 20231125142357_initial.cs │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ ├── 20231125185013_SeedAuthors.cs │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ ├── 20231130162953_authoridchange.cs │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ ├── 20231201181405_ArtistAndCover.cs │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ ├── 20231201191224_seedartistcover.cs │ │ ├── 20231203184202_bookcoverrelationship.Designer.cs │ │ ├── 20231203184202_bookcoverrelationship.cs │ │ ├── 20231204191538_addstoredproc.Designer.cs │ │ ├── 20231204191538_addstoredproc.cs │ │ ├── 20231205153034_authornamesproc.Designer.cs │ │ ├── 20231205153034_authornamesproc.cs │ │ └── PubContextModelSnapshot.cs │ ├── PubContext.cs │ └── PublisherData.csproj │ ├── PublisherDomain │ ├── Artist.cs │ ├── Author.cs │ ├── AuthorByArtist.cs │ ├── Book.cs │ ├── Cover.cs │ └── PublisherDomain.csproj │ └── TestAPIMethods │ ├── APITests.cs │ ├── CustomWebApplicationFactory.cs │ ├── GlobalUsings.cs │ └── TestAPIMethods.csproj ├── M13 Testing ├── After │ ├── PubAppTest │ │ ├── DatabaseTests.cs │ │ ├── GlobalUsings.cs │ │ ├── InMemoryTests.cs │ │ └── PubAppTest.csproj │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── DataLogic.cs │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231125142357_initial.Designer.cs │ │ │ ├── 20231125142357_initial.cs │ │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ │ ├── 20231125185013_SeedAuthors.cs │ │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ │ ├── 20231130162953_authoridchange.cs │ │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ │ ├── 20231201181405_ArtistAndCover.cs │ │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ │ ├── 20231201191224_seedartistcover.cs │ │ │ ├── 20231203184202_bookcoverrelationship.Designer.cs │ │ │ ├── 20231203184202_bookcoverrelationship.cs │ │ │ ├── 20231204191538_addstoredproc.Designer.cs │ │ │ ├── 20231204191538_addstoredproc.cs │ │ │ ├── 20231205153034_authornamesproc.Designer.cs │ │ │ ├── 20231205153034_authornamesproc.cs │ │ │ ├── 20231205191603_AddDbView.Designer.cs │ │ │ ├── 20231205191603_AddDbView.cs │ │ │ ├── 20231205195924_AddDeleteSproc.Designer.cs │ │ │ ├── 20231205195924_AddDeleteSproc.cs │ │ │ ├── 20231206140915_insertauthorprocedure.Designer.cs │ │ │ ├── 20231206140915_insertauthorprocedure.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Artist.cs │ │ ├── Author.cs │ │ ├── AuthorByArtist.cs │ │ ├── Book.cs │ │ ├── Cover.cs │ │ └── PublisherDomain.csproj └── Before │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── Migrations │ │ ├── 20231125142357_initial.Designer.cs │ │ ├── 20231125142357_initial.cs │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ ├── 20231125185013_SeedAuthors.cs │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ ├── 20231130162953_authoridchange.cs │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ ├── 20231201181405_ArtistAndCover.cs │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ ├── 20231201191224_seedartistcover.cs │ │ ├── 20231203184202_bookcoverrelationship.Designer.cs │ │ ├── 20231203184202_bookcoverrelationship.cs │ │ ├── 20231204191538_addstoredproc.Designer.cs │ │ ├── 20231204191538_addstoredproc.cs │ │ ├── 20231205153034_authornamesproc.Designer.cs │ │ ├── 20231205153034_authornamesproc.cs │ │ ├── 20231205191603_AddDbView.Designer.cs │ │ ├── 20231205191603_AddDbView.cs │ │ ├── 20231205195924_AddDeleteSproc.Designer.cs │ │ ├── 20231205195924_AddDeleteSproc.cs │ │ ├── 20231206140915_insertauthorprocedure.Designer.cs │ │ ├── 20231206140915_insertauthorprocedure.cs │ │ └── PubContextModelSnapshot.cs │ ├── PubContext.cs │ ├── PubContext.dgml │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Artist.cs │ ├── Author.cs │ ├── AuthorByArtist.cs │ ├── Book.cs │ ├── Cover.cs │ └── PublisherDomain.csproj ├── M14 More Mappings ├── Conversions and More │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20231222150945_onemigrationtorulethemall.Designer.cs │ │ │ ├── 20231222150945_onemigrationtorulethemall.cs │ │ │ ├── 20231223220348_JsonColumnFromOwnedType.Designer.cs │ │ │ ├── 20231223220348_JsonColumnFromOwnedType.cs │ │ │ ├── 20231223222835_AddNickNames.Designer.cs │ │ │ ├── 20231223222835_AddNickNames.cs │ │ │ ├── 20231224220300_complextype.Designer.cs │ │ │ ├── 20231224220300_complextype.cs │ │ │ ├── 20231225142036_ComboAddresses.Designer.cs │ │ │ ├── 20231225142036_ComboAddresses.cs │ │ │ ├── 20231225144611_complexname.Designer.cs │ │ │ ├── 20231225144611_complexname.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── PubContext.cs │ │ ├── PubContext.dgml │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Addresses.cs │ │ ├── Artist.cs │ │ ├── Author.cs │ │ ├── Book.cs │ │ ├── ContactDetails.cs │ │ ├── Cover.cs │ │ ├── CoverAssignment.cs │ │ ├── PersonName.cs │ │ └── PublisherDomain.csproj └── M13After │ ├── PubAppTest │ ├── DatabaseTests.cs │ ├── GlobalUsings.cs │ ├── InMemoryTests.cs │ └── PubAppTest.csproj │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── DataLogic.cs │ ├── Program.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── Migrations │ │ ├── 20231125142357_initial.Designer.cs │ │ ├── 20231125142357_initial.cs │ │ ├── 20231125185013_SeedAuthors.Designer.cs │ │ ├── 20231125185013_SeedAuthors.cs │ │ ├── 20231130162953_authoridchange.Designer.cs │ │ ├── 20231130162953_authoridchange.cs │ │ ├── 20231201181405_ArtistAndCover.Designer.cs │ │ ├── 20231201181405_ArtistAndCover.cs │ │ ├── 20231201191224_seedartistcover.Designer.cs │ │ ├── 20231201191224_seedartistcover.cs │ │ ├── 20231203184202_bookcoverrelationship.Designer.cs │ │ ├── 20231203184202_bookcoverrelationship.cs │ │ ├── 20231204191538_addstoredproc.Designer.cs │ │ ├── 20231204191538_addstoredproc.cs │ │ ├── 20231205153034_authornamesproc.Designer.cs │ │ ├── 20231205153034_authornamesproc.cs │ │ ├── 20231205191603_AddDbView.Designer.cs │ │ ├── 20231205191603_AddDbView.cs │ │ ├── 20231205195924_AddDeleteSproc.Designer.cs │ │ ├── 20231205195924_AddDeleteSproc.cs │ │ ├── 20231206140915_insertauthorprocedure.Designer.cs │ │ ├── 20231206140915_insertauthorprocedure.cs │ │ └── PubContextModelSnapshot.cs │ ├── PubContext.cs │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Artist.cs │ ├── Author.cs │ ├── AuthorByArtist.cs │ ├── Book.cs │ ├── Cover.cs │ └── PublisherDomain.csproj ├── M15 Database Connectivity ├── CosmosDB Sample │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── PubContext.cs │ │ ├── PubContext.dgml │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Author.cs │ │ ├── Book.cs │ │ └── PublisherDomain.csproj └── Transactions │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── Migrations │ │ └── PubContextModelSnapshot.cs │ ├── PubContext.cs │ ├── PubContext.dgml │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Artist.cs │ ├── Author.cs │ ├── Book.cs │ ├── Cover.cs │ └── PublisherDomain.csproj ├── M16 EF Core Pipeline ├── EventHandlers │ ├── PublisherApp.sln │ ├── PublisherConsole │ │ ├── Program.cs │ │ └── PublisherConsole.csproj │ ├── PublisherData │ │ ├── Migrations │ │ │ ├── 20220409144844_onemigrationtorulethemall.Designer.cs │ │ │ ├── 20220409144844_onemigrationtorulethemall.cs │ │ │ └── PubContextModelSnapshot.cs │ │ ├── MyCommandInterceptor.cs │ │ ├── PubContext.cs │ │ └── PublisherData.csproj │ └── PublisherDomain │ │ ├── Artist.cs │ │ ├── Author.cs │ │ ├── Book.cs │ │ ├── Cover.cs │ │ ├── CoverAssignment.cs │ │ └── PublisherDomain.csproj └── Interceptor and Override SaveChanges │ ├── PublisherApp.sln │ ├── PublisherConsole │ ├── Program.cs │ └── PublisherConsole.csproj │ ├── PublisherData │ ├── MyCommandInterceptor.cs │ ├── PubContext.cs │ └── PublisherData.csproj │ └── PublisherDomain │ ├── Artist.cs │ ├── Author.cs │ ├── Book.cs │ ├── Cover.cs │ └── PublisherDomain.csproj └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/.gitignore -------------------------------------------------------------------------------- /M02 Building Your FIrst App/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/After/PublisherApp.sln -------------------------------------------------------------------------------- /M02 Building Your FIrst App/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M02 Building Your FIrst App/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M02 Building Your FIrst App/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M02 Building Your FIrst App/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M02 Building Your FIrst App/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M02 Building Your FIrst App/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M02 Building Your FIrst App/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M02 Building Your FIrst App/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M02 Building Your FIrst App/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M02 Building Your FIrst App/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M02 Building Your FIrst App/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M02 Building Your FIrst App/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M02 Building Your FIrst App/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M02 Building Your FIrst App/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M03 Query a Database/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/After/PublisherApp.sln -------------------------------------------------------------------------------- /M03 Query a Database/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M03 Query a Database/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M03 Query a Database/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M03 Query a Database/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M03 Query a Database/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M03 Query a Database/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M03 Query a Database/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M03 Query a Database/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M03 Query a Database/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M03 Query a Database/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M03 Query a Database/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M03 Query a Database/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M03 Query a Database/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M03 Query a Database/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M03 Query a Database/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M03 Query a Database/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M04 Tracking and Saving/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/After/PublisherApp.sln -------------------------------------------------------------------------------- /M04 Tracking and Saving/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M04 Tracking and Saving/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M04 Tracking and Saving/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M04 Tracking and Saving/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M04 Tracking and Saving/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M04 Tracking and Saving/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M04 Tracking and Saving/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M04 Tracking and Saving/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M04 Tracking and Saving/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M04 Tracking and Saving/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M04 Tracking and Saving/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M04 Tracking and Saving/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M04 Tracking and Saving/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M04 Tracking and Saving/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M04 Tracking and Saving/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M04 Tracking and Saving/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M05 Migrations/After/GeneratedSQL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/GeneratedSQL.sql -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherApp.sln -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M05 Migrations/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M05 Migrations/Before/GeneratedSQL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/Before/GeneratedSQL.sql -------------------------------------------------------------------------------- /M05 Migrations/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M05 Migrations/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M05 Migrations/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M05 Migrations/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M05 Migrations/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M05 Migrations/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M05 Migrations/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M05 Migrations/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M05 Migrations/ReverseEngineerAfter/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/ReverseEngineerAfter/Author.cs -------------------------------------------------------------------------------- /M05 Migrations/ReverseEngineerAfter/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/ReverseEngineerAfter/Book.cs -------------------------------------------------------------------------------- /M05 Migrations/ReverseEngineerAfter/PubDatabaseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/ReverseEngineerAfter/PubDatabaseContext.cs -------------------------------------------------------------------------------- /M05 Migrations/ReverseEngineerAfter/PubDatabaseContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/ReverseEngineerAfter/PubDatabaseContext.dgml -------------------------------------------------------------------------------- /M05 Migrations/ReverseEngineerAfter/ReverseEngineerBefore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/ReverseEngineerAfter/ReverseEngineerBefore.csproj -------------------------------------------------------------------------------- /M05 Migrations/ReverseEngineerAfter/ReverseEngineerBefore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/ReverseEngineerAfter/ReverseEngineerBefore.sln -------------------------------------------------------------------------------- /M05 Migrations/ReverseEngineerBefore/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/ReverseEngineerBefore/Class1.cs -------------------------------------------------------------------------------- /M05 Migrations/ReverseEngineerBefore/ReverseEngineerBefore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/ReverseEngineerBefore/ReverseEngineerBefore.csproj -------------------------------------------------------------------------------- /M05 Migrations/ReverseEngineerBefore/ReverseEngineerBefore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M05 Migrations/ReverseEngineerBefore/ReverseEngineerBefore.sln -------------------------------------------------------------------------------- /M06 Defining One to Many/After/GeneratedSQL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/GeneratedSQL.sql -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherApp.sln -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherConsole/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherConsole/PubContext.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/GeneratedSQL.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/GeneratedSQL.sql -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherConsole/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherConsole/PubContext.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M06 Defining One to Many/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M06 Defining One to Many/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M07 Logging/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherApp.sln -------------------------------------------------------------------------------- /M07 Logging/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M07 Logging/After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherData/PubContextStreamWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherData/PubContextStreamWriter.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M07 Logging/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M07 Logging/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M07 Logging/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M07 Logging/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherApp.sln -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M08 Interacting with Related Data/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M08 Interacting with Related Data/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherApp.sln -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherDomain/CoverAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherDomain/CoverAssignment.cs -------------------------------------------------------------------------------- /M09 Many to Many/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M09 Many to Many/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M09 Many to Many/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M10 One to One/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherApp.sln -------------------------------------------------------------------------------- /M10 One to One/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M10 One to One/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M10 One to One/After/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M10 One to One/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M10 One to One/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M10 One to One/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherApp.sln -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231204191538_addstoredproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231204191538_addstoredproc.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231205153034_authornamesproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231205153034_authornamesproc.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231205191603_AddDbView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231205191603_AddDbView.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherDomain/AuthorByArtist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherDomain/AuthorByArtist.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M11 Raw SQL/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M11 Raw SQL/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M11 Raw SQL/SprocsAndViewsSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M11 Raw SQL/SprocsAndViewsSQL.txt -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PubAPI/AuthorDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PubAPI/AuthorDTO.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PubAPI/AuthorEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PubAPI/AuthorEndpoints.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PubAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PubAPI/Program.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PubAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PubAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PubAPI/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PubAPI/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PubAPI/PubAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PubAPI/PubAPI.csproj -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PubAPI/PubAPI.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PubAPI/PubAPI.http -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PubAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PubAPI/appsettings.Development.json -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PubAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PubAPI/appsettings.json -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherApp.sln -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231204191538_addstoredproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231204191538_addstoredproc.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231205153034_authornamesproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231205153034_authornamesproc.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231205191603_AddDbView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231205191603_AddDbView.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherDomain/AuthorByArtist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherDomain/AuthorByArtist.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231204191538_addstoredproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231204191538_addstoredproc.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231205153034_authornamesproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231205153034_authornamesproc.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231205191603_AddDbView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231205191603_AddDbView.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherDomain/AuthorByArtist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherDomain/AuthorByArtist.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M12 ASPNET Core API/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M12 ASPNET Core API/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/AuthorDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PubAPI/AuthorDTO.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/AuthorEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PubAPI/AuthorEndpoints.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/DataLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PubAPI/DataLogic.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PubAPI/Program.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PubAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": {} 3 | } -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/PubAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PubAPI/PubAPI.csproj -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/PubAPI.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PubAPI/PubAPI.http -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PubAPI/appsettings.Development.json -------------------------------------------------------------------------------- /M13 Testing the API/After/PubAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PubAPI/appsettings.json -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherApp.sln -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231204191538_addstoredproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231204191538_addstoredproc.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/20231205153034_authornamesproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/20231205153034_authornamesproc.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherDomain/AuthorByArtist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherDomain/AuthorByArtist.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M13 Testing the API/After/TestAPIMethods/APITests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/TestAPIMethods/APITests.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/TestAPIMethods/CustomWebApplicationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/TestAPIMethods/CustomWebApplicationFactory.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/TestAPIMethods/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/TestAPIMethods/GlobalUsings.cs -------------------------------------------------------------------------------- /M13 Testing the API/After/TestAPIMethods/TestAPIMethods.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing the API/After/TestAPIMethods/TestAPIMethods.csproj -------------------------------------------------------------------------------- /M13 Testing/After/PubAppTest/DatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PubAppTest/DatabaseTests.cs -------------------------------------------------------------------------------- /M13 Testing/After/PubAppTest/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PubAppTest/GlobalUsings.cs -------------------------------------------------------------------------------- /M13 Testing/After/PubAppTest/InMemoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PubAppTest/InMemoryTests.cs -------------------------------------------------------------------------------- /M13 Testing/After/PubAppTest/PubAppTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PubAppTest/PubAppTest.csproj -------------------------------------------------------------------------------- /M13 Testing/After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherApp.sln -------------------------------------------------------------------------------- /M13 Testing/After/PublisherConsole/DataLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherConsole/DataLogic.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231204191538_addstoredproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231204191538_addstoredproc.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231205153034_authornamesproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231205153034_authornamesproc.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231205191603_AddDbView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231205191603_AddDbView.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M13 Testing/After/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherDomain/AuthorByArtist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherDomain/AuthorByArtist.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M13 Testing/After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherApp.sln -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231204191538_addstoredproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231204191538_addstoredproc.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231205153034_authornamesproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231205153034_authornamesproc.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231205191603_AddDbView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231205191603_AddDbView.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherDomain/AuthorByArtist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherDomain/AuthorByArtist.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M13 Testing/Before/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M13 Testing/Before/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherApp.sln -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231222150945_onemigrationtorulethemall.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231222150945_onemigrationtorulethemall.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231222150945_onemigrationtorulethemall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231222150945_onemigrationtorulethemall.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231223220348_JsonColumnFromOwnedType.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231223220348_JsonColumnFromOwnedType.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231223220348_JsonColumnFromOwnedType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231223220348_JsonColumnFromOwnedType.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231223222835_AddNickNames.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231223222835_AddNickNames.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231223222835_AddNickNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231223222835_AddNickNames.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231224220300_complextype.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231224220300_complextype.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231224220300_complextype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231224220300_complextype.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231225142036_ComboAddresses.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231225142036_ComboAddresses.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231225142036_ComboAddresses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231225142036_ComboAddresses.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231225144611_complexname.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231225144611_complexname.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/20231225144611_complexname.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/20231225144611_complexname.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherDomain/Addresses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherDomain/Addresses.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherDomain/ContactDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherDomain/ContactDetails.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherDomain/CoverAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherDomain/CoverAssignment.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherDomain/PersonName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherDomain/PersonName.cs -------------------------------------------------------------------------------- /M14 More Mappings/Conversions and More/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/Conversions and More/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PubAppTest/DatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PubAppTest/DatabaseTests.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PubAppTest/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PubAppTest/GlobalUsings.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PubAppTest/InMemoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PubAppTest/InMemoryTests.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PubAppTest/PubAppTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PubAppTest/PubAppTest.csproj -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherApp.sln -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherConsole/DataLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherConsole/DataLogic.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231125142357_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231125142357_initial.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231125142357_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231125142357_initial.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231125185013_SeedAuthors.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231125185013_SeedAuthors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231125185013_SeedAuthors.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231130162953_authoridchange.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231130162953_authoridchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231130162953_authoridchange.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231201181405_ArtistAndCover.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231201181405_ArtistAndCover.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231201191224_seedartistcover.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231201191224_seedartistcover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231201191224_seedartistcover.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231203184202_bookcoverrelationship.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231203184202_bookcoverrelationship.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231204191538_addstoredproc.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231204191538_addstoredproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231204191538_addstoredproc.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231205153034_authornamesproc.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231205153034_authornamesproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231205153034_authornamesproc.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231205191603_AddDbView.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231205191603_AddDbView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231205191603_AddDbView.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231205195924_AddDeleteSproc.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231205195924_AddDeleteSproc.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231206140915_insertauthorprocedure.Designer.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/20231206140915_insertauthorprocedure.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherDomain/AuthorByArtist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherDomain/AuthorByArtist.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M14 More Mappings/M13After/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M14 More Mappings/M13After/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M15 Database Connectivity/CosmosDB Sample/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/CosmosDB Sample/PublisherApp.sln -------------------------------------------------------------------------------- /M15 Database Connectivity/CosmosDB Sample/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/CosmosDB Sample/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/CosmosDB Sample/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/CosmosDB Sample/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M15 Database Connectivity/CosmosDB Sample/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/CosmosDB Sample/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/CosmosDB Sample/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/CosmosDB Sample/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M15 Database Connectivity/CosmosDB Sample/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/CosmosDB Sample/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M15 Database Connectivity/CosmosDB Sample/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/CosmosDB Sample/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/CosmosDB Sample/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/CosmosDB Sample/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/CosmosDB Sample/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/CosmosDB Sample/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherApp.sln -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherData/PubContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherData/PubContext.dgml -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M15 Database Connectivity/Transactions/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M15 Database Connectivity/Transactions/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherApp.sln -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherData/Migrations/20220409144844_onemigrationtorulethemall.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherData/Migrations/20220409144844_onemigrationtorulethemall.Designer.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherData/Migrations/20220409144844_onemigrationtorulethemall.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherData/Migrations/20220409144844_onemigrationtorulethemall.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherData/Migrations/PubContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherData/Migrations/PubContextModelSnapshot.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherData/MyCommandInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherData/MyCommandInterceptor.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherDomain/CoverAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherDomain/CoverAssignment.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/EventHandlers/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/EventHandlers/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherApp.sln -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherConsole/Program.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherConsole/PublisherConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherConsole/PublisherConsole.csproj -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherData/MyCommandInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherData/MyCommandInterceptor.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherData/PubContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherData/PubContext.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherData/PublisherData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherData/PublisherData.csproj -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherDomain/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherDomain/Artist.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherDomain/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherDomain/Author.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherDomain/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherDomain/Book.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherDomain/Cover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherDomain/Cover.cs -------------------------------------------------------------------------------- /M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherDomain/PublisherDomain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/M16 EF Core Pipeline/Interceptor and Override SaveChanges/PublisherDomain/PublisherDomain.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/julielerman/EFCore8Fundamentals/HEAD/README.md --------------------------------------------------------------------------------