├── .gitattributes ├── .gitignore ├── CompletedSourceCode ├── Batching │ ├── App.config │ ├── Batching.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── CompiledQueries │ ├── App.config │ ├── CompiledQueries.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── ConsumingServices │ ├── App.config │ ├── ConsumingServices.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── ContextPooling │ ├── App.config │ ├── ContextPooling.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Conventions │ ├── App.config │ ├── Conventions.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── DemosCompleted.sln ├── EF.Functions │ ├── App.config │ ├── BlogService.cs │ ├── EF.Functions.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Tests.cs │ └── packages.config ├── EFCore101 │ ├── App.config │ ├── EFCore101.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── EntityFilters │ ├── App.config │ ├── EntityFilters.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── FieldMapping │ ├── App.config │ ├── FieldMapping.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── FromSql │ ├── App.config │ ├── FromSql.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── MemoryOptimizedTables │ ├── App.config │ ├── MemoryOptimizedTables.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Metadata │ ├── App.config │ ├── EF6 │ │ ├── Blog.cs │ │ ├── BloggingContext.cs │ │ └── Post.cs │ ├── EFCore │ │ ├── Blog.cs │ │ ├── BloggingContext.cs │ │ └── Post.cs │ ├── Metadata.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── NoteTaker │ ├── NoteTaker.Classic │ │ ├── App.config │ │ ├── MainForm.Designer.cs │ │ ├── MainForm.cs │ │ ├── MainForm.resx │ │ ├── NoteTaker.Classic.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── DataSources │ │ │ │ └── NoteTaker.Note.datasource │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── packages.config │ ├── NoteTaker.Modern │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── ExistingNotesPage.xaml │ │ ├── ExistingNotesPage.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NewNotePage.xaml │ │ ├── NewNotePage.xaml.cs │ │ ├── NoteTaker.Modern.csproj │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── Default.rd.xml │ │ ├── Styles │ │ │ └── Styles.xaml │ │ └── project.json │ └── NoteTaker │ │ ├── Note.cs │ │ ├── NoteContext.cs │ │ ├── NoteTaker.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── project.json ├── OwnedEntities │ ├── App.config │ ├── OwnedEntities.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Performance │ ├── App.config │ ├── EF6 │ │ ├── AWBuildVersion.cs │ │ ├── Address.cs │ │ ├── AddressType.cs │ │ ├── AdventureWorksContext.cs │ │ ├── BillOfMaterial.cs │ │ ├── BusinessEntity.cs │ │ ├── BusinessEntityAddress.cs │ │ ├── BusinessEntityContact.cs │ │ ├── ContactType.cs │ │ ├── CountryRegion.cs │ │ ├── CountryRegionCurrency.cs │ │ ├── CreditCard.cs │ │ ├── Culture.cs │ │ ├── Currency.cs │ │ ├── CurrencyRate.cs │ │ ├── Customer.cs │ │ ├── DatabaseLog.cs │ │ ├── Department.cs │ │ ├── EmailAddress.cs │ │ ├── Employee.cs │ │ ├── EmployeeDepartmentHistory.cs │ │ ├── EmployeePayHistory.cs │ │ ├── ErrorLog.cs │ │ ├── Illustration.cs │ │ ├── JobCandidate.cs │ │ ├── Location.cs │ │ ├── Password.cs │ │ ├── Person.cs │ │ ├── PersonCreditCard.cs │ │ ├── PersonPhone.cs │ │ ├── PhoneNumberType.cs │ │ ├── Product.cs │ │ ├── ProductCategory.cs │ │ ├── ProductCostHistory.cs │ │ ├── ProductDescription.cs │ │ ├── ProductDocument.cs │ │ ├── ProductInventory.cs │ │ ├── ProductListPriceHistory.cs │ │ ├── ProductModel.cs │ │ ├── ProductModelIllustration.cs │ │ ├── ProductModelProductDescriptionCulture.cs │ │ ├── ProductPhoto.cs │ │ ├── ProductProductPhoto.cs │ │ ├── ProductReview.cs │ │ ├── ProductSubcategory.cs │ │ ├── ProductVendor.cs │ │ ├── PurchaseOrderDetail.cs │ │ ├── PurchaseOrderHeader.cs │ │ ├── SalesOrderDetail.cs │ │ ├── SalesOrderHeader.cs │ │ ├── SalesOrderHeaderSalesReason.cs │ │ ├── SalesPerson.cs │ │ ├── SalesPersonQuotaHistory.cs │ │ ├── SalesReason.cs │ │ ├── SalesTaxRate.cs │ │ ├── SalesTerritory.cs │ │ ├── SalesTerritoryHistory.cs │ │ ├── ScrapReason.cs │ │ ├── Shift.cs │ │ ├── ShipMethod.cs │ │ ├── ShoppingCartItem.cs │ │ ├── SpecialOffer.cs │ │ ├── SpecialOfferProduct.cs │ │ ├── StateProvince.cs │ │ ├── Store.cs │ │ ├── TransactionHistory.cs │ │ ├── TransactionHistoryArchive.cs │ │ ├── UnitMeasure.cs │ │ ├── Vendor.cs │ │ ├── WorkOrder.cs │ │ └── WorkOrderRouting.cs │ ├── EFCore │ │ ├── AWBuildVersion.cs │ │ ├── Address.cs │ │ ├── AddressType.cs │ │ ├── AdventureWorksContext.cs │ │ ├── BillOfMaterials.cs │ │ ├── BusinessEntity.cs │ │ ├── BusinessEntityAddress.cs │ │ ├── BusinessEntityContact.cs │ │ ├── ContactType.cs │ │ ├── CountryRegion.cs │ │ ├── CountryRegionCurrency.cs │ │ ├── CreditCard.cs │ │ ├── Culture.cs │ │ ├── Currency.cs │ │ ├── CurrencyRate.cs │ │ ├── Customer.cs │ │ ├── DatabaseLog.cs │ │ ├── Department.cs │ │ ├── EmailAddress.cs │ │ ├── Employee.cs │ │ ├── EmployeeDepartmentHistory.cs │ │ ├── EmployeePayHistory.cs │ │ ├── ErrorLog.cs │ │ ├── Illustration.cs │ │ ├── JobCandidate.cs │ │ ├── Location.cs │ │ ├── Password.cs │ │ ├── Person.cs │ │ ├── PersonCreditCard.cs │ │ ├── PersonPhone.cs │ │ ├── PhoneNumberType.cs │ │ ├── Product.cs │ │ ├── ProductCategory.cs │ │ ├── ProductCostHistory.cs │ │ ├── ProductDescription.cs │ │ ├── ProductInventory.cs │ │ ├── ProductListPriceHistory.cs │ │ ├── ProductModel.cs │ │ ├── ProductModelIllustration.cs │ │ ├── ProductModelProductDescriptionCulture.cs │ │ ├── ProductPhoto.cs │ │ ├── ProductProductPhoto.cs │ │ ├── ProductReview.cs │ │ ├── ProductSubcategory.cs │ │ ├── ProductVendor.cs │ │ ├── PurchaseOrderDetail.cs │ │ ├── PurchaseOrderHeader.cs │ │ ├── SalesOrderDetail.cs │ │ ├── SalesOrderHeader.cs │ │ ├── SalesOrderHeaderSalesReason.cs │ │ ├── SalesPerson.cs │ │ ├── SalesPersonQuotaHistory.cs │ │ ├── SalesReason.cs │ │ ├── SalesTaxRate.cs │ │ ├── SalesTerritory.cs │ │ ├── SalesTerritoryHistory.cs │ │ ├── ScrapReason.cs │ │ ├── Shift.cs │ │ ├── ShipMethod.cs │ │ ├── ShoppingCartItem.cs │ │ ├── SpecialOffer.cs │ │ ├── SpecialOfferProduct.cs │ │ ├── StateProvince.cs │ │ ├── Store.cs │ │ ├── TransactionHistory.cs │ │ ├── TransactionHistoryArchive.cs │ │ ├── UnitMeasure.cs │ │ ├── Vendor.cs │ │ ├── WorkOrder.cs │ │ └── WorkOrderRouting.cs │ ├── Performance.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── ReplacingServices │ ├── App.config │ ├── CustomSqlServerTypeMapper.cs │ ├── Extensions.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReplacingServices.csproj │ ├── XmlAttribute.cs │ └── packages.config └── SeedData │ ├── App.config │ ├── Hacks.cs │ ├── Migrations │ ├── 20170511013632_InitialSchema.Designer.cs │ ├── 20170511013632_InitialSchema.cs │ ├── 20170511013723_TagData.Designer.cs │ ├── 20170511013723_TagData.cs │ ├── 20170511014523_UserData.Designer.cs │ ├── 20170511014523_UserData.cs │ ├── 20170511014618_FixUserData.Designer.cs │ ├── 20170511014618_FixUserData.cs │ └── BloggingContextModelSnapshot.cs │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── SeedData.csproj │ └── packages.config ├── DemoScript.md ├── NuGet.config ├── README.md ├── SlideDeck.pptx └── StartingSourceCode ├── Batching ├── App.config ├── Batching.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── CompiledQueries ├── App.config ├── CompiledQueries.csproj ├── DemoScript.md ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── ConsumingServices ├── App.config ├── ConsumingServices.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── ContextPooling ├── App.config ├── ContextPooling.csproj ├── DemoScript.md ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Conventions ├── App.config ├── Conventions.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Demos.sln ├── EF.Functions ├── App.config ├── BlogService.cs ├── DemoScript.md ├── EF.Functions.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Tests.cs └── packages.config ├── EFCore101 ├── App.config ├── EFCore101.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── EntityFilters ├── App.config ├── DemoScript.md ├── EntityFilters.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── FieldMapping ├── App.config ├── FieldMapping.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── FromSql ├── App.config ├── FromSql.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── MemoryOptimizedTables ├── App.config ├── MemoryOptimizedTables.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Metadata ├── App.config ├── EF6 │ ├── Blog.cs │ ├── BloggingContext.cs │ └── Post.cs ├── EFCore │ ├── Blog.cs │ ├── BloggingContext.cs │ └── Post.cs ├── Metadata.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── NoteTaker ├── NoteTaker.Classic │ ├── App.config │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── NoteTaker.Classic.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── DataSources │ │ │ └── NoteTaker.Note.datasource │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config ├── NoteTaker.Modern │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── ExistingNotesPage.xaml │ ├── ExistingNotesPage.xaml.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── NewNotePage.xaml │ ├── NewNotePage.xaml.cs │ ├── NoteTaker.Modern.csproj │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Styles │ │ └── Styles.xaml │ └── project.json └── NoteTaker │ ├── Note.cs │ ├── NoteContext.cs │ ├── NoteTaker.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── project.json ├── OwnedEntities ├── App.config ├── DemoScript.md ├── OwnedEntities.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Performance ├── App.config ├── EF6 │ ├── AWBuildVersion.cs │ ├── Address.cs │ ├── AddressType.cs │ ├── AdventureWorksContext.cs │ ├── BillOfMaterial.cs │ ├── BusinessEntity.cs │ ├── BusinessEntityAddress.cs │ ├── BusinessEntityContact.cs │ ├── ContactType.cs │ ├── CountryRegion.cs │ ├── CountryRegionCurrency.cs │ ├── CreditCard.cs │ ├── Culture.cs │ ├── Currency.cs │ ├── CurrencyRate.cs │ ├── Customer.cs │ ├── DatabaseLog.cs │ ├── Department.cs │ ├── EmailAddress.cs │ ├── Employee.cs │ ├── EmployeeDepartmentHistory.cs │ ├── EmployeePayHistory.cs │ ├── ErrorLog.cs │ ├── Illustration.cs │ ├── JobCandidate.cs │ ├── Location.cs │ ├── Password.cs │ ├── Person.cs │ ├── PersonCreditCard.cs │ ├── PersonPhone.cs │ ├── PhoneNumberType.cs │ ├── Product.cs │ ├── ProductCategory.cs │ ├── ProductCostHistory.cs │ ├── ProductDescription.cs │ ├── ProductDocument.cs │ ├── ProductInventory.cs │ ├── ProductListPriceHistory.cs │ ├── ProductModel.cs │ ├── ProductModelIllustration.cs │ ├── ProductModelProductDescriptionCulture.cs │ ├── ProductPhoto.cs │ ├── ProductProductPhoto.cs │ ├── ProductReview.cs │ ├── ProductSubcategory.cs │ ├── ProductVendor.cs │ ├── PurchaseOrderDetail.cs │ ├── PurchaseOrderHeader.cs │ ├── SalesOrderDetail.cs │ ├── SalesOrderHeader.cs │ ├── SalesOrderHeaderSalesReason.cs │ ├── SalesPerson.cs │ ├── SalesPersonQuotaHistory.cs │ ├── SalesReason.cs │ ├── SalesTaxRate.cs │ ├── SalesTerritory.cs │ ├── SalesTerritoryHistory.cs │ ├── ScrapReason.cs │ ├── Shift.cs │ ├── ShipMethod.cs │ ├── ShoppingCartItem.cs │ ├── SpecialOffer.cs │ ├── SpecialOfferProduct.cs │ ├── StateProvince.cs │ ├── Store.cs │ ├── TransactionHistory.cs │ ├── TransactionHistoryArchive.cs │ ├── UnitMeasure.cs │ ├── Vendor.cs │ ├── WorkOrder.cs │ └── WorkOrderRouting.cs ├── EFCore │ ├── AWBuildVersion.cs │ ├── Address.cs │ ├── AddressType.cs │ ├── AdventureWorksContext.cs │ ├── BillOfMaterials.cs │ ├── BusinessEntity.cs │ ├── BusinessEntityAddress.cs │ ├── BusinessEntityContact.cs │ ├── ContactType.cs │ ├── CountryRegion.cs │ ├── CountryRegionCurrency.cs │ ├── CreditCard.cs │ ├── Culture.cs │ ├── Currency.cs │ ├── CurrencyRate.cs │ ├── Customer.cs │ ├── DatabaseLog.cs │ ├── Department.cs │ ├── EmailAddress.cs │ ├── Employee.cs │ ├── EmployeeDepartmentHistory.cs │ ├── EmployeePayHistory.cs │ ├── ErrorLog.cs │ ├── Illustration.cs │ ├── JobCandidate.cs │ ├── Location.cs │ ├── Password.cs │ ├── Person.cs │ ├── PersonCreditCard.cs │ ├── PersonPhone.cs │ ├── PhoneNumberType.cs │ ├── Product.cs │ ├── ProductCategory.cs │ ├── ProductCostHistory.cs │ ├── ProductDescription.cs │ ├── ProductInventory.cs │ ├── ProductListPriceHistory.cs │ ├── ProductModel.cs │ ├── ProductModelIllustration.cs │ ├── ProductModelProductDescriptionCulture.cs │ ├── ProductPhoto.cs │ ├── ProductProductPhoto.cs │ ├── ProductReview.cs │ ├── ProductSubcategory.cs │ ├── ProductVendor.cs │ ├── PurchaseOrderDetail.cs │ ├── PurchaseOrderHeader.cs │ ├── SalesOrderDetail.cs │ ├── SalesOrderHeader.cs │ ├── SalesOrderHeaderSalesReason.cs │ ├── SalesPerson.cs │ ├── SalesPersonQuotaHistory.cs │ ├── SalesReason.cs │ ├── SalesTaxRate.cs │ ├── SalesTerritory.cs │ ├── SalesTerritoryHistory.cs │ ├── ScrapReason.cs │ ├── Shift.cs │ ├── ShipMethod.cs │ ├── ShoppingCartItem.cs │ ├── SpecialOffer.cs │ ├── SpecialOfferProduct.cs │ ├── StateProvince.cs │ ├── Store.cs │ ├── TransactionHistory.cs │ ├── TransactionHistoryArchive.cs │ ├── UnitMeasure.cs │ ├── Vendor.cs │ ├── WorkOrder.cs │ └── WorkOrderRouting.cs ├── Performance.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── ReplacingServices ├── App.config ├── CustomSqlServerTypeMapper.cs ├── Extensions.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ReplacingServices.csproj ├── XmlAttribute.cs └── packages.config └── SeedData ├── App.config ├── DemoScript.md ├── Hacks.cs ├── Migrations ├── 20170511015159_InitialSchema.Designer.cs ├── 20170511015159_InitialSchema.cs └── BloggingContextModelSnapshot.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── SeedData.csproj └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/.gitignore -------------------------------------------------------------------------------- /CompletedSourceCode/Batching/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Batching/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/Batching/Batching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Batching/Batching.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/Batching/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Batching/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Batching/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Batching/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Batching/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Batching/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/CompiledQueries/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/CompiledQueries/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/CompiledQueries/CompiledQueries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/CompiledQueries/CompiledQueries.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/CompiledQueries/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/CompiledQueries/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/CompiledQueries/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/CompiledQueries/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/CompiledQueries/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/CompiledQueries/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/ConsumingServices/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ConsumingServices/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/ConsumingServices/ConsumingServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ConsumingServices/ConsumingServices.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/ConsumingServices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ConsumingServices/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/ConsumingServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ConsumingServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/ConsumingServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ConsumingServices/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/ContextPooling/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ContextPooling/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/ContextPooling/ContextPooling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ContextPooling/ContextPooling.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/ContextPooling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ContextPooling/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/ContextPooling/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ContextPooling/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/ContextPooling/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ContextPooling/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/Conventions/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Conventions/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/Conventions/Conventions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Conventions/Conventions.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/Conventions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Conventions/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Conventions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Conventions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Conventions/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Conventions/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/DemosCompleted.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/DemosCompleted.sln -------------------------------------------------------------------------------- /CompletedSourceCode/EF.Functions/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EF.Functions/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/EF.Functions/BlogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EF.Functions/BlogService.cs -------------------------------------------------------------------------------- /CompletedSourceCode/EF.Functions/EF.Functions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EF.Functions/EF.Functions.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/EF.Functions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EF.Functions/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/EF.Functions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EF.Functions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/EF.Functions/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EF.Functions/Tests.cs -------------------------------------------------------------------------------- /CompletedSourceCode/EF.Functions/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EF.Functions/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/EFCore101/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EFCore101/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/EFCore101/EFCore101.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EFCore101/EFCore101.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/EFCore101/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EFCore101/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/EFCore101/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EFCore101/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/EFCore101/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EFCore101/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/EntityFilters/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EntityFilters/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/EntityFilters/EntityFilters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EntityFilters/EntityFilters.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/EntityFilters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EntityFilters/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/EntityFilters/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EntityFilters/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/EntityFilters/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/EntityFilters/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/FieldMapping/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/FieldMapping/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/FieldMapping/FieldMapping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/FieldMapping/FieldMapping.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/FieldMapping/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/FieldMapping/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/FieldMapping/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/FieldMapping/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/FieldMapping/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/FieldMapping/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/FromSql/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/FromSql/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/FromSql/FromSql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/FromSql/FromSql.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/FromSql/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/FromSql/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/FromSql/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/FromSql/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/FromSql/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/FromSql/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/MemoryOptimizedTables/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/MemoryOptimizedTables/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/MemoryOptimizedTables/MemoryOptimizedTables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/MemoryOptimizedTables/MemoryOptimizedTables.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/MemoryOptimizedTables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/MemoryOptimizedTables/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/MemoryOptimizedTables/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/MemoryOptimizedTables/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/MemoryOptimizedTables/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/MemoryOptimizedTables/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/EF6/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/EF6/Blog.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/EF6/BloggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/EF6/BloggingContext.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/EF6/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/EF6/Post.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/EFCore/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/EFCore/Blog.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/EFCore/BloggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/EFCore/BloggingContext.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/EFCore/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/EFCore/Post.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/Metadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/Metadata.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Metadata/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Metadata/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/MainForm.Designer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/MainForm.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/MainForm.resx -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/NoteTaker.Classic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/NoteTaker.Classic.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/DataSources/NoteTaker.Note.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/DataSources/NoteTaker.Note.datasource -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/Resources.resx -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/Properties/Settings.settings -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Classic/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Classic/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/App.xaml -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/App.xaml.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/StoreLogo.png -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/ExistingNotesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/ExistingNotesPage.xaml -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/ExistingNotesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/ExistingNotesPage.xaml.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/MainPage.xaml -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/MainPage.xaml.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/NewNotePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/NewNotePage.xaml -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/NewNotePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/NewNotePage.xaml.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/NoteTaker.Modern.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/NoteTaker.Modern.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Package.appxmanifest -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Properties/Default.rd.xml -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/Styles/Styles.xaml -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker.Modern/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker.Modern/project.json -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker/Note.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker/NoteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker/NoteContext.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker/NoteTaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker/NoteTaker.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/NoteTaker/NoteTaker/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/NoteTaker/NoteTaker/project.json -------------------------------------------------------------------------------- /CompletedSourceCode/OwnedEntities/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/OwnedEntities/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/OwnedEntities/OwnedEntities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/OwnedEntities/OwnedEntities.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/OwnedEntities/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/OwnedEntities/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/OwnedEntities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/OwnedEntities/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/OwnedEntities/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/OwnedEntities/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/AWBuildVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/AWBuildVersion.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Address.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/AddressType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/AddressType.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/AdventureWorksContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/AdventureWorksContext.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/BillOfMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/BillOfMaterial.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/BusinessEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/BusinessEntity.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/BusinessEntityAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/BusinessEntityAddress.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/BusinessEntityContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/BusinessEntityContact.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ContactType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ContactType.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/CountryRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/CountryRegion.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/CountryRegionCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/CountryRegionCurrency.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/CreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/CreditCard.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Culture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Culture.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Currency.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/CurrencyRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/CurrencyRate.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Customer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/DatabaseLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/DatabaseLog.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Department.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/EmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/EmailAddress.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Employee.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/EmployeeDepartmentHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/EmployeeDepartmentHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/EmployeePayHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/EmployeePayHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ErrorLog.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Illustration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Illustration.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/JobCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/JobCandidate.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Location.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Password.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Password.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Person.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/PersonCreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/PersonCreditCard.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/PersonPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/PersonPhone.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/PhoneNumberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/PhoneNumberType.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Product.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductCategory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductCostHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductCostHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductDescription.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductDocument.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductInventory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductListPriceHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductListPriceHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductModel.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductModelIllustration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductModelIllustration.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductModelProductDescriptionCulture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductModelProductDescriptionCulture.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductPhoto.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductProductPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductProductPhoto.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductReview.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductSubcategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductSubcategory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ProductVendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ProductVendor.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/PurchaseOrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/PurchaseOrderDetail.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/PurchaseOrderHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/PurchaseOrderHeader.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SalesOrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SalesOrderDetail.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SalesOrderHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SalesOrderHeader.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SalesOrderHeaderSalesReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SalesOrderHeaderSalesReason.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SalesPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SalesPerson.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SalesPersonQuotaHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SalesPersonQuotaHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SalesReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SalesReason.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SalesTaxRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SalesTaxRate.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SalesTerritory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SalesTerritory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SalesTerritoryHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SalesTerritoryHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ScrapReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ScrapReason.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Shift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Shift.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ShipMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ShipMethod.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/ShoppingCartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/ShoppingCartItem.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SpecialOffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SpecialOffer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/SpecialOfferProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/SpecialOfferProduct.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/StateProvince.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/StateProvince.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Store.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/TransactionHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/TransactionHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/TransactionHistoryArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/TransactionHistoryArchive.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/UnitMeasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/UnitMeasure.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/Vendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/Vendor.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/WorkOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/WorkOrder.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EF6/WorkOrderRouting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EF6/WorkOrderRouting.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/AWBuildVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/AWBuildVersion.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Address.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/AddressType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/AddressType.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/AdventureWorksContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/AdventureWorksContext.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/BillOfMaterials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/BillOfMaterials.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/BusinessEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/BusinessEntity.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/BusinessEntityAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/BusinessEntityAddress.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/BusinessEntityContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/BusinessEntityContact.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ContactType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ContactType.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/CountryRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/CountryRegion.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/CountryRegionCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/CountryRegionCurrency.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/CreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/CreditCard.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Culture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Culture.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Currency.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/CurrencyRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/CurrencyRate.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Customer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/DatabaseLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/DatabaseLog.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Department.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/EmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/EmailAddress.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Employee.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/EmployeeDepartmentHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/EmployeeDepartmentHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/EmployeePayHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/EmployeePayHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ErrorLog.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Illustration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Illustration.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/JobCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/JobCandidate.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Location.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Password.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Password.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Person.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/PersonCreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/PersonCreditCard.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/PersonPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/PersonPhone.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/PhoneNumberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/PhoneNumberType.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Product.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductCategory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductCostHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductCostHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductDescription.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductInventory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductListPriceHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductListPriceHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductModel.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductModelIllustration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductModelIllustration.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductModelProductDescriptionCulture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductModelProductDescriptionCulture.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductPhoto.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductProductPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductProductPhoto.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductReview.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductSubcategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductSubcategory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ProductVendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ProductVendor.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/PurchaseOrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/PurchaseOrderDetail.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/PurchaseOrderHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/PurchaseOrderHeader.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SalesOrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SalesOrderDetail.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SalesOrderHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SalesOrderHeader.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SalesOrderHeaderSalesReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SalesOrderHeaderSalesReason.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SalesPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SalesPerson.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SalesPersonQuotaHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SalesPersonQuotaHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SalesReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SalesReason.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SalesTaxRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SalesTaxRate.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SalesTerritory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SalesTerritory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SalesTerritoryHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SalesTerritoryHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ScrapReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ScrapReason.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Shift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Shift.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ShipMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ShipMethod.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/ShoppingCartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/ShoppingCartItem.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SpecialOffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SpecialOffer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/SpecialOfferProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/SpecialOfferProduct.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/StateProvince.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/StateProvince.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Store.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/TransactionHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/TransactionHistory.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/TransactionHistoryArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/TransactionHistoryArchive.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/UnitMeasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/UnitMeasure.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/Vendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/Vendor.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/WorkOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/WorkOrder.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/EFCore/WorkOrderRouting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/EFCore/WorkOrderRouting.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/Performance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/Performance.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/Performance/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/Performance/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/ReplacingServices/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ReplacingServices/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/ReplacingServices/CustomSqlServerTypeMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ReplacingServices/CustomSqlServerTypeMapper.cs -------------------------------------------------------------------------------- /CompletedSourceCode/ReplacingServices/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ReplacingServices/Extensions.cs -------------------------------------------------------------------------------- /CompletedSourceCode/ReplacingServices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ReplacingServices/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/ReplacingServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ReplacingServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/ReplacingServices/ReplacingServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ReplacingServices/ReplacingServices.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/ReplacingServices/XmlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ReplacingServices/XmlAttribute.cs -------------------------------------------------------------------------------- /CompletedSourceCode/ReplacingServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/ReplacingServices/packages.config -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/App.config -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Hacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Hacks.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Migrations/20170511013632_InitialSchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Migrations/20170511013632_InitialSchema.Designer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Migrations/20170511013632_InitialSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Migrations/20170511013632_InitialSchema.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Migrations/20170511013723_TagData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Migrations/20170511013723_TagData.Designer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Migrations/20170511013723_TagData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Migrations/20170511013723_TagData.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Migrations/20170511014523_UserData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Migrations/20170511014523_UserData.Designer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Migrations/20170511014523_UserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Migrations/20170511014523_UserData.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Migrations/20170511014618_FixUserData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Migrations/20170511014618_FixUserData.Designer.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Migrations/20170511014618_FixUserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Migrations/20170511014618_FixUserData.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Migrations/BloggingContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Migrations/BloggingContextModelSnapshot.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Program.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/SeedData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/SeedData.csproj -------------------------------------------------------------------------------- /CompletedSourceCode/SeedData/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/CompletedSourceCode/SeedData/packages.config -------------------------------------------------------------------------------- /DemoScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/DemoScript.md -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/README.md -------------------------------------------------------------------------------- /SlideDeck.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/SlideDeck.pptx -------------------------------------------------------------------------------- /StartingSourceCode/Batching/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Batching/App.config -------------------------------------------------------------------------------- /StartingSourceCode/Batching/Batching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Batching/Batching.csproj -------------------------------------------------------------------------------- /StartingSourceCode/Batching/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Batching/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/Batching/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Batching/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/Batching/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Batching/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/CompiledQueries/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/CompiledQueries/App.config -------------------------------------------------------------------------------- /StartingSourceCode/CompiledQueries/CompiledQueries.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/CompiledQueries/CompiledQueries.csproj -------------------------------------------------------------------------------- /StartingSourceCode/CompiledQueries/DemoScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/CompiledQueries/DemoScript.md -------------------------------------------------------------------------------- /StartingSourceCode/CompiledQueries/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/CompiledQueries/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/CompiledQueries/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/CompiledQueries/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/CompiledQueries/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/CompiledQueries/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/ConsumingServices/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ConsumingServices/App.config -------------------------------------------------------------------------------- /StartingSourceCode/ConsumingServices/ConsumingServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ConsumingServices/ConsumingServices.csproj -------------------------------------------------------------------------------- /StartingSourceCode/ConsumingServices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ConsumingServices/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/ConsumingServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ConsumingServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/ConsumingServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ConsumingServices/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/ContextPooling/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ContextPooling/App.config -------------------------------------------------------------------------------- /StartingSourceCode/ContextPooling/ContextPooling.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ContextPooling/ContextPooling.csproj -------------------------------------------------------------------------------- /StartingSourceCode/ContextPooling/DemoScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ContextPooling/DemoScript.md -------------------------------------------------------------------------------- /StartingSourceCode/ContextPooling/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ContextPooling/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/ContextPooling/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ContextPooling/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/ContextPooling/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ContextPooling/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/Conventions/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Conventions/App.config -------------------------------------------------------------------------------- /StartingSourceCode/Conventions/Conventions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Conventions/Conventions.csproj -------------------------------------------------------------------------------- /StartingSourceCode/Conventions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Conventions/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/Conventions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Conventions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/Conventions/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Conventions/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/Demos.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Demos.sln -------------------------------------------------------------------------------- /StartingSourceCode/EF.Functions/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EF.Functions/App.config -------------------------------------------------------------------------------- /StartingSourceCode/EF.Functions/BlogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EF.Functions/BlogService.cs -------------------------------------------------------------------------------- /StartingSourceCode/EF.Functions/DemoScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EF.Functions/DemoScript.md -------------------------------------------------------------------------------- /StartingSourceCode/EF.Functions/EF.Functions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EF.Functions/EF.Functions.csproj -------------------------------------------------------------------------------- /StartingSourceCode/EF.Functions/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EF.Functions/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/EF.Functions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EF.Functions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/EF.Functions/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EF.Functions/Tests.cs -------------------------------------------------------------------------------- /StartingSourceCode/EF.Functions/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EF.Functions/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/EFCore101/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EFCore101/App.config -------------------------------------------------------------------------------- /StartingSourceCode/EFCore101/EFCore101.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EFCore101/EFCore101.csproj -------------------------------------------------------------------------------- /StartingSourceCode/EFCore101/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EFCore101/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/EFCore101/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EFCore101/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/EFCore101/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EFCore101/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/EntityFilters/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EntityFilters/App.config -------------------------------------------------------------------------------- /StartingSourceCode/EntityFilters/DemoScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EntityFilters/DemoScript.md -------------------------------------------------------------------------------- /StartingSourceCode/EntityFilters/EntityFilters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EntityFilters/EntityFilters.csproj -------------------------------------------------------------------------------- /StartingSourceCode/EntityFilters/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EntityFilters/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/EntityFilters/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EntityFilters/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/EntityFilters/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/EntityFilters/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/FieldMapping/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/FieldMapping/App.config -------------------------------------------------------------------------------- /StartingSourceCode/FieldMapping/FieldMapping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/FieldMapping/FieldMapping.csproj -------------------------------------------------------------------------------- /StartingSourceCode/FieldMapping/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/FieldMapping/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/FieldMapping/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/FieldMapping/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/FieldMapping/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/FieldMapping/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/FromSql/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/FromSql/App.config -------------------------------------------------------------------------------- /StartingSourceCode/FromSql/FromSql.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/FromSql/FromSql.csproj -------------------------------------------------------------------------------- /StartingSourceCode/FromSql/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/FromSql/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/FromSql/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/FromSql/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/FromSql/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/FromSql/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/MemoryOptimizedTables/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/MemoryOptimizedTables/App.config -------------------------------------------------------------------------------- /StartingSourceCode/MemoryOptimizedTables/MemoryOptimizedTables.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/MemoryOptimizedTables/MemoryOptimizedTables.csproj -------------------------------------------------------------------------------- /StartingSourceCode/MemoryOptimizedTables/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/MemoryOptimizedTables/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/MemoryOptimizedTables/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/MemoryOptimizedTables/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/MemoryOptimizedTables/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/MemoryOptimizedTables/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/App.config -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/EF6/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/EF6/Blog.cs -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/EF6/BloggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/EF6/BloggingContext.cs -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/EF6/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/EF6/Post.cs -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/EFCore/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/EFCore/Blog.cs -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/EFCore/BloggingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/EFCore/BloggingContext.cs -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/EFCore/Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/EFCore/Post.cs -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/Metadata.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/Metadata.csproj -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/Metadata/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Metadata/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/App.config -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/MainForm.Designer.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/MainForm.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/MainForm.resx -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/NoteTaker.Classic.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/NoteTaker.Classic.csproj -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/DataSources/NoteTaker.Note.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/DataSources/NoteTaker.Note.datasource -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/Resources.resx -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/Properties/Settings.settings -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Classic/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Classic/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/App.xaml -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/App.xaml.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/StoreLogo.png -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/ExistingNotesPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/ExistingNotesPage.xaml -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/ExistingNotesPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/ExistingNotesPage.xaml.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/MainPage.xaml -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/MainPage.xaml.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/NewNotePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/NewNotePage.xaml -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/NewNotePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/NewNotePage.xaml.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/NoteTaker.Modern.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/NoteTaker.Modern.csproj -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Package.appxmanifest -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Properties/Default.rd.xml -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/Styles/Styles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/Styles/Styles.xaml -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker.Modern/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker.Modern/project.json -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker/Note.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker/NoteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker/NoteContext.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker/NoteTaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker/NoteTaker.csproj -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/NoteTaker/NoteTaker/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/NoteTaker/NoteTaker/project.json -------------------------------------------------------------------------------- /StartingSourceCode/OwnedEntities/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/OwnedEntities/App.config -------------------------------------------------------------------------------- /StartingSourceCode/OwnedEntities/DemoScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/OwnedEntities/DemoScript.md -------------------------------------------------------------------------------- /StartingSourceCode/OwnedEntities/OwnedEntities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/OwnedEntities/OwnedEntities.csproj -------------------------------------------------------------------------------- /StartingSourceCode/OwnedEntities/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/OwnedEntities/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/OwnedEntities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/OwnedEntities/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/OwnedEntities/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/OwnedEntities/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/Performance/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/App.config -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/AWBuildVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/AWBuildVersion.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Address.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/AddressType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/AddressType.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/AdventureWorksContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/AdventureWorksContext.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/BillOfMaterial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/BillOfMaterial.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/BusinessEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/BusinessEntity.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/BusinessEntityAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/BusinessEntityAddress.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/BusinessEntityContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/BusinessEntityContact.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ContactType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ContactType.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/CountryRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/CountryRegion.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/CountryRegionCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/CountryRegionCurrency.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/CreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/CreditCard.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Culture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Culture.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Currency.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/CurrencyRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/CurrencyRate.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Customer.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/DatabaseLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/DatabaseLog.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Department.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/EmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/EmailAddress.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Employee.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/EmployeeDepartmentHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/EmployeeDepartmentHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/EmployeePayHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/EmployeePayHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ErrorLog.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Illustration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Illustration.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/JobCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/JobCandidate.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Location.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Password.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Password.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Person.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/PersonCreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/PersonCreditCard.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/PersonPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/PersonPhone.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/PhoneNumberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/PhoneNumberType.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Product.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductCategory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductCostHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductCostHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductDescription.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductDocument.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductInventory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductListPriceHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductListPriceHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductModel.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductModelIllustration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductModelIllustration.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductModelProductDescriptionCulture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductModelProductDescriptionCulture.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductPhoto.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductProductPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductProductPhoto.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductReview.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductSubcategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductSubcategory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ProductVendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ProductVendor.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/PurchaseOrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/PurchaseOrderDetail.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/PurchaseOrderHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/PurchaseOrderHeader.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SalesOrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SalesOrderDetail.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SalesOrderHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SalesOrderHeader.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SalesOrderHeaderSalesReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SalesOrderHeaderSalesReason.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SalesPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SalesPerson.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SalesPersonQuotaHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SalesPersonQuotaHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SalesReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SalesReason.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SalesTaxRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SalesTaxRate.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SalesTerritory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SalesTerritory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SalesTerritoryHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SalesTerritoryHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ScrapReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ScrapReason.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Shift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Shift.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ShipMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ShipMethod.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/ShoppingCartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/ShoppingCartItem.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SpecialOffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SpecialOffer.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/SpecialOfferProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/SpecialOfferProduct.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/StateProvince.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/StateProvince.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Store.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/TransactionHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/TransactionHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/TransactionHistoryArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/TransactionHistoryArchive.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/UnitMeasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/UnitMeasure.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/Vendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/Vendor.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/WorkOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/WorkOrder.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EF6/WorkOrderRouting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EF6/WorkOrderRouting.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/AWBuildVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/AWBuildVersion.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Address.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/AddressType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/AddressType.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/AdventureWorksContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/AdventureWorksContext.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/BillOfMaterials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/BillOfMaterials.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/BusinessEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/BusinessEntity.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/BusinessEntityAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/BusinessEntityAddress.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/BusinessEntityContact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/BusinessEntityContact.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ContactType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ContactType.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/CountryRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/CountryRegion.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/CountryRegionCurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/CountryRegionCurrency.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/CreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/CreditCard.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Culture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Culture.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Currency.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/CurrencyRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/CurrencyRate.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Customer.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/DatabaseLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/DatabaseLog.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Department.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Department.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/EmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/EmailAddress.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Employee.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/EmployeeDepartmentHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/EmployeeDepartmentHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/EmployeePayHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/EmployeePayHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ErrorLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ErrorLog.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Illustration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Illustration.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/JobCandidate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/JobCandidate.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Location.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Password.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Password.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Person.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/PersonCreditCard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/PersonCreditCard.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/PersonPhone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/PersonPhone.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/PhoneNumberType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/PhoneNumberType.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Product.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductCategory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductCostHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductCostHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductDescription.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductInventory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductListPriceHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductListPriceHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductModel.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductModelIllustration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductModelIllustration.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductModelProductDescriptionCulture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductModelProductDescriptionCulture.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductPhoto.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductProductPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductProductPhoto.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductReview.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductSubcategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductSubcategory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ProductVendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ProductVendor.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/PurchaseOrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/PurchaseOrderDetail.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/PurchaseOrderHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/PurchaseOrderHeader.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SalesOrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SalesOrderDetail.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SalesOrderHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SalesOrderHeader.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SalesOrderHeaderSalesReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SalesOrderHeaderSalesReason.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SalesPerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SalesPerson.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SalesPersonQuotaHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SalesPersonQuotaHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SalesReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SalesReason.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SalesTaxRate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SalesTaxRate.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SalesTerritory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SalesTerritory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SalesTerritoryHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SalesTerritoryHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ScrapReason.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ScrapReason.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Shift.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Shift.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ShipMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ShipMethod.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/ShoppingCartItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/ShoppingCartItem.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SpecialOffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SpecialOffer.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/SpecialOfferProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/SpecialOfferProduct.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/StateProvince.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/StateProvince.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Store.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Store.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/TransactionHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/TransactionHistory.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/TransactionHistoryArchive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/TransactionHistoryArchive.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/UnitMeasure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/UnitMeasure.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/Vendor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/Vendor.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/WorkOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/WorkOrder.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/EFCore/WorkOrderRouting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/EFCore/WorkOrderRouting.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/Performance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/Performance.csproj -------------------------------------------------------------------------------- /StartingSourceCode/Performance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/Performance/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/Performance/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/ReplacingServices/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ReplacingServices/App.config -------------------------------------------------------------------------------- /StartingSourceCode/ReplacingServices/CustomSqlServerTypeMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ReplacingServices/CustomSqlServerTypeMapper.cs -------------------------------------------------------------------------------- /StartingSourceCode/ReplacingServices/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ReplacingServices/Extensions.cs -------------------------------------------------------------------------------- /StartingSourceCode/ReplacingServices/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ReplacingServices/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/ReplacingServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ReplacingServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/ReplacingServices/ReplacingServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ReplacingServices/ReplacingServices.csproj -------------------------------------------------------------------------------- /StartingSourceCode/ReplacingServices/XmlAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ReplacingServices/XmlAttribute.cs -------------------------------------------------------------------------------- /StartingSourceCode/ReplacingServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/ReplacingServices/packages.config -------------------------------------------------------------------------------- /StartingSourceCode/SeedData/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/SeedData/App.config -------------------------------------------------------------------------------- /StartingSourceCode/SeedData/DemoScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/SeedData/DemoScript.md -------------------------------------------------------------------------------- /StartingSourceCode/SeedData/Hacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/SeedData/Hacks.cs -------------------------------------------------------------------------------- /StartingSourceCode/SeedData/Migrations/20170511015159_InitialSchema.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/SeedData/Migrations/20170511015159_InitialSchema.Designer.cs -------------------------------------------------------------------------------- /StartingSourceCode/SeedData/Migrations/20170511015159_InitialSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/SeedData/Migrations/20170511015159_InitialSchema.cs -------------------------------------------------------------------------------- /StartingSourceCode/SeedData/Migrations/BloggingContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/SeedData/Migrations/BloggingContextModelSnapshot.cs -------------------------------------------------------------------------------- /StartingSourceCode/SeedData/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/SeedData/Program.cs -------------------------------------------------------------------------------- /StartingSourceCode/SeedData/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/SeedData/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /StartingSourceCode/SeedData/SeedData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/SeedData/SeedData.csproj -------------------------------------------------------------------------------- /StartingSourceCode/SeedData/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rowanmiller/Demo-EFCore/HEAD/StartingSourceCode/SeedData/packages.config --------------------------------------------------------------------------------