├── .gitattributes ├── 9781484235515.jpg ├── Appendix_C.pdf ├── Contributing.md ├── EFCoreBookSamples ├── EFC_CountryBorders │ ├── EFC_CodeFirst_NMSelf.sln │ └── EF_CodeFirst_NMSelf │ │ ├── App.config │ │ ├── EFC_CodeFirst_NMSelf.csproj │ │ ├── EFC_CodeFirst_NMSelf.csproj.vspscc │ │ ├── MigrateToEFC.ps1 │ │ ├── Migrations │ │ ├── 20160928181541_v1.Designer.cs │ │ ├── 20160928181541_v1.cs │ │ └── WorldContextModelSnapshot.cs │ │ ├── Modell.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── EFC_MiracleList_UWP │ ├── DAL │ │ ├── DAL.csproj │ │ ├── DAL.csproj.vspscc │ │ ├── EFContext.cs │ │ └── EntityClasses.cs │ ├── EFC_UWP.sln │ ├── EFC_UWP_SQLite │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LargeTile.scale-100.png │ │ │ ├── LargeTile.scale-125.png │ │ │ ├── LargeTile.scale-150.png │ │ │ ├── LargeTile.scale-200.png │ │ │ ├── LargeTile.scale-400.png │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── MiracleListLogo.jpg │ │ │ ├── SmallTile.scale-100.png │ │ │ ├── SmallTile.scale-125.png │ │ │ ├── SmallTile.scale-150.png │ │ │ ├── SmallTile.scale-200.png │ │ │ ├── SmallTile.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-125.png │ │ │ ├── SplashScreen.scale-150.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ ├── Square44x44Logo.targetsize-24.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ ├── Square44x44Logo.targetsize-32.png │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ ├── StoreLogo.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ ├── EFC_UWP.csproj │ │ ├── EFC_UWP.csproj.vspscc │ │ ├── EF_UWP_SQLite_TemporaryKey.pfx │ │ ├── EntityClasses.cd │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── app.config │ │ └── project.json │ ├── EFC_UWP_Test │ │ ├── EFC_UWP_Test.csproj │ │ ├── EFC_UWP_Test.csproj.vspscc │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── UnitTests.cs │ │ └── packages.config │ ├── StartWindowsAppDriver.ps1 │ └── readme.txt ├── EFC_MiracleList_Xamarin │ ├── .tfsignore │ ├── DAL │ │ ├── DAL.csproj │ │ ├── DAL.csproj.vspscc │ │ ├── EFContext.cs │ │ └── IEnv.cs │ ├── EFC_Xamarin.sln │ ├── EFC_Xamarin │ │ ├── EFC_Xamarin.Android │ │ │ ├── Assets │ │ │ │ └── AboutAssets.txt │ │ │ ├── EFC_Xamarin.Android.csproj │ │ │ ├── EFC_Xamarin.Android.csproj.vspscc │ │ │ ├── Env.cs │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Resource.Designer.cs │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable │ │ │ │ │ ├── icon.png │ │ │ │ │ └── miraclelistlogo.jpg │ │ │ │ ├── layout │ │ │ │ │ ├── Tabbar.axml │ │ │ │ │ └── Toolbar.axml │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ ├── app.config │ │ │ └── packages.config │ │ ├── EFC_Xamarin.UWP │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── LargeTile.scale-100.png │ │ │ │ ├── LargeTile.scale-125.png │ │ │ │ ├── LargeTile.scale-150.png │ │ │ │ ├── LargeTile.scale-200.png │ │ │ │ ├── LargeTile.scale-400.png │ │ │ │ ├── LockScreenLogo.scale-100.png │ │ │ │ ├── LockScreenLogo.scale-125.png │ │ │ │ ├── LockScreenLogo.scale-150.png │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── LockScreenLogo.scale-400.png │ │ │ │ ├── SmallTile.scale-100.png │ │ │ │ ├── SmallTile.scale-125.png │ │ │ │ ├── SmallTile.scale-150.png │ │ │ │ ├── SmallTile.scale-200.png │ │ │ │ ├── SmallTile.scale-400.png │ │ │ │ ├── SplashScreen.scale-100.png │ │ │ │ ├── SplashScreen.scale-125.png │ │ │ │ ├── SplashScreen.scale-150.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── SplashScreen.scale-400.png │ │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ │ │ ├── Square44x44Logo.targetsize-24.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ │ │ ├── Square44x44Logo.targetsize-32.png │ │ │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ │ └── Wide310x150Logo.scale-400.png │ │ │ ├── EFC_Xamarin.UWP.csproj │ │ │ ├── EFC_Xamarin.UWP.csproj.vspscc │ │ │ ├── EFC_Xamarin.UWP_TemporaryKey.pfx │ │ │ ├── Env.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ │ ├── miraclelistlogo.jpg │ │ │ └── project.json │ │ └── EFC_Xamarin.iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── EFC_Xamarin.iOS.csproj │ │ │ ├── EFC_Xamarin.iOS.csproj.vspscc │ │ │ ├── Entitlements.plist │ │ │ ├── Env.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Media.xcassets │ │ │ │ ├── AppIcons.appiconset │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchImages.launchimage │ │ │ │ └── Contents.json │ │ │ │ └── miraclelistlogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── iTunesArtwork │ │ │ ├── iTunesArtwork@2x │ │ │ └── packages.config │ ├── GO │ │ ├── BO.csproj │ │ ├── BO.csproj.vspscc │ │ └── EntityClasses.cs │ ├── NuGet.config │ └── UI │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── GradientView.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── UI.csproj │ │ ├── UI.csproj.vspscc │ │ └── assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── MiracleListLogo.jpg │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png ├── EFC_WWWings │ ├── .tfignore │ ├── AdditionalSamples │ │ ├── EFC_MappingTest │ │ │ ├── AlternateKeys.cs │ │ │ ├── App.config │ │ │ ├── AutoIncrement.cs │ │ │ ├── CascadingDelete.cs │ │ │ ├── ColumnTypes.cs │ │ │ ├── EFC_MappingScenarios.csproj │ │ │ ├── EFC_MappingScenarios.csproj.vspscc │ │ │ ├── GuidPK.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sequences.cs │ │ │ ├── TableSplitting.cs │ │ │ ├── _Program.cs │ │ │ └── packages.config │ │ └── Readme_AdditionalSamples.txt │ ├── EFC_BL │ │ ├── DataGenerator.cs │ │ ├── EFC_BL.csproj │ │ ├── EFC_BL.csproj.vspscc │ │ ├── FlightManager.cs │ │ ├── FlightManagerSimple.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── EFC_BO │ │ ├── AircraftType.cs │ │ ├── AircraftTypeDetail.cs │ │ ├── Airline.cs │ │ ├── Annotations │ │ │ └── ConcurrencyNoCheckAttribute.cs │ │ ├── Booking.cs │ │ ├── Diagrams │ │ │ ├── WWWingsV1_ClassDiagramm.cd │ │ │ └── WWWingsV2_ClassDiagram.cd │ │ ├── EFC_BO.csproj │ │ ├── EFC_BO.csproj.vspscc │ │ ├── Employee.cs │ │ ├── Flight.cs │ │ ├── Passenger.cs │ │ ├── Person.cs │ │ ├── Persondetail.cs │ │ ├── Pilot.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── QueryTypes │ │ │ ├── DepartureGroup.cs │ │ │ └── FlightDTO.cs │ │ └── _PseudoEntities.cs │ ├── EFC_BO_Step1 │ │ ├── Booking.cs │ │ ├── Class1.cs │ │ ├── EFC_BO_Step1.csproj │ │ ├── EFC_BO_Step1.csproj.vspscc │ │ ├── Employee.cs │ │ ├── Flight.cs │ │ ├── Passenger.cs │ │ ├── Person.cs │ │ └── Pilot.cs │ ├── EFC_Console │ │ ├── 10 Reverse Engineering │ │ │ ├── Readme.txt │ │ │ └── SampleClient.cs │ │ ├── 11 Forward Engineering │ │ │ └── SampleClient.cs │ │ ├── 12 Schema Customizing │ │ │ └── readme.txt │ │ ├── 13 Migrations │ │ │ └── CreateDatabaseAtRuntime.cs │ │ ├── 14 LINQ │ │ │ ├── EFC_LINQ_CheatSheet.cs │ │ │ ├── Queries.cs │ │ │ └── SimpleQueries.cs │ │ ├── 15 Relations │ │ │ ├── LoadingStrategies.cs │ │ │ └── RelationshipFixupDemo.cs │ │ ├── 16 CUD │ │ │ ├── ChangeTrackerDemos.cs │ │ │ ├── ContradictoryRelationships.cs │ │ │ ├── FieldMapping.cs │ │ │ ├── RelationChange.cs │ │ │ ├── Transactions.cs │ │ │ └── Updates.cs │ │ ├── 17 Concurrency │ │ │ ├── Conflicts.cs │ │ │ ├── ReadLock.cs │ │ │ └── Timestamps.cs │ │ ├── 18 Logging │ │ │ └── Logging.cs │ │ ├── 19 Async │ │ │ └── AsyncOperations.cs │ │ ├── 20 DynamicLINQ │ │ │ └── QueriesDynamic.cs │ │ ├── 21 SQL SP TVF │ │ │ └── SQLSPTVF.cs │ │ ├── 22 Mapping Tips │ │ │ ├── AttachedVsDetachedObjects.cs │ │ │ ├── CalculatedColumns.cs │ │ │ ├── DatabaseViews.cs │ │ │ ├── Readme.txt │ │ │ ├── ShadowState.cs │ │ │ ├── Threading.cs │ │ │ └── ValueConverters.cs │ │ ├── 23 LINQ Tips │ │ │ ├── EFC2_GlobalFilter.cs │ │ │ └── EFPlus_Demo.cs │ │ ├── 24 Tuning │ │ │ ├── BulkOperations.cs │ │ │ ├── Caching.cs │ │ │ ├── ForeignKeyAssociations.cs │ │ │ └── TrackingModes.cs │ │ ├── 25 Architecture │ │ │ └── readme.txt │ │ ├── 26 Tools │ │ │ └── Readme.txt │ │ ├── 27 Components │ │ │ ├── AutoMapper │ │ │ │ ├── Advanced │ │ │ │ │ ├── AutoMapperAdvanced.cs │ │ │ │ │ ├── AutoMapper_Misc.cs │ │ │ │ │ └── BOandDTOClasses.cs │ │ │ │ ├── AutoMapperSpeedTest.cs │ │ │ │ ├── Basics │ │ │ │ │ ├── AutoMapperProfile1.cs │ │ │ │ │ ├── AutoMapperProfile2.cs │ │ │ │ │ ├── AutoMapper_HelloWorld.cs │ │ │ │ │ ├── AutomapperBasics.cs │ │ │ │ │ ├── NoNamingConvention.cs │ │ │ │ │ ├── PilotStringConverter.cs │ │ │ │ │ └── SmokerInfoResolver.cs │ │ │ │ └── ViewModels │ │ │ │ │ ├── DTO.cs │ │ │ │ │ ├── EntityClasses.cd │ │ │ │ │ ├── ViewModels.cd │ │ │ │ │ └── ViewModels.cs │ │ │ └── OOM │ │ │ │ ├── ObjectExtensions.cs │ │ │ │ └── ReflectionMapping.cs │ │ ├── 28 Solutions │ │ │ └── readme.txt │ │ ├── 99 Additional Samples │ │ │ ├── ConnectionManagement.cs │ │ │ ├── ContextEvents.cs │ │ │ ├── Conventions.cs │ │ │ ├── DeleteCascading.cs │ │ │ ├── Demo_CachingRelFixup.cs │ │ │ ├── FirstLevelCache.cs │ │ │ ├── Graph.cs │ │ │ ├── PerformanceMeasurement.cs │ │ │ ├── RelationshipFixup.cs │ │ │ └── TimestampQuery.cs │ │ ├── AddedColumnsConfig.txt │ │ ├── App.config │ │ ├── EFC_Console.csproj │ │ ├── EFC_Console.csproj.vspscc │ │ ├── GlobalSuppressions.cs │ │ ├── LiveCoding.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Util │ │ │ ├── CodeSampleAnnotations.cs │ │ │ └── DemoUtil.cs │ │ ├── bin │ │ │ ├── Debug - Copy (2) │ │ │ │ ├── AddedColumnsConfig.txt │ │ │ │ ├── AutoMapper.dll │ │ │ │ ├── AutoMapper.xml │ │ │ │ ├── CacheManager.Core.dll │ │ │ │ ├── CacheManager.Core.xml │ │ │ │ ├── CacheManager.Microsoft.Extensions.Caching.Memory.dll │ │ │ │ ├── CacheManager.Microsoft.Extensions.Caching.Memory.xml │ │ │ │ ├── CacheManager.Serialization.Json.dll │ │ │ │ ├── CacheManager.Serialization.Json.xml │ │ │ │ ├── Castle.Core.dll │ │ │ │ ├── Castle.Core.xml │ │ │ │ ├── EFC_BL.dll │ │ │ │ ├── EFC_BL.dll.config │ │ │ │ ├── EFC_BL.pdb │ │ │ │ ├── EFC_BO.dll │ │ │ │ ├── EFC_BO.pdb │ │ │ │ ├── EFC_Console.exe │ │ │ │ ├── EFC_Console.exe.config │ │ │ │ ├── EFC_Console.pdb │ │ │ │ ├── EFC_DA.dll │ │ │ │ ├── EFC_DA.dll.config │ │ │ │ ├── EFC_DA.pdb │ │ │ │ ├── EFC_WWWings1_Reverse(NETFX).dll │ │ │ │ ├── EFC_WWWings1_Reverse(NETFX).dll.config │ │ │ │ ├── EFC_WWWings1_Reverse(NETFX).pdb │ │ │ │ ├── EFSecondLevelCache.Core.dll │ │ │ │ ├── EFSecondLevelCache.Core.xml │ │ │ │ ├── HibernatingRhinos.Profiler.Appender.dll │ │ │ │ ├── HibernatingRhinos.Profiler.Appender.xml │ │ │ │ ├── ITV_DemoUtil.dll │ │ │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ │ │ ├── Microsoft.AspNetCore.Http.Abstractions.xml │ │ │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ │ │ ├── Microsoft.AspNetCore.Http.Features.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.Attributes.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Attributes.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.Proxies.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Proxies.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.xml │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.xml │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.xml │ │ │ │ ├── Microsoft.Extensions.CommandLineUtils.dll │ │ │ │ ├── Microsoft.Extensions.CommandLineUtils.xml │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.xml │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.xml │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.xml │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.xml │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.xml │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.xml │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ ├── Microsoft.Extensions.Logging.xml │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.Extensions.Options.xml │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.xml │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── Newtonsoft.Json.xml │ │ │ │ ├── Remotion.Linq.dll │ │ │ │ ├── Remotion.Linq.xml │ │ │ │ ├── System.Buffers.dll │ │ │ │ ├── System.Buffers.xml │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ ├── System.Collections.Immutable.xml │ │ │ │ ├── System.ComponentModel.Annotations.dll │ │ │ │ ├── System.Data.Common.dll │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.xml │ │ │ │ ├── System.Diagnostics.StackTrace.dll │ │ │ │ ├── System.Diagnostics.Tracing.dll │ │ │ │ ├── System.Globalization.Extensions.dll │ │ │ │ ├── System.IO.Compression.dll │ │ │ │ ├── System.Interactive.Async.dll │ │ │ │ ├── System.Interactive.Async.xml │ │ │ │ ├── System.Memory.dll │ │ │ │ ├── System.Memory.xml │ │ │ │ ├── System.Net.Http.dll │ │ │ │ ├── System.Net.Sockets.dll │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ ├── System.Numerics.Vectors.xml │ │ │ │ ├── System.Reflection.TypeExtensions.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.xml │ │ │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ │ │ ├── System.Security.SecureString.dll │ │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ │ ├── System.Text.Encodings.Web.xml │ │ │ │ ├── System.Threading.Overlapped.dll │ │ │ │ ├── System.Xml.XPath.XDocument.dll │ │ │ │ ├── Z.EntityFramework.Plus.EFCore.dll │ │ │ │ └── Z.EntityFramework.Plus.EFCore.xml │ │ │ └── Debug - Copy │ │ │ │ ├── AddedColumnsConfig.txt │ │ │ │ ├── AutoMapper.dll │ │ │ │ ├── AutoMapper.xml │ │ │ │ ├── CacheManager.Core.dll │ │ │ │ ├── CacheManager.Core.xml │ │ │ │ ├── CacheManager.Microsoft.Extensions.Caching.Memory.dll │ │ │ │ ├── CacheManager.Microsoft.Extensions.Caching.Memory.xml │ │ │ │ ├── CacheManager.Serialization.Json.dll │ │ │ │ ├── CacheManager.Serialization.Json.xml │ │ │ │ ├── Castle.Core.dll │ │ │ │ ├── Castle.Core.xml │ │ │ │ ├── EFC_BL.dll │ │ │ │ ├── EFC_BL.dll.config │ │ │ │ ├── EFC_BL.pdb │ │ │ │ ├── EFC_BO.dll │ │ │ │ ├── EFC_BO.pdb │ │ │ │ ├── EFC_Console.exe │ │ │ │ ├── EFC_Console.exe.config │ │ │ │ ├── EFC_Console.pdb │ │ │ │ ├── EFC_DA.dll │ │ │ │ ├── EFC_DA.dll.config │ │ │ │ ├── EFC_DA.pdb │ │ │ │ ├── EFC_WWWings1_Reverse(NETFX).dll │ │ │ │ ├── EFC_WWWings1_Reverse(NETFX).dll.config │ │ │ │ ├── EFC_WWWings1_Reverse(NETFX).pdb │ │ │ │ ├── EFSecondLevelCache.Core.dll │ │ │ │ ├── EFSecondLevelCache.Core.xml │ │ │ │ ├── HibernatingRhinos.Profiler.Appender.dll │ │ │ │ ├── HibernatingRhinos.Profiler.Appender.xml │ │ │ │ ├── ITV_DemoUtil.dll │ │ │ │ ├── Microsoft.AspNetCore.Http.Abstractions.dll │ │ │ │ ├── Microsoft.AspNetCore.Http.Abstractions.xml │ │ │ │ ├── Microsoft.AspNetCore.Http.Features.dll │ │ │ │ ├── Microsoft.AspNetCore.Http.Features.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.Attributes.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Attributes.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Design.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.Proxies.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Proxies.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.xml │ │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ │ ├── Microsoft.EntityFrameworkCore.xml │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Abstractions.xml │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.dll │ │ │ │ ├── Microsoft.Extensions.Caching.Memory.xml │ │ │ │ ├── Microsoft.Extensions.CommandLineUtils.dll │ │ │ │ ├── Microsoft.Extensions.CommandLineUtils.xml │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Abstractions.xml │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.Binder.xml │ │ │ │ ├── Microsoft.Extensions.Configuration.dll │ │ │ │ ├── Microsoft.Extensions.Configuration.xml │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.xml │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ │ │ ├── Microsoft.Extensions.DependencyInjection.xml │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ │ │ │ ├── Microsoft.Extensions.Logging.Abstractions.xml │ │ │ │ ├── Microsoft.Extensions.Logging.dll │ │ │ │ ├── Microsoft.Extensions.Logging.xml │ │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ │ ├── Microsoft.Extensions.Options.xml │ │ │ │ ├── Microsoft.Extensions.Primitives.dll │ │ │ │ ├── Microsoft.Extensions.Primitives.xml │ │ │ │ ├── Newtonsoft.Json.dll │ │ │ │ ├── Newtonsoft.Json.xml │ │ │ │ ├── Remotion.Linq.dll │ │ │ │ ├── Remotion.Linq.xml │ │ │ │ ├── System.Buffers.dll │ │ │ │ ├── System.Buffers.xml │ │ │ │ ├── System.Collections.Immutable.dll │ │ │ │ ├── System.Collections.Immutable.xml │ │ │ │ ├── System.ComponentModel.Annotations.dll │ │ │ │ ├── System.Data.Common.dll │ │ │ │ ├── System.Data.SqlClient.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ │ ├── System.Diagnostics.DiagnosticSource.xml │ │ │ │ ├── System.Diagnostics.StackTrace.dll │ │ │ │ ├── System.Diagnostics.Tracing.dll │ │ │ │ ├── System.Globalization.Extensions.dll │ │ │ │ ├── System.IO.Compression.dll │ │ │ │ ├── System.Interactive.Async.dll │ │ │ │ ├── System.Interactive.Async.xml │ │ │ │ ├── System.Memory.dll │ │ │ │ ├── System.Memory.xml │ │ │ │ ├── System.Net.Http.dll │ │ │ │ ├── System.Net.Sockets.dll │ │ │ │ ├── System.Numerics.Vectors.dll │ │ │ │ ├── System.Numerics.Vectors.xml │ │ │ │ ├── System.Reflection.TypeExtensions.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.dll │ │ │ │ ├── System.Runtime.CompilerServices.Unsafe.xml │ │ │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ │ │ ├── System.Security.SecureString.dll │ │ │ │ ├── System.Text.Encodings.Web.dll │ │ │ │ ├── System.Text.Encodings.Web.xml │ │ │ │ ├── System.Threading.Overlapped.dll │ │ │ │ ├── System.Xml.XPath.XDocument.dll │ │ │ │ ├── Z.EntityFramework.Plus.EFCore.dll │ │ │ │ └── Z.EntityFramework.Plus.EFCore.xml │ │ └── packages.config │ ├── EFC_Console_Step1 │ │ ├── EFC_Console_Step1.csproj │ │ ├── EFC_Console_Step1.csproj.vspscc │ │ ├── Program.cs │ │ └── SampleClient.cs │ ├── EFC_DA │ │ ├── ConfigureServices.cs │ │ ├── CustomMigrationSamples │ │ │ ├── NewColumn.cs │ │ │ ├── NewColumn.designer.cs │ │ │ ├── cardinality change 11 to 1N.cs │ │ │ └── cardinality change 11 to 1N.designer.cs │ │ ├── EFC_DA.csproj │ │ ├── EFC_DA.csproj.vspscc │ │ ├── FlightETC.cs │ │ ├── Migrations │ │ │ ├── 20160905090511_v3.Designer.cs │ │ │ ├── 20160905090511_v3.cs │ │ │ ├── 20180318091852_v1.Designer.cs │ │ │ ├── 20180318091852_v1.cs │ │ │ ├── 20180318091944_v2.Designer.cs │ │ │ ├── 20180318091944_v2.cs │ │ │ ├── 20180320091812_v3.cs │ │ │ ├── 20180320091812_v3.designer.cs │ │ │ └── WWWingsContextModelSnapshot.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Readme.txt │ │ ├── WWWingsContext.cs │ │ ├── app.config │ │ └── packages.config │ ├── EFC_DA_Step1 │ │ ├── EFC_DA_Step1.csproj │ │ ├── EFC_DA_Step1.csproj.vspscc │ │ └── WWWingsContext.cs │ ├── EFC_EntityDeveloper │ │ ├── EFC_EntityDeveloper.csproj │ │ ├── EFC_EntityDeveloper.csproj.vspscc │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── WWWingsV1.Airport.cs │ │ ├── WWWingsV1.AllBookings.cs │ │ ├── WWWingsV1.AllEmployees.cs │ │ ├── WWWingsV1.AllPassengers.cs │ │ ├── WWWingsV1.CountFlightByDepartureResult.cs │ │ ├── WWWingsV1.Diagram1.view │ │ ├── WWWingsV1.Employee.cs │ │ ├── WWWingsV1.Flight.cs │ │ ├── WWWingsV1.FlightPassenger.cs │ │ ├── WWWingsV1.FlightsFromRome.cs │ │ ├── WWWingsV1.GetDepartureeResult.cs │ │ ├── WWWingsV1.GetFlightAnzahlResult.cs │ │ ├── WWWingsV1.GetFlightsAndTotalCountResult.cs │ │ ├── WWWingsV1.InsertFlightResult.cs │ │ ├── WWWingsV1.Passenger.cs │ │ ├── WWWingsV1.Person.cs │ │ ├── WWWingsV1.Pilot.cs │ │ ├── WWWingsV1.UpdateFlightResult.cs │ │ ├── WWWingsV1.WWWingsV1Model.cs │ │ ├── WWWingsV1.edps │ │ ├── WWWingsV1.efml │ │ ├── WWWingsV1.info │ │ ├── app.config │ │ └── packages.config │ ├── EFC_GUI │ │ ├── App.config │ │ ├── EFC_GUI.csproj │ │ ├── EFC_GUI.csproj.vspscc │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── DataSources │ │ │ │ └── BO.Flight.datasource │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── WPF │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── FlightGridNoTracking.xaml │ │ │ ├── FlightGridNoTracking.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ └── MainWindow.xaml.cs │ │ ├── main.cs │ │ ├── packages.config │ │ └── worlwidewings.ico │ ├── EFC_PowerTools │ │ ├── AircraftType.cs │ │ ├── AircraftTypeDetail.cs │ │ ├── Airline.cs │ │ ├── Booking.cs │ │ ├── EFC_PowerTools.csproj │ │ ├── Employee.cs │ │ ├── Flight.cs │ │ ├── Passenger.cs │ │ ├── Persondetail.cs │ │ ├── Program.cs │ │ ├── Wwwingsv2_ENContext.cs │ │ └── Wwwingsv2_ENContext.dgml │ ├── EFC_Tools │ │ ├── App.config │ │ ├── DbContextExtension.cs │ │ ├── EFC_Tools.csproj │ │ ├── EFC_Tools.csproj.vspscc │ │ ├── EFC_Tools.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── packages.config │ │ └── test.ps1 │ ├── EFC_WWWings.sln │ ├── EFC_WWWingsV1_Reverse(NETFX) │ │ ├── Airport.cs │ │ ├── EFC_WWWingsV1_Reverse(NETFX).csproj │ │ ├── EFC_WWWingsV1_Reverse(NETFX).csproj.vspscc │ │ ├── Employee.cs │ │ ├── Flight.cs │ │ ├── FlightPassenger.cs │ │ ├── MigrationHistory.cs │ │ ├── Passenger.cs │ │ ├── Person.cs │ │ ├── Pilot.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── WWWings1_ClassDiagram.cd │ │ ├── WWWingsV1Context.cs │ │ ├── app.config │ │ ├── packages.config │ │ └── readme.txt │ ├── EFC_WWWingsV1_Reverse(NETStandard) │ │ ├── Airport.cs │ │ ├── DataGenerator.cs │ │ ├── EFC_WWWingsV1_Reverse(NETStandard).csproj │ │ ├── EFC_WWWingsV1_Reverse(NETStandard).csproj.vspscc │ │ ├── Employee.cs │ │ ├── Flight.cs │ │ ├── FlightPassenger.cs │ │ ├── Metadaten.cs │ │ ├── MigrationHistory.cs │ │ ├── Passenger.cs │ │ ├── Person.cs │ │ ├── Pilot.cs │ │ ├── Protokoll.cs │ │ ├── Test.cs │ │ ├── WWWingsV1Context.cs │ │ └── readme.txt │ ├── LINQPad │ │ ├── CS_Class.linq │ │ ├── CS_Expression.linq │ │ ├── CS_Statement.linq │ │ ├── EFC_LINQ_Flights.linq │ │ └── EFC_LINQ_FlightsWithPilots.linq │ ├── Lib │ │ ├── ITV.AppUtil.NETStandard.2.2.2.nupkg │ │ └── ITV_DemoUtil.dll │ ├── SQL │ │ ├── WWWings66.sql │ │ ├── WWWingsV1.sql │ │ ├── WWWingsV2.sql │ │ ├── WWWingsV2_CreateSP.sql │ │ ├── WWWingsV2_CreateTVF.sql │ │ ├── WWWingsV2_CreateView.sql │ │ └── WWWingsV2_ExtraColumns.sql │ ├── SolutionInfo.cs │ ├── nuget.config │ └── readme.txt ├── EFCoreBook_WhereDoIFindTheCodeSamples.pdf ├── MiracleList │ ├── EFC_UWP_SQLite │ │ ├── EFC_DAL │ │ │ ├── EFC_DAL.csproj │ │ │ ├── EFC_DAL.csproj.vspscc │ │ │ ├── EFContext.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ └── packages.config │ │ ├── EFC_DAL_PCL │ │ │ ├── Class1.cs │ │ │ ├── EFC_DAL_PCL.csproj │ │ │ ├── EFC_DAL_PCL.csproj.vspscc │ │ │ ├── EFContext.cs │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── EFC_UWP_SQLite.sln │ │ └── EFC_UWP_SQLite │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ ├── LargeTile.scale-100.png │ │ │ ├── LargeTile.scale-125.png │ │ │ ├── LargeTile.scale-150.png │ │ │ ├── LargeTile.scale-200.png │ │ │ ├── LargeTile.scale-400.png │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── MiracleListLogo.jpg │ │ │ ├── SmallTile.scale-100.png │ │ │ ├── SmallTile.scale-125.png │ │ │ ├── SmallTile.scale-150.png │ │ │ ├── SmallTile.scale-200.png │ │ │ ├── SmallTile.scale-400.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── SplashScreen.scale-125.png │ │ │ ├── SplashScreen.scale-150.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── SplashScreen.scale-400.png │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ │ │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ ├── Square44x44Logo.targetsize-24.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ ├── Square44x44Logo.targetsize-32.png │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ ├── StoreLogo.png │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ └── Wide310x150Logo.scale-400.png │ │ │ ├── EFC_UWP_SQLite.csproj │ │ │ ├── EFC_UWP_SQLite.csproj.user │ │ │ ├── EFC_UWP_SQLite.csproj.vspscc │ │ │ ├── EFContext.cs │ │ │ ├── EF_UWP_SQLite_TemporaryKey.pfx │ │ │ ├── EntityClasses.cd │ │ │ ├── EntityClasses.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ │ ├── app.config │ │ │ ├── project.json │ │ │ └── project.lock.json │ └── EFC_Xamarin │ │ ├── .tfsignore │ │ ├── DAL │ │ ├── DAL.csproj │ │ ├── DAL.csproj.vspscc │ │ ├── EFContext.cs │ │ └── IEnv.cs │ │ ├── EFC_Xamarin.sln │ │ ├── EFC_Xamarin │ │ ├── EFC_Xamarin.Android │ │ │ ├── Assets │ │ │ │ └── AboutAssets.txt │ │ │ ├── EFC_Xamarin.Android.csproj │ │ │ ├── EFC_Xamarin.Android.csproj.bak │ │ │ ├── EFC_Xamarin.Android.csproj.user │ │ │ ├── EFC_Xamarin.Android.csproj.vspscc │ │ │ ├── Env.cs │ │ │ ├── MainActivity.cs │ │ │ ├── Properties │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ │ ├── AboutResources.txt │ │ │ │ ├── Resource.Designer.cs │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── icon.png │ │ │ │ ├── drawable │ │ │ │ │ ├── icon.png │ │ │ │ │ └── miraclelistlogo.jpg │ │ │ │ ├── layout │ │ │ │ │ ├── Tabbar.axml │ │ │ │ │ └── Toolbar.axml │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ ├── app.config │ │ │ └── packages.config │ │ ├── EFC_Xamarin.UWP │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── Assets │ │ │ │ ├── LargeTile.scale-100.png │ │ │ │ ├── LargeTile.scale-125.png │ │ │ │ ├── LargeTile.scale-150.png │ │ │ │ ├── LargeTile.scale-200.png │ │ │ │ ├── LargeTile.scale-400.png │ │ │ │ ├── LockScreenLogo.scale-100.png │ │ │ │ ├── LockScreenLogo.scale-125.png │ │ │ │ ├── LockScreenLogo.scale-150.png │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── LockScreenLogo.scale-400.png │ │ │ │ ├── SmallTile.scale-100.png │ │ │ │ ├── SmallTile.scale-125.png │ │ │ │ ├── SmallTile.scale-150.png │ │ │ │ ├── SmallTile.scale-200.png │ │ │ │ ├── SmallTile.scale-400.png │ │ │ │ ├── SplashScreen.scale-100.png │ │ │ │ ├── SplashScreen.scale-125.png │ │ │ │ ├── SplashScreen.scale-150.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── SplashScreen.scale-400.png │ │ │ │ ├── Square150x150Logo.scale-100.png │ │ │ │ ├── Square150x150Logo.scale-125.png │ │ │ │ ├── Square150x150Logo.scale-150.png │ │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ │ ├── Square150x150Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.scale-100.png │ │ │ │ ├── Square44x44Logo.scale-125.png │ │ │ │ ├── Square44x44Logo.scale-150.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-400.png │ │ │ │ ├── Square44x44Logo.targetsize-16.png │ │ │ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png │ │ │ │ ├── Square44x44Logo.targetsize-24.png │ │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ │ ├── Square44x44Logo.targetsize-256.png │ │ │ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png │ │ │ │ ├── Square44x44Logo.targetsize-32.png │ │ │ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png │ │ │ │ ├── Square44x44Logo.targetsize-48.png │ │ │ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png │ │ │ │ ├── StoreLogo.png │ │ │ │ ├── Wide310x150Logo.scale-100.png │ │ │ │ ├── Wide310x150Logo.scale-125.png │ │ │ │ ├── Wide310x150Logo.scale-150.png │ │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ │ └── Wide310x150Logo.scale-400.png │ │ │ ├── EFC_Xamarin.UWP.csproj │ │ │ ├── EFC_Xamarin.UWP.csproj.user │ │ │ ├── EFC_Xamarin.UWP.csproj.vspscc │ │ │ ├── EFC_Xamarin.UWP.nuget.targets │ │ │ ├── EFC_Xamarin.UWP_TemporaryKey.pfx │ │ │ ├── Env.cs │ │ │ ├── MainPage.xaml │ │ │ ├── MainPage.xaml.cs │ │ │ ├── Package.appxmanifest │ │ │ ├── PathProvider.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ └── Default.rd.xml │ │ │ ├── miraclelistlogo.jpg │ │ │ ├── project.json │ │ │ └── project.lock.json │ │ └── EFC_Xamarin.iOS │ │ │ ├── AppDelegate.cs │ │ │ ├── EFC_Xamarin.iOS.csproj │ │ │ ├── EFC_Xamarin.iOS.csproj.user │ │ │ ├── EFC_Xamarin.iOS.csproj.vspscc │ │ │ ├── Entitlements.plist │ │ │ ├── Env.cs │ │ │ ├── Info.plist │ │ │ ├── Main.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Media.xcassets │ │ │ │ ├── AppIcons.appiconset │ │ │ │ └── Contents.json │ │ │ │ ├── LaunchImages.launchimage │ │ │ │ └── Contents.json │ │ │ │ └── miraclelistlogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ └── Wide310x150Logo.scale-200.png │ │ │ ├── iTunesArtwork │ │ │ ├── iTunesArtwork@2x │ │ │ └── packages.config │ │ ├── GO │ │ ├── BO.csproj │ │ ├── BO.csproj.vspscc │ │ └── EntityClasses.cs │ │ ├── NuGet.config │ │ └── UI │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── GradientView.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── UI.csproj │ │ ├── UI.csproj.vspscc │ │ └── assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── MiracleListLogo.jpg │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png ├── Other │ └── EFC_CodeFirst_NMSelf │ │ ├── EFC_CodeFirst_NMSelf.sln │ │ └── EF_CodeFirst_NMSelf │ │ ├── App.config │ │ ├── EFC_CodeFirst_NMSelf.csproj │ │ ├── EFC_CodeFirst_NMSelf.csproj.vspscc │ │ ├── MigrateToEFC.ps1 │ │ ├── Migrations │ │ ├── 20160928181541_v1.Designer.cs │ │ ├── 20160928181541_v1.cs │ │ └── WorldContextModelSnapshot.cs │ │ ├── Modell.cs │ │ ├── NichtSoGuteLösungen │ │ ├── Modell_1N_Unidirektional.cs │ │ ├── Modell_NM_Unidirektional.cs │ │ └── Program_OhneAddToBorder.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── WorldwideWings │ ├── .tfignore │ ├── AdditionalSamples │ │ ├── EFC_MappingTest │ │ │ ├── AlternateKeys.cs │ │ │ ├── App.config │ │ │ ├── AutoIncrement.cs │ │ │ ├── CascadingDelete.cs │ │ │ ├── ColumnTypes.cs │ │ │ ├── EFC_MappingScenarios.csproj │ │ │ ├── EFC_MappingScenarios.csproj.vspscc │ │ │ ├── GuidPK.cs │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Sequences.cs │ │ │ ├── TableSplitting.cs │ │ │ ├── _Program.cs │ │ │ └── packages.config │ │ └── Readme_AdditionalSamples.txt │ ├── EFC_BL │ │ ├── EFC_BL.csproj │ │ ├── EFC_BL.csproj.vspscc │ │ ├── FlugManager.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── app.config │ │ └── packages.config │ ├── EFC_BO │ │ ├── AircraftType.cs │ │ ├── AircraftTypeDetail.cs │ │ ├── Airline.cs │ │ ├── Annotations │ │ │ └── ConcurrencyNoCheckAttribute.cs │ │ ├── Booking.cs │ │ ├── Diagrams │ │ │ ├── WWWingsV1_ClassDiagramm.cd │ │ │ └── WWWingsV2_ClassDiagram.cd │ │ ├── EFC_BO.csproj │ │ ├── EFC_BO.csproj.vspscc │ │ ├── Employee.cs │ │ ├── Flight.cs │ │ ├── Passenger.cs │ │ ├── Person.cs │ │ ├── Persondetail.cs │ │ ├── Pilot.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── _PseudoEntities.cs │ ├── EFC_BO_Step1 │ │ ├── Booking.cs │ │ ├── Class1.cs │ │ ├── EFC_BO_Step1.csproj │ │ ├── EFC_BO_Step1.csproj.vspscc │ │ ├── Employee.cs │ │ ├── Flight.cs │ │ ├── Passenger.cs │ │ ├── Person.cs │ │ └── Pilot.cs │ ├── EFC_Console │ │ ├── 10 Reverse Engineering │ │ │ ├── Readme.txt │ │ │ └── SampleClient.cs │ │ ├── 11 Forward Engineering │ │ │ └── SampleClient.cs │ │ ├── 12 Schema Customizing │ │ │ └── readme.txt │ │ ├── 13 Migrations │ │ │ └── CreateDatabaseAtRuntime.cs │ │ ├── 14 LINQ │ │ │ ├── EFC_LINQ_CheatSheet.cs │ │ │ ├── FlightManager (RepositoryPattern).cs │ │ │ ├── Queries.cs │ │ │ └── SimpleQueries.cs │ │ ├── 15 Relations │ │ │ ├── LoadingStrategies.cs │ │ │ └── RelationshipFixupDemo.cs │ │ ├── 16 CUD │ │ │ ├── ChangeTrackerDemos.cs │ │ │ ├── ContradictoryRelationships.cs │ │ │ ├── FieldMapping.cs │ │ │ ├── RelationChange.cs │ │ │ ├── Transactions.cs │ │ │ └── Updates.cs │ │ ├── 17 Concurrency │ │ │ ├── Conflicts.cs │ │ │ ├── ReadLock.cs │ │ │ └── Timestamps.cs │ │ ├── 18 Logging │ │ │ └── Logging.cs │ │ ├── 19 Async │ │ │ └── AsyncOperations.cs │ │ ├── 20 DynamicLINQ │ │ │ └── QueriesDynamic.cs │ │ ├── 21 SQL SP TVF │ │ │ └── SQLSPTVF.cs │ │ ├── 22 Mapping Tips │ │ │ ├── AttachedVsDetachedObjects.cs │ │ │ ├── CalculatedColumns.cs │ │ │ ├── DatabaseViews.cs │ │ │ ├── Readme.txt │ │ │ ├── ShadowState.cs │ │ │ └── Threading.cs │ │ ├── 23 LINQ Tips │ │ │ ├── EFC2_GlobalFilter.cs │ │ │ └── EFPlus_Demo.cs │ │ ├── 24 Tuning │ │ │ ├── BulkOperations.cs │ │ │ ├── Caching.cs │ │ │ ├── ForeignKeyAssociations.cs │ │ │ └── TrackingModes.cs │ │ ├── 25 Architecture │ │ │ └── readme.txt │ │ ├── 26 Tools │ │ │ └── Readme.txt │ │ ├── 27 Components │ │ │ ├── AutoMapper │ │ │ │ ├── Advanced │ │ │ │ │ ├── AutoMapperAdvanced.cs │ │ │ │ │ ├── AutoMapper_Misc.cs │ │ │ │ │ └── BOandDTOClasses.cs │ │ │ │ ├── AutoMapperSpeedTest.cs │ │ │ │ ├── Basics │ │ │ │ │ ├── AutoMapperProfile1.cs │ │ │ │ │ ├── AutoMapperProfile2.cs │ │ │ │ │ ├── AutoMapper_HelloWorld.cs │ │ │ │ │ ├── AutomapperBasics.cs │ │ │ │ │ ├── NoNamingConvention.cs │ │ │ │ │ ├── PilotStringConverter.cs │ │ │ │ │ └── SmokerInfoResolver.cs │ │ │ │ └── ViewModels │ │ │ │ │ ├── DTO.cs │ │ │ │ │ ├── EntityClasses.cd │ │ │ │ │ ├── ViewModels.cd │ │ │ │ │ └── ViewModels.cs │ │ │ └── OOM │ │ │ │ ├── ObjectExtensions.cs │ │ │ │ └── ReflectionMapping.cs │ │ ├── 28 Solutions │ │ │ └── readme.txt │ │ ├── 99 Additional Samples │ │ │ ├── ConnectionManagement.cs │ │ │ ├── ContextEvents.cs │ │ │ ├── Conventions.cs │ │ │ ├── DeleteCascading.cs │ │ │ ├── Demo_CachingRelFixup.cs │ │ │ ├── FirstLevelCache.cs │ │ │ ├── Graph.cs │ │ │ ├── PerformanceMeasurement.cs │ │ │ ├── RelationshipFixup.cs │ │ │ └── TimestampQuery.cs │ │ ├── App.config │ │ ├── EFC_Console.csproj │ │ ├── EFC_Console.csproj.vspscc │ │ ├── GlobalSuppressions.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Util │ │ │ ├── CodeSampleAnnotations.cs │ │ │ ├── DataGenerator.cs │ │ │ └── DemoUtil.cs │ │ └── packages.config │ ├── EFC_Console_Step1 │ │ ├── EFC_Console_Step1.csproj │ │ ├── EFC_Console_Step1.csproj.vspscc │ │ ├── Program.cs │ │ └── SampleClient.cs │ ├── EFC_DA │ │ ├── ConfigureServices.cs │ │ ├── CustomMigrationSamples │ │ │ ├── NewColumn.cs │ │ │ ├── NewColumn.designer.cs │ │ │ ├── cardinality change 11 to 1N.cs │ │ │ └── cardinality change 11 to 1N.designer.cs │ │ ├── EFC_DA.csproj │ │ ├── EFC_DA.csproj.user │ │ ├── EFC_DA.csproj.vspscc │ │ ├── FlightETC.cs │ │ ├── Migrations │ │ │ ├── 20171222143004_v1.Designer.cs │ │ │ ├── 20171222143004_v1.cs │ │ │ ├── 20171222143222_v2.Designer.cs │ │ │ ├── 20171222143222_v2.cs │ │ │ ├── 20171222144945_v3.Designer.cs │ │ │ ├── 20171222144945_v3.cs │ │ │ ├── 20171222203422_v3.Designer.cs │ │ │ ├── 20171222203422_v3.cs │ │ │ ├── 20171222203738_v3.Designer.cs │ │ │ ├── 20171222203738_v3.cs │ │ │ ├── 20171223003137_v4.Designer.cs │ │ │ ├── 20171223003137_v4.cs │ │ │ ├── 20171223003202_v4.Designer.cs │ │ │ ├── 20171223003202_v4.cs │ │ │ ├── 20171223003540_v5.Designer.cs │ │ │ ├── 20171223003540_v5.cs │ │ │ ├── 20171223003638_v6.Designer.cs │ │ │ ├── 20171223003638_v6.cs │ │ │ ├── 20171223071115_v7.Designer.cs │ │ │ ├── 20171223071115_v7.cs │ │ │ ├── 20171223071131_v7.Designer.cs │ │ │ ├── 20171223071131_v7.cs │ │ │ ├── 20171230085628_v8.Designer.cs │ │ │ ├── 20171230085628_v8.cs │ │ │ ├── 20171230085758_v8.Designer.cs │ │ │ ├── 20171230085758_v8.cs │ │ │ └── WWWingsContextModelSnapshot.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Readme.txt │ │ ├── WWWingsContext.cs │ │ ├── app.config │ │ └── packages.config │ ├── EFC_DA_Step1 │ │ ├── EFC_DA_Step1.csproj │ │ ├── EFC_DA_Step1.csproj.vspscc │ │ └── WWWingsContext.cs │ ├── EFC_EntityDeveloper │ │ ├── EFC_EntityDeveloper.csproj │ │ ├── EFC_EntityDeveloper.csproj.vspscc │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── WWWingsV1.Airport.cs │ │ ├── WWWingsV1.AllBookings.cs │ │ ├── WWWingsV1.AllEmployees.cs │ │ ├── WWWingsV1.AllPassengers.cs │ │ ├── WWWingsV1.CountFlightByDepartureResult.cs │ │ ├── WWWingsV1.Diagram1.view │ │ ├── WWWingsV1.Employee.cs │ │ ├── WWWingsV1.Flight.cs │ │ ├── WWWingsV1.FlightPassenger.cs │ │ ├── WWWingsV1.FlightsFromRome.cs │ │ ├── WWWingsV1.GetDepartureeResult.cs │ │ ├── WWWingsV1.GetFlightAnzahlResult.cs │ │ ├── WWWingsV1.GetFlightsAndTotalCountResult.cs │ │ ├── WWWingsV1.InsertFlightResult.cs │ │ ├── WWWingsV1.Passenger.cs │ │ ├── WWWingsV1.Person.cs │ │ ├── WWWingsV1.Pilot.cs │ │ ├── WWWingsV1.UpdateFlightResult.cs │ │ ├── WWWingsV1.WWWingsV1Model.cs │ │ ├── WWWingsV1.edps │ │ ├── WWWingsV1.efml │ │ ├── WWWingsV1.info │ │ ├── app.config │ │ └── packages.config │ ├── EFC_GUI │ │ ├── App.config │ │ ├── EFC_GUI.csproj │ │ ├── EFC_GUI.csproj.vspscc │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── DataSources │ │ │ │ └── GO.Flug.datasource │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── WPF │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── FlightGridNoTracking.xaml │ │ │ ├── FlightGridNoTracking.xaml.cs │ │ │ ├── MainWindow.xaml │ │ │ └── MainWindow.xaml.cs │ │ ├── WindowsForms │ │ │ ├── FlugPassagierMasterDetail.Designer.cs │ │ │ ├── FlugPassagierMasterDetail.cs │ │ │ └── FlugPassagierMasterDetail.resx │ │ ├── main.cs │ │ ├── packages.config │ │ └── worlwidewings.ico │ ├── EFC_PowerTools │ │ ├── AircraftType.cs │ │ ├── AircraftTypeDetail.cs │ │ ├── Airline.cs │ │ ├── Booking.cs │ │ ├── CodeTemplates │ │ │ ├── CSharpDbContext │ │ │ │ ├── DbContext.hbs │ │ │ │ └── Partials │ │ │ │ │ ├── DbImports.hbs │ │ │ │ │ └── DbSets.hbs │ │ │ └── CSharpEntityType │ │ │ │ ├── Class.hbs │ │ │ │ └── Partials │ │ │ │ ├── Constructor.hbs │ │ │ │ ├── Imports.hbs │ │ │ │ └── Properties.hbs │ │ ├── EFC_PowerTools.csproj │ │ ├── EFC_PowerTools.csproj.user │ │ ├── EFC_PowerTools.csproj.vspscc │ │ ├── Employee.cs │ │ ├── Flight.cs │ │ ├── Passenger.cs │ │ ├── Persondetail.cs │ │ ├── Program.cs │ │ ├── Wwwingsv2_ENContext.cs │ │ └── Wwwingsv2_ENContext.dgml │ ├── EFC_Tools │ │ ├── App.config │ │ ├── EFC_Tools.csproj │ │ ├── EFC_Tools.csproj.vspscc │ │ ├── EFC_Tools.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── EFC_WWWings.sln │ ├── EFC_WWWingsV1_Reverse(NETFX) │ │ ├── Airport.cs │ │ ├── EFC_WWWingsV1_Reverse(NETFX).csproj │ │ ├── EFC_WWWingsV1_Reverse(NETFX).csproj.vspscc │ │ ├── Employee.cs │ │ ├── Flight.cs │ │ ├── FlightPassenger.cs │ │ ├── MigrationHistory.cs │ │ ├── Passenger.cs │ │ ├── Person.cs │ │ ├── Pilot.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── WWWings1_ClassDiagram.cd │ │ ├── WWWingsV1Context.cs │ │ ├── app.config │ │ ├── packages.config │ │ └── readme.txt │ ├── EFC_WWWingsV1_Reverse(NETStandard) │ │ ├── Airport.cs │ │ ├── DataGenerator.cs │ │ ├── EFC_WWWingsV1_Reverse(NETStandard).csproj │ │ ├── EFC_WWWingsV1_Reverse(NETStandard).csproj.user │ │ ├── EFC_WWWingsV1_Reverse(NETStandard).csproj.vspscc │ │ ├── Employee.cs │ │ ├── Flight.cs │ │ ├── FlightPassenger.cs │ │ ├── Metadaten.cs │ │ ├── MigrationHistory.cs │ │ ├── Passenger.cs │ │ ├── Person.cs │ │ ├── Pilot.cs │ │ ├── Protokoll.cs │ │ ├── Test.cs │ │ ├── WWWingsV1Context.cs │ │ └── readme.txt │ ├── EntityDeveloper │ │ ├── EFC_EntityDeveloper_ModelFirst.Diagram1.view │ │ ├── EFC_EntityDeveloper_ModelFirst.Model.cs │ │ ├── EFC_EntityDeveloper_ModelFirst.Person.cs │ │ ├── EFC_EntityDeveloper_ModelFirst.edps │ │ └── EFC_EntityDeveloper_ModelFirst.efml │ ├── LINQPad │ │ ├── CS_Class.linq │ │ ├── CS_Expression.linq │ │ ├── CS_Statement.linq │ │ └── EFC_LINQ_FlightsWithPilots.linq │ ├── Lib │ │ └── ITV_DemoUtil.dll │ ├── SQL │ │ ├── WWWingsV1.sql │ │ ├── WWWingsV2.sql │ │ ├── WWWingsV2_CreateSP.sql │ │ ├── WWWingsV2_CreateTVF.sql │ │ ├── WWWingsV2_CreateView.sql │ │ └── WWWingsV2_ExtraColumns.sql │ ├── nuget.config │ ├── packages │ │ └── NETStandard.Library.2.0.0-preview1-25301-01 │ │ │ ├── NETStandard.Library.2.0.0-preview1-25301-01.nupkg │ │ │ ├── ThirdPartyNotices.txt │ │ │ ├── build │ │ │ ├── NETStandard.Library.targets │ │ │ └── netstandard2.0 │ │ │ │ ├── NETStandard.Library.targets │ │ │ │ └── ref │ │ │ │ ├── Microsoft.Win32.Primitives.dll │ │ │ │ ├── System.AppContext.dll │ │ │ │ ├── System.Collections.Concurrent.dll │ │ │ │ ├── System.Collections.NonGeneric.dll │ │ │ │ ├── System.Collections.Specialized.dll │ │ │ │ ├── System.Collections.dll │ │ │ │ ├── System.ComponentModel.Composition.dll │ │ │ │ ├── System.ComponentModel.EventBasedAsync.dll │ │ │ │ ├── System.ComponentModel.Primitives.dll │ │ │ │ ├── System.ComponentModel.TypeConverter.dll │ │ │ │ ├── System.ComponentModel.dll │ │ │ │ ├── System.Console.dll │ │ │ │ ├── System.Core.dll │ │ │ │ ├── System.Data.Common.dll │ │ │ │ ├── System.Data.dll │ │ │ │ ├── System.Diagnostics.Contracts.dll │ │ │ │ ├── System.Diagnostics.Debug.dll │ │ │ │ ├── System.Diagnostics.FileVersionInfo.dll │ │ │ │ ├── System.Diagnostics.Process.dll │ │ │ │ ├── System.Diagnostics.StackTrace.dll │ │ │ │ ├── System.Diagnostics.TextWriterTraceListener.dll │ │ │ │ ├── System.Diagnostics.Tools.dll │ │ │ │ ├── System.Diagnostics.TraceSource.dll │ │ │ │ ├── System.Diagnostics.Tracing.dll │ │ │ │ ├── System.Drawing.Primitives.dll │ │ │ │ ├── System.Drawing.dll │ │ │ │ ├── System.Dynamic.Runtime.dll │ │ │ │ ├── System.Globalization.Calendars.dll │ │ │ │ ├── System.Globalization.Extensions.dll │ │ │ │ ├── System.Globalization.dll │ │ │ │ ├── System.IO.Compression.FileSystem.dll │ │ │ │ ├── System.IO.Compression.ZipFile.dll │ │ │ │ ├── System.IO.Compression.dll │ │ │ │ ├── System.IO.FileSystem.DriveInfo.dll │ │ │ │ ├── System.IO.FileSystem.Primitives.dll │ │ │ │ ├── System.IO.FileSystem.Watcher.dll │ │ │ │ ├── System.IO.FileSystem.dll │ │ │ │ ├── System.IO.IsolatedStorage.dll │ │ │ │ ├── System.IO.MemoryMappedFiles.dll │ │ │ │ ├── System.IO.Pipes.dll │ │ │ │ ├── System.IO.UnmanagedMemoryStream.dll │ │ │ │ ├── System.IO.dll │ │ │ │ ├── System.Linq.Expressions.dll │ │ │ │ ├── System.Linq.Parallel.dll │ │ │ │ ├── System.Linq.Queryable.dll │ │ │ │ ├── System.Linq.dll │ │ │ │ ├── System.Net.Http.dll │ │ │ │ ├── System.Net.NameResolution.dll │ │ │ │ ├── System.Net.NetworkInformation.dll │ │ │ │ ├── System.Net.Ping.dll │ │ │ │ ├── System.Net.Primitives.dll │ │ │ │ ├── System.Net.Requests.dll │ │ │ │ ├── System.Net.Security.dll │ │ │ │ ├── System.Net.Sockets.dll │ │ │ │ ├── System.Net.WebHeaderCollection.dll │ │ │ │ ├── System.Net.WebSockets.Client.dll │ │ │ │ ├── System.Net.WebSockets.dll │ │ │ │ ├── System.Net.dll │ │ │ │ ├── System.Numerics.dll │ │ │ │ ├── System.ObjectModel.dll │ │ │ │ ├── System.Reflection.Extensions.dll │ │ │ │ ├── System.Reflection.Primitives.dll │ │ │ │ ├── System.Reflection.dll │ │ │ │ ├── System.Resources.Reader.dll │ │ │ │ ├── System.Resources.ResourceManager.dll │ │ │ │ ├── System.Resources.Writer.dll │ │ │ │ ├── System.Runtime.CompilerServices.VisualC.dll │ │ │ │ ├── System.Runtime.Extensions.dll │ │ │ │ ├── System.Runtime.Handles.dll │ │ │ │ ├── System.Runtime.InteropServices.RuntimeInformation.dll │ │ │ │ ├── System.Runtime.InteropServices.dll │ │ │ │ ├── System.Runtime.Numerics.dll │ │ │ │ ├── System.Runtime.Serialization.Formatters.dll │ │ │ │ ├── System.Runtime.Serialization.Json.dll │ │ │ │ ├── System.Runtime.Serialization.Primitives.dll │ │ │ │ ├── System.Runtime.Serialization.Xml.dll │ │ │ │ ├── System.Runtime.Serialization.dll │ │ │ │ ├── System.Runtime.dll │ │ │ │ ├── System.Security.Claims.dll │ │ │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ │ │ ├── System.Security.Cryptography.Csp.dll │ │ │ │ ├── System.Security.Cryptography.Encoding.dll │ │ │ │ ├── System.Security.Cryptography.Primitives.dll │ │ │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ │ │ ├── System.Security.Principal.dll │ │ │ │ ├── System.Security.SecureString.dll │ │ │ │ ├── System.ServiceModel.Web.dll │ │ │ │ ├── System.Text.Encoding.Extensions.dll │ │ │ │ ├── System.Text.Encoding.dll │ │ │ │ ├── System.Text.RegularExpressions.dll │ │ │ │ ├── System.Threading.Overlapped.dll │ │ │ │ ├── System.Threading.Tasks.Parallel.dll │ │ │ │ ├── System.Threading.Tasks.dll │ │ │ │ ├── System.Threading.Thread.dll │ │ │ │ ├── System.Threading.ThreadPool.dll │ │ │ │ ├── System.Threading.Timer.dll │ │ │ │ ├── System.Threading.dll │ │ │ │ ├── System.Transactions.dll │ │ │ │ ├── System.ValueTuple.dll │ │ │ │ ├── System.Web.dll │ │ │ │ ├── System.Windows.dll │ │ │ │ ├── System.Xml.Linq.dll │ │ │ │ ├── System.Xml.ReaderWriter.dll │ │ │ │ ├── System.Xml.Serialization.dll │ │ │ │ ├── System.Xml.XDocument.dll │ │ │ │ ├── System.Xml.XPath.XDocument.dll │ │ │ │ ├── System.Xml.XPath.dll │ │ │ │ ├── System.Xml.XmlDocument.dll │ │ │ │ ├── System.Xml.XmlSerializer.dll │ │ │ │ ├── System.Xml.dll │ │ │ │ ├── System.dll │ │ │ │ ├── mscorlib.dll │ │ │ │ └── netstandard.dll │ │ │ ├── dotnet_library_license.txt │ │ │ └── lib │ │ │ └── netstandard1.0 │ │ │ └── _._ │ └── readme.txt └── readme.txt ├── LICENSE.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484235515.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/9781484235515.jpg -------------------------------------------------------------------------------- /Appendix_C.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/Appendix_C.pdf -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/Contributing.md -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_CountryBorders/EFC_CodeFirst_NMSelf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_CountryBorders/EFC_CodeFirst_NMSelf.sln -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/App.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/EFC_CodeFirst_NMSelf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/EFC_CodeFirst_NMSelf.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/MigrateToEFC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/MigrateToEFC.ps1 -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/Modell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/Modell.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_CountryBorders/EF_CodeFirst_NMSelf/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/DAL/DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/DAL/DAL.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/DAL/DAL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/DAL/DAL.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/DAL/EFContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/DAL/EFContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/DAL/EntityClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/DAL/EntityClasses.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP.sln -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/App.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/App.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/MiracleListLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/MiracleListLogo.jpg -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Assets/StoreLogo.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/EFC_UWP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/EFC_UWP.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/EFC_UWP.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/EFC_UWP.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/EntityClasses.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/EntityClasses.cd -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/MainPage.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/MainPage.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Package.appxmanifest -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/Properties/Default.rd.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/app.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_SQLite/project.json -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_Test/EFC_UWP_Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_Test/EFC_UWP_Test.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_Test/EFC_UWP_Test.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_Test/EFC_UWP_Test.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_Test/UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_Test/UnitTests.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/EFC_UWP_Test/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/StartWindowsAppDriver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/StartWindowsAppDriver.ps1 -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_UWP/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_UWP/readme.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/.tfsignore: -------------------------------------------------------------------------------- 1 | \packages -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/DAL/DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/DAL/DAL.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/DAL/DAL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/DAL/DAL.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/DAL/EFContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/DAL/EFContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/DAL/IEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/DAL/IEnv.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin.sln -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.Android/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.Android/Env.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/App.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/App.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/Env.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Env.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Info.plist -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Main.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/GO/BO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/GO/BO.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/GO/BO.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/GO/BO.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/GO/EntityClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/GO/EntityClasses.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/NuGet.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/App.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/App.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/GradientView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/GradientView.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/MainPage.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/MainPage.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/UI.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/UI.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/UI.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/MiracleListLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/MiracleListLogo.jpg -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/StoreLogo.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_MiracleList_Xamarin/UI/assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/.tfignore: -------------------------------------------------------------------------------- 1 | \packages -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/AlternateKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/AlternateKeys.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/App.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/AutoIncrement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/AutoIncrement.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/ColumnTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/ColumnTypes.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/GuidPK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/GuidPK.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/Sequences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/Sequences.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/TableSplitting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/TableSplitting.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/_Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/_Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/AdditionalSamples/EFC_MappingTest/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/AdditionalSamples/Readme_AdditionalSamples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/AdditionalSamples/Readme_AdditionalSamples.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BL/DataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BL/DataGenerator.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BL/EFC_BL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BL/EFC_BL.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BL/EFC_BL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BL/EFC_BL.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BL/FlightManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BL/FlightManager.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BL/FlightManagerSimple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BL/FlightManagerSimple.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BL/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BL/app.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BL/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/AircraftType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/AircraftType.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/AircraftTypeDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/AircraftTypeDetail.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Airline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Airline.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Annotations/ConcurrencyNoCheckAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Annotations/ConcurrencyNoCheckAttribute.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Booking.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Diagrams/WWWingsV1_ClassDiagramm.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Diagrams/WWWingsV2_ClassDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Diagrams/WWWingsV2_ClassDiagram.cd -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/EFC_BO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/EFC_BO.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/EFC_BO.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/EFC_BO.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Person.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Persondetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Persondetail.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Pilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Pilot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/QueryTypes/DepartureGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/QueryTypes/DepartureGroup.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/QueryTypes/FlightDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/QueryTypes/FlightDTO.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO/_PseudoEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO/_PseudoEntities.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Booking.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Class1.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/EFC_BO_Step1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/EFC_BO_Step1.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/EFC_BO_Step1.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/EFC_BO_Step1.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Person.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Pilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_BO_Step1/Pilot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/10 Reverse Engineering/Readme.txt: -------------------------------------------------------------------------------- 1 | see also: solution folder "10 Reverse Engineering" -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/10 Reverse Engineering/SampleClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/10 Reverse Engineering/SampleClient.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/11 Forward Engineering/SampleClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/11 Forward Engineering/SampleClient.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/12 Schema Customizing/readme.txt: -------------------------------------------------------------------------------- 1 | Sample code of this chapter: See Projects "GO" and "DZ". -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/14 LINQ/EFC_LINQ_CheatSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/14 LINQ/EFC_LINQ_CheatSheet.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/14 LINQ/Queries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/14 LINQ/Queries.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/14 LINQ/SimpleQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/14 LINQ/SimpleQueries.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/15 Relations/LoadingStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/15 Relations/LoadingStrategies.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/15 Relations/RelationshipFixupDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/15 Relations/RelationshipFixupDemo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/ChangeTrackerDemos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/ChangeTrackerDemos.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/ContradictoryRelationships.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/ContradictoryRelationships.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/FieldMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/FieldMapping.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/RelationChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/RelationChange.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/Transactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/Transactions.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/Updates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/16 CUD/Updates.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/17 Concurrency/Conflicts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/17 Concurrency/Conflicts.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/17 Concurrency/ReadLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/17 Concurrency/ReadLock.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/17 Concurrency/Timestamps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/17 Concurrency/Timestamps.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/18 Logging/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/18 Logging/Logging.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/19 Async/AsyncOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/19 Async/AsyncOperations.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/20 DynamicLINQ/QueriesDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/20 DynamicLINQ/QueriesDynamic.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/21 SQL SP TVF/SQLSPTVF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/21 SQL SP TVF/SQLSPTVF.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/CalculatedColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/CalculatedColumns.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/DatabaseViews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/DatabaseViews.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/Readme.txt: -------------------------------------------------------------------------------- 1 | see also: solution folder "22 Mapping Tips" -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/ShadowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/ShadowState.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/Threading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/Threading.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/ValueConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/22 Mapping Tips/ValueConverters.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/23 LINQ Tips/EFC2_GlobalFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/23 LINQ Tips/EFC2_GlobalFilter.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/23 LINQ Tips/EFPlus_Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/23 LINQ Tips/EFPlus_Demo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/24 Tuning/BulkOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/24 Tuning/BulkOperations.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/24 Tuning/Caching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/24 Tuning/Caching.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/24 Tuning/ForeignKeyAssociations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/24 Tuning/ForeignKeyAssociations.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/24 Tuning/TrackingModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/24 Tuning/TrackingModes.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/25 Architecture/readme.txt: -------------------------------------------------------------------------------- 1 | There is no sample code in this chapter. -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/26 Tools/Readme.txt: -------------------------------------------------------------------------------- 1 | see also: solution folder "26 Tools" -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/27 Components/OOM/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/27 Components/OOM/ObjectExtensions.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/27 Components/OOM/ReflectionMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/27 Components/OOM/ReflectionMapping.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/28 Solutions/readme.txt: -------------------------------------------------------------------------------- 1 | Sample Code: see other Visual Studio solutions folders -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/99 Additional Samples/ContextEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/99 Additional Samples/ContextEvents.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/99 Additional Samples/Conventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/99 Additional Samples/Conventions.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/99 Additional Samples/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/99 Additional Samples/Graph.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/99 Additional Samples/TimestampQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/99 Additional Samples/TimestampQuery.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/AddedColumnsConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/AddedColumnsConfig.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/App.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/EFC_Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/EFC_Console.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/EFC_Console.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/EFC_Console.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/GlobalSuppressions.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/LiveCoding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/LiveCoding.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/Util/CodeSampleAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/Util/CodeSampleAnnotations.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/Util/DemoUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/Util/DemoUtil.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/AutoMapper.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/AutoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/AutoMapper.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/Castle.Core.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/Castle.Core.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_BL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_BL.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_BL.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_BL.dll.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_BL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_BL.pdb -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_BO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_BO.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_BO.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_BO.pdb -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_Console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_Console.exe -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_Console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_Console.pdb -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_DA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_DA.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_DA.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_DA.dll.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_DA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/EFC_DA.pdb -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/ITV_DemoUtil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/ITV_DemoUtil.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/Remotion.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/Remotion.Linq.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/Remotion.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/Remotion.Linq.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/System.Buffers.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/System.Buffers.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/System.Memory.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/System.Memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy (2)/System.Memory.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/AddedColumnsConfig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/AddedColumnsConfig.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/AutoMapper.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/AutoMapper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/AutoMapper.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/CacheManager.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/CacheManager.Core.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/CacheManager.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/CacheManager.Core.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Castle.Core.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Castle.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Castle.Core.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_BL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_BL.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_BL.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_BL.dll.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_BL.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_BL.pdb -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_BO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_BO.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_BO.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_BO.pdb -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_Console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_Console.exe -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_Console.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_Console.exe.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_Console.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_Console.pdb -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_DA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_DA.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_DA.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_DA.dll.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_DA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/EFC_DA.pdb -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/ITV_DemoUtil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/ITV_DemoUtil.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Remotion.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Remotion.Linq.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Remotion.Linq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/Remotion.Linq.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Buffers.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Buffers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Buffers.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Data.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Data.Common.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Memory.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Memory.xml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Net.Http.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Net.Sockets.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/bin/Debug - Copy/System.Net.Sockets.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console_Step1/EFC_Console_Step1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console_Step1/EFC_Console_Step1.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console_Step1/EFC_Console_Step1.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console_Step1/EFC_Console_Step1.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console_Step1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console_Step1/Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Console_Step1/SampleClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Console_Step1/SampleClient.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/ConfigureServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/ConfigureServices.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/CustomMigrationSamples/NewColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/CustomMigrationSamples/NewColumn.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/CustomMigrationSamples/NewColumn.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/CustomMigrationSamples/NewColumn.designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/EFC_DA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/EFC_DA.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/EFC_DA.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/EFC_DA.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/FlightETC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/FlightETC.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20160905090511_v3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20160905090511_v3.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20160905090511_v3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20160905090511_v3.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180318091852_v1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180318091852_v1.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180318091852_v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180318091852_v1.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180318091944_v2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180318091944_v2.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180318091944_v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180318091944_v2.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180320091812_v3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180320091812_v3.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180320091812_v3.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/20180320091812_v3.designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/WWWingsContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Migrations/WWWingsContextModelSnapshot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/Readme.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/WWWingsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/WWWingsContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/app.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA_Step1/EFC_DA_Step1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA_Step1/EFC_DA_Step1.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA_Step1/EFC_DA_Step1.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA_Step1/EFC_DA_Step1.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_DA_Step1/WWWingsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_DA_Step1/WWWingsContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/EFC_EntityDeveloper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/EFC_EntityDeveloper.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Airport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Airport.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.AllBookings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.AllBookings.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.AllEmployees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.AllEmployees.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.AllPassengers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.AllPassengers.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Diagram1.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Diagram1.view -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.FlightPassenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.FlightPassenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.FlightsFromRome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.FlightsFromRome.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.InsertFlightResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.InsertFlightResult.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Person.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Pilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.Pilot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.UpdateFlightResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.UpdateFlightResult.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.WWWingsV1Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.WWWingsV1Model.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.edps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.edps -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.efml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.efml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/WWWingsV1.info: -------------------------------------------------------------------------------- 1 | Model code generation succeeded. -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/app.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_EntityDeveloper/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/App.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/EFC_GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/EFC_GUI.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/EFC_GUI.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/EFC_GUI.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/DataSources/BO.Flight.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/DataSources/BO.Flight.datasource -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/App.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/App.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/FlightGridNoTracking.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/FlightGridNoTracking.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/FlightGridNoTracking.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/FlightGridNoTracking.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/MainWindow.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/main.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_GUI/worlwidewings.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_GUI/worlwidewings.ico -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/AircraftType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/AircraftType.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/AircraftTypeDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/AircraftTypeDetail.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Airline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Airline.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Booking.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/EFC_PowerTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/EFC_PowerTools.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Persondetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Persondetail.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Wwwingsv2_ENContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Wwwingsv2_ENContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Wwwingsv2_ENContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_PowerTools/Wwwingsv2_ENContext.dgml -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Tools/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Tools/App.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Tools/DbContextExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Tools/DbContextExtension.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Tools/EFC_Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Tools/EFC_Tools.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Tools/EFC_Tools.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Tools/EFC_Tools.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Tools/EFC_Tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Tools/EFC_Tools.sln -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Tools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Tools/Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Tools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Tools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Tools/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_Tools/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_Tools/test.ps1 -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWings.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWings.sln -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Airport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Airport.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/FlightPassenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/FlightPassenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/MigrationHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/MigrationHistory.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Person.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Pilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/Pilot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/WWWingsV1Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/WWWingsV1Context.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/app.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETFX)/readme.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Airport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Airport.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/DataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/DataGenerator.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Metadaten.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Metadaten.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Person.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Pilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Pilot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Protokoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Protokoll.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/Test.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/EFC_WWWingsV1_Reverse(NETStandard)/readme.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/LINQPad/CS_Class.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/LINQPad/CS_Class.linq -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/LINQPad/CS_Expression.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/LINQPad/CS_Expression.linq -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/LINQPad/CS_Statement.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/LINQPad/CS_Statement.linq -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/LINQPad/EFC_LINQ_Flights.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/LINQPad/EFC_LINQ_Flights.linq -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/LINQPad/EFC_LINQ_FlightsWithPilots.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/LINQPad/EFC_LINQ_FlightsWithPilots.linq -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/Lib/ITV.AppUtil.NETStandard.2.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/Lib/ITV.AppUtil.NETStandard.2.2.2.nupkg -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/Lib/ITV_DemoUtil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/Lib/ITV_DemoUtil.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/SQL/WWWings66.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/SQL/WWWings66.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV1.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV2.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV2_CreateSP.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV2_CreateSP.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV2_CreateTVF.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV2_CreateTVF.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV2_CreateView.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV2_CreateView.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV2_ExtraColumns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/SQL/WWWingsV2_ExtraColumns.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/SolutionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/SolutionInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/nuget.config -------------------------------------------------------------------------------- /EFCoreBookSamples/EFC_WWWings/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFC_WWWings/readme.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/EFCoreBook_WhereDoIFindTheCodeSamples.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/EFCoreBook_WhereDoIFindTheCodeSamples.pdf -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL/EFC_DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL/EFC_DAL.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL/EFC_DAL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL/EFC_DAL.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL/EFContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL/EFContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL_PCL/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL_PCL/Class1.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL_PCL/EFC_DAL_PCL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL_PCL/EFC_DAL_PCL.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL_PCL/EFContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_DAL_PCL/EFContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite.sln -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/App.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/App.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/Assets/StoreLogo.png -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/EFC_UWP_SQLite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/EFC_UWP_SQLite.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/EFContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/EFContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/EntityClasses.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/EntityClasses.cd -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/EntityClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/EntityClasses.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/MainPage.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/MainPage.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/Package.appxmanifest -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/app.config -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/project.json -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/project.lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_UWP_SQLite/EFC_UWP_SQLite/project.lock.json -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/.tfsignore: -------------------------------------------------------------------------------- 1 | \packages -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/DAL/DAL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/DAL/DAL.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/DAL/DAL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/DAL/DAL.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/DAL/EFContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/DAL/EFContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/DAL/IEnv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/DAL/IEnv.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin.sln -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.Android/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.Android/Env.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/App.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/App.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.UWP/Env.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Env.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Env.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Info.plist -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/EFC_Xamarin/EFC_Xamarin.iOS/Main.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/GO/BO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/GO/BO.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/GO/BO.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/GO/BO.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/GO/EntityClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/GO/EntityClasses.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/NuGet.config -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/App.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/App.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/GradientView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/GradientView.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/MainPage.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/MainPage.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/UI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/UI.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/UI.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/UI.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/MiracleListLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/MiracleListLogo.jpg -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/StoreLogo.png -------------------------------------------------------------------------------- /EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/MiracleList/EFC_Xamarin/UI/assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EFC_CodeFirst_NMSelf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EFC_CodeFirst_NMSelf.sln -------------------------------------------------------------------------------- /EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EF_CodeFirst_NMSelf/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EF_CodeFirst_NMSelf/App.config -------------------------------------------------------------------------------- /EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EF_CodeFirst_NMSelf/MigrateToEFC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EF_CodeFirst_NMSelf/MigrateToEFC.ps1 -------------------------------------------------------------------------------- /EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EF_CodeFirst_NMSelf/Modell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EF_CodeFirst_NMSelf/Modell.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EF_CodeFirst_NMSelf/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EF_CodeFirst_NMSelf/Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EF_CodeFirst_NMSelf/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/Other/EFC_CodeFirst_NMSelf/EF_CodeFirst_NMSelf/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/.tfignore: -------------------------------------------------------------------------------- 1 | \packages -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/AdditionalSamples/EFC_MappingTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/AdditionalSamples/EFC_MappingTest/App.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/AdditionalSamples/EFC_MappingTest/ColumnTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/AdditionalSamples/EFC_MappingTest/ColumnTypes.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/AdditionalSamples/EFC_MappingTest/GuidPK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/AdditionalSamples/EFC_MappingTest/GuidPK.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/AdditionalSamples/EFC_MappingTest/Sequences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/AdditionalSamples/EFC_MappingTest/Sequences.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/AdditionalSamples/EFC_MappingTest/_Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/AdditionalSamples/EFC_MappingTest/_Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/AdditionalSamples/Readme_AdditionalSamples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/AdditionalSamples/Readme_AdditionalSamples.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BL/EFC_BL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BL/EFC_BL.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BL/EFC_BL.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BL/EFC_BL.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BL/FlugManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BL/FlugManager.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BL/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BL/app.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BL/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BL/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/AircraftType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/AircraftType.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/AircraftTypeDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/AircraftTypeDetail.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Airline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/Airline.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/Booking.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Diagrams/WWWingsV1_ClassDiagramm.cd: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Diagrams/WWWingsV2_ClassDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/Diagrams/WWWingsV2_ClassDiagram.cd -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/EFC_BO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/EFC_BO.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/EFC_BO.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/EFC_BO.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/Person.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Persondetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/Persondetail.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Pilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/Pilot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO/_PseudoEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO/_PseudoEntities.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Booking.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Class1.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/EFC_BO_Step1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/EFC_BO_Step1.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/EFC_BO_Step1.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/EFC_BO_Step1.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Person.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Pilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_BO_Step1/Pilot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/10 Reverse Engineering/Readme.txt: -------------------------------------------------------------------------------- 1 | see also: solution folder "10 Reverse Engineering" -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/12 Schema Customizing/readme.txt: -------------------------------------------------------------------------------- 1 | Sample code of this chapter: See Projects "GO" and "DZ". -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/14 LINQ/EFC_LINQ_CheatSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/14 LINQ/EFC_LINQ_CheatSheet.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/14 LINQ/Queries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/14 LINQ/Queries.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/14 LINQ/SimpleQueries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/14 LINQ/SimpleQueries.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/15 Relations/LoadingStrategies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/15 Relations/LoadingStrategies.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/ChangeTrackerDemos.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/ChangeTrackerDemos.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/ContradictoryRelationships.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/ContradictoryRelationships.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/FieldMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/FieldMapping.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/RelationChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/RelationChange.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/Transactions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/Transactions.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/Updates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/16 CUD/Updates.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/17 Concurrency/Conflicts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/17 Concurrency/Conflicts.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/17 Concurrency/ReadLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/17 Concurrency/ReadLock.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/17 Concurrency/Timestamps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/17 Concurrency/Timestamps.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/18 Logging/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/18 Logging/Logging.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/19 Async/AsyncOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/19 Async/AsyncOperations.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/20 DynamicLINQ/QueriesDynamic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/20 DynamicLINQ/QueriesDynamic.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/21 SQL SP TVF/SQLSPTVF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/21 SQL SP TVF/SQLSPTVF.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/22 Mapping Tips/CalculatedColumns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/22 Mapping Tips/CalculatedColumns.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/22 Mapping Tips/DatabaseViews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/22 Mapping Tips/DatabaseViews.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/22 Mapping Tips/Readme.txt: -------------------------------------------------------------------------------- 1 | see also: solution folder "22 Mapping Tips" -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/22 Mapping Tips/ShadowState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/22 Mapping Tips/ShadowState.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/22 Mapping Tips/Threading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/22 Mapping Tips/Threading.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/23 LINQ Tips/EFC2_GlobalFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/23 LINQ Tips/EFC2_GlobalFilter.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/23 LINQ Tips/EFPlus_Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/23 LINQ Tips/EFPlus_Demo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/24 Tuning/BulkOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/24 Tuning/BulkOperations.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/24 Tuning/Caching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/24 Tuning/Caching.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/24 Tuning/ForeignKeyAssociations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/24 Tuning/ForeignKeyAssociations.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/24 Tuning/TrackingModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/24 Tuning/TrackingModes.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/25 Architecture/readme.txt: -------------------------------------------------------------------------------- 1 | There is no sample code in this chapter. -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/26 Tools/Readme.txt: -------------------------------------------------------------------------------- 1 | see also: solution folder "26 Tools" -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/28 Solutions/readme.txt: -------------------------------------------------------------------------------- 1 | Sample Code: see other Visual Studio solutions folders -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/99 Additional Samples/Conventions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/99 Additional Samples/Conventions.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/99 Additional Samples/Graph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/99 Additional Samples/Graph.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/App.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/EFC_Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/EFC_Console.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/EFC_Console.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/EFC_Console.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/GlobalSuppressions.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/Util/CodeSampleAnnotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/Util/CodeSampleAnnotations.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/Util/DataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/Util/DataGenerator.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/Util/DemoUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/Util/DemoUtil.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console_Step1/EFC_Console_Step1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console_Step1/EFC_Console_Step1.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console_Step1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console_Step1/Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Console_Step1/SampleClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Console_Step1/SampleClient.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/ConfigureServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/ConfigureServices.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/CustomMigrationSamples/NewColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/CustomMigrationSamples/NewColumn.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/EFC_DA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/EFC_DA.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/EFC_DA.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/EFC_DA.csproj.user -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/EFC_DA.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/EFC_DA.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/FlightETC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/FlightETC.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222143004_v1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222143004_v1.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222143004_v1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222143004_v1.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222143222_v2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222143222_v2.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222143222_v2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222143222_v2.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222144945_v3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222144945_v3.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222144945_v3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222144945_v3.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222203422_v3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222203422_v3.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222203422_v3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222203422_v3.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222203738_v3.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222203738_v3.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222203738_v3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171222203738_v3.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003137_v4.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003137_v4.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003137_v4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003137_v4.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003202_v4.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003202_v4.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003202_v4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003202_v4.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003540_v5.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003540_v5.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003540_v5.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003540_v5.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003638_v6.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003638_v6.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003638_v6.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223003638_v6.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223071115_v7.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223071115_v7.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223071115_v7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223071115_v7.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223071131_v7.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223071131_v7.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223071131_v7.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171223071131_v7.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171230085628_v8.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171230085628_v8.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171230085628_v8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171230085628_v8.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171230085758_v8.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171230085758_v8.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171230085758_v8.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/20171230085758_v8.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/WWWingsContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Migrations/WWWingsContextModelSnapshot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/Readme.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/WWWingsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/WWWingsContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/app.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA_Step1/EFC_DA_Step1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA_Step1/EFC_DA_Step1.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA_Step1/EFC_DA_Step1.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA_Step1/EFC_DA_Step1.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_DA_Step1/WWWingsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_DA_Step1/WWWingsContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/EFC_EntityDeveloper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/EFC_EntityDeveloper.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Airport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Airport.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.AllBookings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.AllBookings.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.AllEmployees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.AllEmployees.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.AllPassengers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.AllPassengers.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Diagram1.view: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Diagram1.view -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.FlightPassenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.FlightPassenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.FlightsFromRome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.FlightsFromRome.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Person.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Pilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.Pilot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.WWWingsV1Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.WWWingsV1Model.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.edps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.edps -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.efml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.efml -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/WWWingsV1.info: -------------------------------------------------------------------------------- 1 | Model code generation succeeded. -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/app.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_EntityDeveloper/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/App.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/EFC_GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/EFC_GUI.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/EFC_GUI.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/EFC_GUI.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/Properties/Resources.resx -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/Properties/Settings.settings -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/App.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/App.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/FlightGridNoTracking.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/FlightGridNoTracking.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/FlightGridNoTracking.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/FlightGridNoTracking.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/MainWindow.xaml -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/main.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_GUI/worlwidewings.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_GUI/worlwidewings.ico -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/AircraftType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/AircraftType.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/AircraftTypeDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/AircraftTypeDetail.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Airline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Airline.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Booking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Booking.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/EFC_PowerTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/EFC_PowerTools.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/EFC_PowerTools.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/EFC_PowerTools.csproj.user -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/EFC_PowerTools.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/EFC_PowerTools.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Persondetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Persondetail.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Wwwingsv2_ENContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Wwwingsv2_ENContext.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Wwwingsv2_ENContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_PowerTools/Wwwingsv2_ENContext.dgml -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Tools/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Tools/App.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Tools/EFC_Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Tools/EFC_Tools.csproj -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Tools/EFC_Tools.csproj.vspscc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Tools/EFC_Tools.csproj.vspscc -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Tools/EFC_Tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Tools/EFC_Tools.sln -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Tools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Tools/Program.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Tools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Tools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_Tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_Tools/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWings.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWings.sln -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Airport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Airport.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/FlightPassenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/FlightPassenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/MigrationHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/MigrationHistory.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Person.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Pilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/Pilot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/WWWingsV1Context.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/WWWingsV1Context.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/app.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/packages.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETFX)/readme.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Airport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Airport.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Employee.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Flight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Flight.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Metadaten.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Metadaten.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Passenger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Passenger.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Person.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Pilot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Pilot.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Protokoll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Protokoll.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/Test.cs -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/EFC_WWWingsV1_Reverse(NETStandard)/readme.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/LINQPad/CS_Class.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/LINQPad/CS_Class.linq -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/LINQPad/CS_Expression.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/LINQPad/CS_Expression.linq -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/LINQPad/CS_Statement.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/LINQPad/CS_Statement.linq -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/LINQPad/EFC_LINQ_FlightsWithPilots.linq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/LINQPad/EFC_LINQ_FlightsWithPilots.linq -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/Lib/ITV_DemoUtil.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/Lib/ITV_DemoUtil.dll -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/SQL/WWWingsV1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/SQL/WWWingsV1.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/SQL/WWWingsV2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/SQL/WWWingsV2.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/SQL/WWWingsV2_CreateSP.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/SQL/WWWingsV2_CreateSP.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/SQL/WWWingsV2_CreateTVF.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/SQL/WWWingsV2_CreateTVF.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/SQL/WWWingsV2_CreateView.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/SQL/WWWingsV2_CreateView.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/SQL/WWWingsV2_ExtraColumns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/SQL/WWWingsV2_ExtraColumns.sql -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/nuget.config -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/packages/NETStandard.Library.2.0.0-preview1-25301-01/lib/netstandard1.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /EFCoreBookSamples/WorldwideWings/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/WorldwideWings/readme.txt -------------------------------------------------------------------------------- /EFCoreBookSamples/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/EFCoreBookSamples/readme.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/modern-data-access-w-entity-framework-core/HEAD/README.md --------------------------------------------------------------------------------