├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE.md ├── .gitignore ├── .nuget └── nuget.exe ├── LICENSE ├── README.md ├── docs ├── LICENSE.txt ├── README.txt ├── assets │ ├── css │ │ ├── font-awesome.min.css │ │ ├── ie8.css │ │ ├── ie9.css │ │ ├── images │ │ │ └── intro.svg │ │ └── main.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── js │ │ ├── ie │ │ │ ├── html5shiv.js │ │ │ └── respond.min.js │ │ ├── jquery.min.js │ │ ├── jquery.scrollex.min.js │ │ ├── jquery.scrolly.min.js │ │ ├── main.js │ │ ├── skel.min.js │ │ └── util.js │ └── sass │ │ ├── base │ │ ├── _page.scss │ │ └── _typography.scss │ │ ├── components │ │ ├── _box.scss │ │ ├── _button.scss │ │ ├── _features.scss │ │ ├── _form.scss │ │ ├── _icon.scss │ │ ├── _image.scss │ │ ├── _list.scss │ │ ├── _section.scss │ │ ├── _split.scss │ │ ├── _spotlights.scss │ │ ├── _table.scss │ │ └── _wrapper.scss │ │ ├── ie8.scss │ │ ├── ie9.scss │ │ ├── layout │ │ ├── _footer.scss │ │ ├── _header.scss │ │ ├── _intro.scss │ │ ├── _sidebar.scss │ │ └── _wrapper.scss │ │ ├── libs │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ ├── _skel.scss │ │ └── _vars.scss │ │ └── main.scss ├── elements.html ├── generic.html ├── images │ ├── pic01.png │ ├── pic02.png │ ├── pic03.png │ ├── pic04.jpg │ ├── pic05.jpg │ └── pic06.jpg └── index.html ├── img ├── Migrations1.png ├── Migrations2.png ├── Migrations3.png ├── contextmenu.png ├── efcpoco.png ├── efcreveng0.png ├── efcreveng1.png ├── efcreveng2.png ├── efcreveng3.png ├── efcreveng4.png ├── efcreveng4small.png ├── efcreveng5.png ├── efcreveng5a.png ├── efreveng1.png ├── options.png ├── options2.png └── unicorn.png ├── src └── GUI │ ├── .editorconfig │ ├── DacFxStrongTypedCore │ ├── DacFxStrongTypedCore.csproj │ ├── Directory.Build.props │ ├── ISqlModelElement.cs │ ├── ISqlModelElementReference.cs │ ├── Interfaces.cs │ ├── Key.snk │ ├── MarkerInterfaces.cs │ ├── ModelExtensions.cs │ ├── ModelMessages.Designer.cs │ ├── ModelMessages.resx │ ├── ModelUtilityMethods.cs │ ├── TSqlModelElement.cs │ ├── TSqlModelElementReference.cs │ ├── TSqlTypedModel.cs │ ├── UnresolvedElementException.cs │ ├── Utils.cs │ ├── VersionSpecificImplementations.cs │ └── model.cs │ ├── Directory.Build.Props │ ├── EFCorePowerTools.BLL │ ├── EFCorePowerTools.BLL.csproj │ ├── ExtensionVersionService.cs │ └── Key.snk │ ├── EFCorePowerTools.Shared │ ├── BLL │ │ └── IExtensionVersionService.cs │ ├── DAL │ │ ├── IDotNetAccess.cs │ │ ├── IOperatingSystemAccess.cs │ │ └── ITelemetryAccess.cs │ ├── EFCorePowerTools.Common.csproj │ ├── Enums │ │ └── ModelingGenerationMode.cs │ ├── GlobalSuppressions.cs │ ├── Key.snk │ ├── Models │ │ ├── AboutExtensionModel.cs │ │ ├── ConfigModel.cs │ │ ├── DatabaseDefinitionModel.cs │ │ └── ModelingOptionsModel.cs │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── EFCorePowerTools.sln │ ├── EFCorePowerTools.sln.DotSettings │ ├── EFCorePowerTools │ ├── CodeTemplates.zip │ ├── CodeTemplates5.zip │ ├── CodeTemplates501.zip │ ├── CodeTemplates502.zip │ ├── CodeTemplates600.zip │ ├── DgmlBuilder │ │ └── readme.txt │ ├── Dialogs │ │ ├── AboutDialog.xaml │ │ ├── AboutDialog.xaml.cs │ │ ├── AdvancedModelingOptionsDialog.xaml │ │ ├── AdvancedModelingOptionsDialog.xaml.cs │ │ ├── CompareOptionsDialog.xaml │ │ ├── CompareOptionsDialog.xaml.cs │ │ ├── CompareResultDialog.xaml │ │ ├── CompareResultDialog.xaml.cs │ │ ├── ConnectionDialog.xaml │ │ ├── ConnectionDialog.xaml.cs │ │ ├── Converter.xaml │ │ ├── EfCoreMigrationsDialog.xaml │ │ ├── EfCoreMigrationsDialog.xaml.cs │ │ ├── EfCoreModelDialog.xaml │ │ ├── EfCoreModelDialog.xaml.cs │ │ ├── PickConfigDialog.xaml │ │ ├── PickConfigDialog.xaml.cs │ │ ├── PickSchemasDialog.xaml │ │ ├── PickSchemasDialog.xaml.cs │ │ ├── PickServerDatabaseDialog.xaml │ │ ├── PickServerDatabaseDialog.xaml.cs │ │ ├── PickTablesDialog.xaml │ │ ├── PickTablesDialog.xaml.cs │ │ └── Style.xaml │ ├── EFCorePowerTools.csproj │ ├── EFCorePowerToolsPackage.cs │ ├── EFCorePowerToolsPackage.en.vsct │ ├── EFCorePowerToolsPackage.it.vsct │ ├── EFCorePowerToolsPackage.tr.vsct │ ├── EFCorePowerToolsPackage.zh-Hans.vsct │ ├── Key.snk │ ├── Locales │ │ ├── AboutLocale.Designer.cs │ │ ├── AboutLocale.en.resx │ │ ├── AboutLocale.fr.resx │ │ ├── AboutLocale.it.resx │ │ ├── AboutLocale.resx │ │ ├── AboutLocale.tr.resx │ │ ├── AboutLocale.zh-Hans.resx │ │ ├── CompareLocale.Designer.cs │ │ ├── CompareLocale.en.resx │ │ ├── CompareLocale.fr.resx │ │ ├── CompareLocale.it.resx │ │ ├── CompareLocale.resx │ │ ├── CompareLocale.tr.resx │ │ ├── CompareLocale.zh-Hans.resx │ │ ├── DgmlLocale.Designer.cs │ │ ├── DgmlLocale.en.resx │ │ ├── DgmlLocale.fr.resx │ │ ├── DgmlLocale.it.resx │ │ ├── DgmlLocale.resx │ │ ├── DgmlLocale.tr.resx │ │ ├── DgmlLocale.zh-Hans.resx │ │ ├── MigrationsLocale.Designer.cs │ │ ├── MigrationsLocale.en.resx │ │ ├── MigrationsLocale.fr.resx │ │ ├── MigrationsLocale.it.resx │ │ ├── MigrationsLocale.resx │ │ ├── MigrationsLocale.tr.resx │ │ ├── MigrationsLocale.zh-Hans.resx │ │ ├── ModelAnalyzerLocale.Designer.cs │ │ ├── ModelAnalyzerLocale.en.resx │ │ ├── ModelAnalyzerLocale.fr.resx │ │ ├── ModelAnalyzerLocale.it.resx │ │ ├── ModelAnalyzerLocale.resx │ │ ├── ModelAnalyzerLocale.tr.resx │ │ ├── ModelAnalyzerLocale.zh-Hans.resx │ │ ├── ReverseEngineerLocale.Designer.cs │ │ ├── ReverseEngineerLocale.en.resx │ │ ├── ReverseEngineerLocale.fr.resx │ │ ├── ReverseEngineerLocale.it.resx │ │ ├── ReverseEngineerLocale.resx │ │ ├── ReverseEngineerLocale.tr.resx │ │ ├── ReverseEngineerLocale.zh-Hans.resx │ │ ├── SharedLocale.Designer.cs │ │ ├── SharedLocale.en.resx │ │ ├── SharedLocale.fr.resx │ │ ├── SharedLocale.it.resx │ │ ├── SharedLocale.resx │ │ ├── SharedLocale.tr.resx │ │ └── SharedLocale.zh-Hans.resx │ ├── PowerToolsReadMe.txt │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.en.Designer.cs │ ├── Resources.en.resx │ ├── Resources.resx │ ├── Resources │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 7.png │ │ ├── Add_16x.png │ │ ├── Cancel_16x.png │ │ ├── Column_16x.png │ │ ├── DatabaseStoredProcedure_16x.png │ │ ├── Diagram_16x.png │ │ ├── GlyphDown_16x.png │ │ ├── GlyphRight_16x.png │ │ ├── ImportPackage_16x.png │ │ ├── KeyDown_16x.png │ │ ├── Package.ico │ │ ├── Remove_16x.png │ │ ├── SQL_16x.png │ │ ├── ScalarFunction_16x.png │ │ ├── SchemaCompare_16x.png │ │ ├── Schema_16x.png │ │ ├── ScrollbarArrowsDownRight_16x.png │ │ ├── StatusInvalid_16x.png │ │ ├── TableWarning_16x.png │ │ ├── Table_16x.png │ │ ├── Unicorn.png │ │ ├── View_16x.png │ │ ├── efcreveng2.png │ │ ├── h.png │ │ ├── license.txt │ │ └── pt.png │ ├── VSPackage.en.resx │ ├── VSPackage.fr.resx │ ├── VSPackage.it.resx │ ├── VSPackage.tr.resx │ ├── VSPackage.zh-Hans.resx │ ├── app.config │ ├── db.png │ └── source.extension.vsixmanifest │ ├── ErikEJ.EntityFrameworkCore.5.DgmlBuilder │ ├── ErikEJ.EntityFrameworkCore.5.DgmlBuilder.csproj │ └── Key.snk │ ├── ErikEJ.EntityFrameworkCore.5.SqlServer.Dacpac │ ├── ErikEJ.EntityFrameworkCore.5.SqlServer.Dacpac.csproj │ └── Key.snk │ ├── ErikEJ.EntityFrameworkCore.6.DgmlBuilder │ ├── ErikEJ.EntityFrameworkCore.6.DgmlBuilder.csproj │ └── Key.snk │ ├── ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac │ ├── Design │ │ └── SqlServerDacpacDesignTimeServices.cs │ ├── ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac.csproj │ └── Key.snk │ ├── ErikEJ.EntityFrameworkCore.6.SqlServer.SqlQuery │ ├── ErikEJ.EntityFrameworkCore.6.SqlServer.SqlQuery.csproj │ └── Key.snk │ ├── ErikEJ.EntityFrameworkCore.DgmlBuilder │ ├── DebugViewParser.cs │ ├── DebugViewParserResult.cs │ ├── DgmlBuilder.cs │ ├── ErikEJ.EntityFrameworkCore.DgmlBuilder.csproj │ ├── Key.snk │ ├── ModelExtension.cs │ ├── readme.md │ └── template.dgml │ ├── ErikEJ.EntityFrameworkCore.SqlServer.Dacpac │ ├── DacpacConsolidate │ │ ├── CustomData.cs │ │ ├── DacHacFactory.cs │ │ ├── DacpacConsolidator.cs │ │ ├── DacpacMerger.cs │ │ ├── DacpacXml.cs │ │ ├── HeaderParser.cs │ │ └── Metadata.cs │ ├── Design │ │ └── SqlServerDacpacDesignTimeServices.cs │ ├── ErikEJ.EntityFrameworkCore.SqlServer.Dacpac.csproj │ ├── Key.snk │ ├── Scaffolding │ │ ├── SqlServerDacpacDatabaseModelFactory.cs │ │ ├── SqlServerDacpacDatabaseModelFactoryOptions.cs │ │ └── SqlServerDacpacStoredProcedureModelFactory.cs │ ├── SqlSharpener │ │ ├── AliasResolutionVisitor.cs │ │ ├── DataType.cs │ │ ├── DataTypeHelper.cs │ │ ├── Model │ │ │ ├── Column.cs │ │ │ ├── Procedure.cs │ │ │ ├── Select.cs │ │ │ ├── SelectColumn.cs │ │ │ └── Table.cs │ │ └── SelectVisitor.cs │ └── readme.md │ ├── ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery │ ├── DbContextExtensions.cs │ ├── ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery.csproj │ ├── Key.snk │ ├── OutputParameter.cs │ └── readme.md │ ├── NUnitTestCore │ ├── Dacpac │ │ ├── AdventureWorks2014.dacpac │ │ ├── Chinook.dacpac │ │ ├── DacpacConsolidatorTest.cs │ │ ├── DacpacTest.cs │ │ ├── Issue1262.dacpac │ │ ├── Issue208.dacpac │ │ ├── Issue210.dacpac │ │ ├── NorthwindProcedures.dacpac │ │ ├── NorthwindViews.dacpac │ │ └── TestDb.dacpac │ ├── Dgml │ │ ├── Aw2014Person.txt │ │ ├── ChinookContext.txt │ │ ├── DgmlTest.cs │ │ ├── Identity.txt │ │ ├── Issue604.txt │ │ ├── Issue687.txt │ │ ├── NoFk.txt │ │ ├── Northwind.txt │ │ ├── Pfizer.txt │ │ ├── Samurai.txt │ │ ├── SingleNav.txt │ │ └── longview50.txt │ ├── Directory.Build.props │ ├── NUnitTestCore.csproj │ ├── ReplacingCandidateNamingServiceTests.cs │ └── SqlServerTypeExtensionsTest.cs │ ├── NuGet.Config │ ├── RevEng.Core.50 │ ├── CommentCSharpEntityTypeGenerator.cs │ └── RevEng.Core.50.csproj │ ├── RevEng.Core.60 │ └── RevEng.Core.60.csproj │ ├── RevEng.Core.Abstractions │ ├── GlobalSuppressions.cs │ ├── IFunctionModelFactory.cs │ ├── IProcedureModelFactory.cs │ ├── Metadata │ │ ├── Function.cs │ │ ├── ModuleParameter.cs │ │ ├── ModuleResultElement.cs │ │ ├── Procedure.cs │ │ ├── Routine.cs │ │ ├── RoutineModel.cs │ │ └── SqlObjectBase.cs │ ├── ModuleModelFactoryOptions.cs │ ├── ModuleScaffolderOptions.cs │ ├── RevEng.Core.Abstractions.csproj │ └── key.snk │ ├── RevEng.Core │ ├── Check.cs │ ├── ColumnRemovingScaffoldingModelFactory.cs │ ├── CommentCSharpEntityTypeGenerator.cs │ ├── CustomTemplateFileService.cs │ ├── DbContextExtensions │ ├── DbContextSplitter.cs │ ├── Functions │ │ ├── IFunctionScaffolder.cs │ │ ├── NotImplementedFunctionModelFactory.cs │ │ ├── NotImplementedFunctionScaffolder.cs │ │ ├── SqlServerFunctionModelFactory.cs │ │ └── SqlServerFunctionScaffolder.cs │ ├── GlobalSuppressions.cs │ ├── HumanizerPluralizer.cs │ ├── IReverseEngineerScaffolder.cs │ ├── LegacyPluralizer.cs │ ├── Procedures │ │ ├── IProcedureScaffolder.cs │ │ ├── NotImplementedProcedureModelFactory.cs │ │ ├── NotImplementedProcedureScaffolder.cs │ │ ├── RoutineNotImplementedServiceCollectionExtensions.cs │ │ ├── SqlServerSqlTypeExtensions.cs │ │ ├── SqlServerStoredProcedureModelFactory.cs │ │ ├── SqlServerStoredProcedureScaffolder.cs │ │ └── SqlServerStoredProcedureServiceCollectionExtensions.cs │ ├── ReplacingCandidateNamingService.cs │ ├── RevEng.Core.csproj │ ├── ReverseEngineerOptionsExtensions.cs │ ├── ReverseEngineerResultExtensions.cs │ ├── ReverseEngineerRunner.cs │ ├── ReverseEngineerScaffolder.cs │ ├── Routines │ │ ├── IRoutineScaffolder.cs │ │ ├── SqlServerRoutineModelFactory.cs │ │ └── SqlServerRoutineScaffolder.cs │ ├── ServiceProviderBuilder.cs │ ├── SharedTypeExtensions.cs │ ├── SqlServerHelper.cs │ └── TableListBuilder.cs │ ├── RevEng.Shared │ ├── CodeGenerationMode.cs │ ├── ColumnModel.cs │ ├── ColumnNamer.cs │ ├── DatabaseType.cs │ ├── EFCoreReverseEngineerResult.cs │ ├── GlobalSuppressions.cs │ ├── Key.snk │ ├── ObjectType.cs │ ├── ObjectTypeExtensions.cs │ ├── PathHelper.cs │ ├── RevEng.Common.csproj │ ├── ReverseEngineerCommandOptions.cs │ ├── Schema.cs │ ├── SchemaInfo.cs │ ├── SerializationTableModel.cs │ ├── TableModel.cs │ ├── TableModelExtensions.cs │ └── TableRenamer.cs │ ├── Shared │ ├── Contracts │ │ ├── EventArgs │ │ │ └── CloseRequestedEventArgs.cs │ │ ├── ViewModels │ │ │ ├── IAboutViewModel.cs │ │ │ ├── IAdvancedModelingOptionsViewModel.cs │ │ │ ├── IColumnInformationViewModel.cs │ │ │ ├── ICompareOptionsViewModel.cs │ │ │ ├── ICompareResultViewModel.cs │ │ │ ├── IMigrationOptionsViewModel.cs │ │ │ ├── IModelingOptionsViewModel.cs │ │ │ ├── IObjectTreeEditableViewModel.cs │ │ │ ├── IObjectTreeRootItemViewModel.cs │ │ │ ├── IObjectTreeSelectableViewModel.cs │ │ │ ├── IObjectTreeViewModel.cs │ │ │ ├── IPickConfigViewModel.cs │ │ │ ├── IPickConnectionViewModel.cs │ │ │ ├── IPickSchemasViewModel.cs │ │ │ ├── IPickServerDatabaseViewModel.cs │ │ │ ├── IPickTablesViewModel.cs │ │ │ ├── ISchemaInformationViewModel.cs │ │ │ ├── ITableInformationViewModel.cs │ │ │ ├── IViewModel.cs │ │ │ ├── ObjectTypeIcon.cs │ │ │ └── SearchMode.cs │ │ └── Views │ │ │ ├── IAboutDialog.cs │ │ │ ├── IAdvancedModelingOptionsDialog.cs │ │ │ ├── ICompareOptionsDialog.cs │ │ │ ├── ICompareResultDialog.cs │ │ │ ├── IDialog.cs │ │ │ ├── IMigrationOptionsDialog.cs │ │ │ ├── IModelingOptionsDialog.cs │ │ │ ├── IPickConfigDialog.cs │ │ │ ├── IPickConnectionDialog.cs │ │ │ ├── IPickSchemasDialog.cs │ │ │ ├── IPickServerDatabaseDialog.cs │ │ │ ├── IPickTablesDialog.cs │ │ │ ├── IView.cs │ │ │ └── PickTablesDialogResult.cs │ ├── Converter │ │ ├── BoolInvertConverter.cs │ │ ├── BoolToVisibilityConverter.cs │ │ ├── CollectionCountToEnabledConverter.cs │ │ ├── CollectionCountToVisibilityConverter.cs │ │ ├── ColumnEnabledConverter.cs │ │ ├── EnumToBoolConverter.cs │ │ ├── EnumToLabelConverter.cs │ │ ├── FilePathToDisplayNameConverter.cs │ │ ├── LevelToWidthConverter.cs │ │ └── ObjectTypeToImageStyleConverter.cs │ ├── DAL │ │ ├── DotNetAccess.cs │ │ ├── ICredentialStore.cs │ │ ├── IVisualStudioAccess.cs │ │ ├── OperatingSystemAccess.cs │ │ ├── TelemetryAccess.cs │ │ └── VisualStudioAccess.cs │ ├── EFCorePowerToolsPackage.en.vsct │ ├── EFCorePowerToolsPackage.it.vsct │ ├── EFCorePowerToolsPackage.tr.vsct │ ├── EFCorePowerToolsPackage.zh-Hans.vsct │ ├── Extensions │ │ ├── CustomNameOptionsExtensions.cs │ │ ├── EnvDTEExtensions.cs │ │ ├── FocusExtensions.cs │ │ ├── PathExtensions.cs │ │ ├── ProjectExtensions.cs │ │ ├── ReverseEngineerOptionsExtensions.cs │ │ └── ZipArchiveExtensions.cs │ ├── Guids.cs │ ├── Handlers │ │ ├── AboutHandler.cs │ │ ├── Compare │ │ │ ├── CompareAttributes.cs │ │ │ ├── CompareHandler.cs │ │ │ ├── CompareLogModel.cs │ │ │ ├── CompareState.cs │ │ │ └── CompareType.cs │ │ ├── DgmlNugetHandler.cs │ │ ├── GenerationType.cs │ │ ├── MigrationsHandler.cs │ │ ├── ModelAnalyzerHandler.cs │ │ ├── ProcessLauncher.cs │ │ └── ReverseEngineer │ │ │ ├── EfRevEngLauncher.cs │ │ │ ├── NupkgExtractor.cs │ │ │ ├── ResultDeserializer.cs │ │ │ ├── ReverseEngineerCommandOptionsExtensions.cs │ │ │ ├── ReverseEngineerHandler.cs │ │ │ ├── ReverseEngineerOptions.cs │ │ │ └── TableListBuilder.cs │ ├── Helpers │ │ ├── CredentialStore.cs │ │ ├── NuGetHelper.cs │ │ ├── ReverseEngineerHelper.cs │ │ ├── Telemetry.cs │ │ ├── VSHelper.cs │ │ ├── VsDataHelper.cs │ │ └── VsTheming.cs │ ├── Messages │ │ └── ShowMessageBoxMessage.cs │ ├── Options │ │ └── AdvancedOptions.cs │ ├── PkgCmdID.cs │ ├── Resources │ │ └── Package.ico │ ├── Shared.projitems │ ├── Shared.shproj │ └── ViewModels │ │ ├── AboutViewModel.cs │ │ ├── AdvancedModelingOptionsViewModel.cs │ │ ├── ColumnInformationViewModel.cs │ │ ├── CompareLogItemViewModel.cs │ │ ├── CompareOptionsViewModel.cs │ │ ├── CompareResultViewModel.cs │ │ ├── DatabaseConnectionModel.cs │ │ ├── MigrationOptionsViewModel.cs │ │ ├── ModelingOptionsViewModel.cs │ │ ├── ObjectTreeRootItemViewModel.cs │ │ ├── ObjectTreeViewModel.cs │ │ ├── PickConfigViewModel.cs │ │ ├── PickConnectionViewModel.cs │ │ ├── PickSchemasViewModel.cs │ │ ├── PickServerDatabaseViewModel.cs │ │ ├── PickTablesViewModel.cs │ │ ├── SchemaInformationViewModel.cs │ │ └── TableInformationViewModel.cs │ ├── UnitTests │ ├── BLL │ │ ├── CredentialStoreTest.cs │ │ └── ExtensionVersionServiceTests.cs │ ├── ErrorResult.txt │ ├── Microsoft.VisualStudio.Data.Services.dll │ ├── Models │ │ ├── AboutExtensionModelTests.cs │ │ ├── DatabaseConnectionModelTests.cs │ │ ├── DatabaseDefinitionModelTests.cs │ │ └── TableIModelTest.cs │ ├── PathHelperTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ResultDeserializerTest.cs │ ├── ReverseEngineerHelperTest.cs │ ├── TableResult1.txt │ ├── TableResult2.txt │ ├── UnitTests.csproj │ └── ViewModels │ │ ├── AboutViewModelTests.cs │ │ ├── AdvancedModelingOptionsViewModelTests.cs │ │ ├── ColumnInformationViewModelTests.cs │ │ ├── ObjectTreeRootItemViewModelTests.cs │ │ ├── ObjectTreeViewModelTests.cs │ │ ├── PickSchemasViewModelTests.cs │ │ ├── PickServerDatabaseViewModelTests.cs │ │ ├── PickTablesViewModelTests.cs │ │ ├── SchemaInformationViewModelTests.cs │ │ └── TableInformationViewModelTests.cs │ ├── efpt30.core │ ├── Build30CmdlineTool.cmd │ ├── EFCoreMigrationsBuilder.cs │ ├── EFCoreMigrationsManager.cs │ ├── EFCoreModelBuilder.cs │ ├── GlobalSuppressions.cs │ ├── Program.cs │ └── efpt30.core.csproj │ ├── efpt50.core │ ├── Build50CmdlineTool.cmd │ ├── EFCoreCompareBuilder.cs │ └── efpt50.core.csproj │ ├── efpt60.core │ ├── Build60CmdlineTool.cmd │ └── efpt60.core.csproj │ ├── efreveng │ ├── BuildCmdlineTool.cmd │ ├── Program.cs │ ├── TestFiles │ │ ├── dacpaclist.txt │ │ ├── dacpactest.txt │ │ ├── efreveng.txt │ │ ├── efrevengplain.txt │ │ ├── fulltest.json │ │ ├── fulltest.txt │ │ ├── fulltestMultiResult.json │ │ ├── fulltestProceduresOnly.json │ │ ├── fulltestdac.txt │ │ ├── measure.ps1 │ │ ├── portfolio.json │ │ ├── sproc.txt │ │ ├── sqlite.txt │ │ └── tablelist.txt │ └── efreveng.csproj │ ├── efreveng50 │ ├── BuildCmdlineTool.cmd │ ├── TestFiles │ │ └── efptHandlebars.config.json │ └── efreveng50.csproj │ ├── efreveng60 │ ├── BuildCmdlineTool.cmd │ ├── TestFiles │ │ ├── DbProject.dacpac │ │ ├── dacbugtest.txt │ │ └── efptChinookM2M.json │ └── efreveng60.csproj │ └── lib │ ├── Microsoft.ApplicationInsights.dll │ ├── SqlCeToolbox.DDEX4.dll │ ├── Xceed.Wpf.Toolkit.dll │ ├── efpt30.exe.zip │ ├── efpt50.exe.zip │ ├── efpt60.exe.zip │ ├── efreveng.exe.zip │ ├── efreveng50.exe.zip │ └── efreveng60.exe.zip ├── test └── ScaffoldingTester │ ├── ConsoleApp │ ├── ChinookContext.dgml │ ├── ConsoleApp.csproj │ ├── Models │ │ ├── Album.cs │ │ ├── Artist.cs │ │ ├── ChinookContext.cs │ │ ├── Configurations │ │ │ ├── AlbumConfiguration.cs │ │ │ ├── ArtistConfiguration.cs │ │ │ ├── CustomerConfiguration.cs │ │ │ ├── EmployeeConfiguration.cs │ │ │ ├── GenreConfiguration.cs │ │ │ ├── InvoiceConfiguration.cs │ │ │ ├── InvoiceLineConfiguration.cs │ │ │ ├── MediaTypeConfiguration.cs │ │ │ ├── PlaylistConfiguration.cs │ │ │ ├── SpecialConfiguration.cs │ │ │ └── TrackConfiguration.cs │ │ ├── Customer.cs │ │ ├── Employee.cs │ │ ├── Genre.cs │ │ ├── Invoice.cs │ │ ├── InvoiceLine.cs │ │ ├── MediaType.cs │ │ ├── Playlist.cs │ │ ├── Special.cs │ │ └── Track.cs │ ├── Program.cs │ ├── chinookscript.sql │ └── efpt.config.json │ ├── Database │ ├── Database.sqlproj │ └── Table1.sql │ ├── DbContextExtensionsTester │ ├── Album.cs │ ├── ChinookContext.cs │ ├── DbContextExtensionsTester.csproj │ ├── Program.cs │ └── efpt.config.json │ ├── MigrationsTest │ ├── Blog.cs │ ├── BlogContext.cs │ ├── MigrationsTest.csproj │ ├── Program.cs │ └── efpt.config.json │ ├── NuGet.config │ ├── ScaffoldingTester.sln │ ├── ScaffoldingTester │ ├── Models │ │ ├── AlphabeticalListOfProduct.cs │ │ ├── Category.cs │ │ ├── CategorySalesFor1997.cs │ │ ├── CurrentProductList.cs │ │ ├── CustOrderHistResult.cs │ │ ├── CustOrdersDetailResult.cs │ │ ├── CustOrdersOrdersResult.cs │ │ ├── Customer.cs │ │ ├── CustomerAndSuppliersByCity.cs │ │ ├── CustomerCustomerDemo.cs │ │ ├── CustomerDemographic.cs │ │ ├── DbContextExtensions.cs │ │ ├── Employee.cs │ │ ├── EmployeeSalesbyCountryResult.cs │ │ ├── EmployeeTerritory.cs │ │ ├── Invoice.cs │ │ ├── NorthwindContext.cs │ │ ├── NorthwindContextProcedures.cs │ │ ├── Order.cs │ │ ├── OrderDetail.cs │ │ ├── OrderDetailsExtended.cs │ │ ├── OrderSubtotal.cs │ │ ├── OrdersQry.cs │ │ ├── Product.cs │ │ ├── ProductSalesFor1997.cs │ │ ├── ProductsAboveAveragePrice.cs │ │ ├── ProductsByCategory.cs │ │ ├── QuarterlyOrder.cs │ │ ├── Region.cs │ │ ├── SalesByCategory.cs │ │ ├── SalesByCategoryResult.cs │ │ ├── SalesTotalsByAmount.cs │ │ ├── SalesbyYearResult.cs │ │ ├── Shipper.cs │ │ ├── SummaryOfSalesByQuarter.cs │ │ ├── SummaryOfSalesByYear.cs │ │ ├── Supplier.cs │ │ ├── TenMostExpensiveProductsResult.cs │ │ └── Territory.cs │ ├── Northwind.sql │ ├── NorthwindContext.dgml │ ├── Program.cs │ ├── ScaffoldingTester.csproj │ ├── efpt.config.json │ └── efpt.renaming.json │ └── ScaffoldingTester5 │ ├── Models │ ├── AlphabeticalListOfProduct.cs │ ├── BoolNullableTest1.cs │ ├── BoolNullableTestxx.cs │ ├── Category.cs │ ├── CategorySalesFor1997.cs │ ├── CurrentProductList.cs │ ├── CustOrderHistResult.cs │ ├── CustOrdersDetailResult.cs │ ├── CustOrdersOrdersResult.cs │ ├── Customer.cs │ ├── CustomerAndSuppliersByCity.cs │ ├── CustomerCustomerDemo.cs │ ├── CustomerDemographic.cs │ ├── DbContextExtensions.cs │ ├── Employee.cs │ ├── EmployeeSalesbyCountryResult.cs │ ├── EmployeeTerritory.cs │ ├── Invoice.cs │ ├── MultiSetResult.cs │ ├── NorthwindContext.Custom.cs │ ├── NorthwindContext.Functions.cs │ ├── NorthwindContext.cs │ ├── NorthwindContextProcedures.cs │ ├── Order.cs │ ├── OrderDetail.cs │ ├── OrderDetailsExtended.cs │ ├── OrderSubtotal.cs │ ├── OrdersQry.cs │ ├── Product.cs │ ├── ProductSalesFor1997.cs │ ├── ProductsAboveAveragePrice.cs │ ├── ProductsByCategory.cs │ ├── QuarterlyOrder.cs │ ├── Region.cs │ ├── SalesByCategory.cs │ ├── SalesByCategoryResult.cs │ ├── SalesTotalsByAmount.cs │ ├── SalesbyYearResult.cs │ ├── Shipper.cs │ ├── Special.cs │ ├── SpecialTypesResult.cs │ ├── StringSplitResult.cs │ ├── SummaryOfSalesByQuarter.cs │ ├── SummaryOfSalesByYear.cs │ ├── Supplier.cs │ ├── TenMostExpensiveProductsResult.cs │ ├── Territory.cs │ └── tvpResult.cs │ ├── Program.cs │ ├── ScaffoldingTester5.csproj │ ├── efpt.config.json │ ├── efpt.postrun.cmd │ └── efpt.renaming.json └── tools ├── 3.5.8109 ├── SSCERuntime-ENU_x64.msi └── SSCERuntime-ENU_x86.msi └── 4.0.8902 ├── SSCERuntime_x64-ENU.msi └── SSCERuntime_x86-ENU.msi /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [ErikEJ] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/.nuget/nuget.exe -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/README.md -------------------------------------------------------------------------------- /docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/LICENSE.txt -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /docs/assets/css/ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/css/ie8.css -------------------------------------------------------------------------------- /docs/assets/css/ie9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/css/ie9.css -------------------------------------------------------------------------------- /docs/assets/css/images/intro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/css/images/intro.svg -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/assets/js/ie/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/js/ie/html5shiv.js -------------------------------------------------------------------------------- /docs/assets/js/ie/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/js/ie/respond.min.js -------------------------------------------------------------------------------- /docs/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/js/jquery.min.js -------------------------------------------------------------------------------- /docs/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /docs/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /docs/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/js/main.js -------------------------------------------------------------------------------- /docs/assets/js/skel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/js/skel.min.js -------------------------------------------------------------------------------- /docs/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/js/util.js -------------------------------------------------------------------------------- /docs/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /docs/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_features.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_features.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_split.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_split.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_spotlights.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_spotlights.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /docs/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /docs/assets/sass/ie8.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/ie8.scss -------------------------------------------------------------------------------- /docs/assets/sass/ie9.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/ie9.scss -------------------------------------------------------------------------------- /docs/assets/sass/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/layout/_footer.scss -------------------------------------------------------------------------------- /docs/assets/sass/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/layout/_header.scss -------------------------------------------------------------------------------- /docs/assets/sass/layout/_intro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/layout/_intro.scss -------------------------------------------------------------------------------- /docs/assets/sass/layout/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/layout/_sidebar.scss -------------------------------------------------------------------------------- /docs/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /docs/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /docs/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /docs/assets/sass/libs/_skel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/libs/_skel.scss -------------------------------------------------------------------------------- /docs/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /docs/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/assets/sass/main.scss -------------------------------------------------------------------------------- /docs/elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/elements.html -------------------------------------------------------------------------------- /docs/generic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/generic.html -------------------------------------------------------------------------------- /docs/images/pic01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/images/pic01.png -------------------------------------------------------------------------------- /docs/images/pic02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/images/pic02.png -------------------------------------------------------------------------------- /docs/images/pic03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/images/pic03.png -------------------------------------------------------------------------------- /docs/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/images/pic04.jpg -------------------------------------------------------------------------------- /docs/images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/images/pic05.jpg -------------------------------------------------------------------------------- /docs/images/pic06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/images/pic06.jpg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/docs/index.html -------------------------------------------------------------------------------- /img/Migrations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/Migrations1.png -------------------------------------------------------------------------------- /img/Migrations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/Migrations2.png -------------------------------------------------------------------------------- /img/Migrations3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/Migrations3.png -------------------------------------------------------------------------------- /img/contextmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/contextmenu.png -------------------------------------------------------------------------------- /img/efcpoco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/efcpoco.png -------------------------------------------------------------------------------- /img/efcreveng0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/efcreveng0.png -------------------------------------------------------------------------------- /img/efcreveng1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/efcreveng1.png -------------------------------------------------------------------------------- /img/efcreveng2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/efcreveng2.png -------------------------------------------------------------------------------- /img/efcreveng3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/efcreveng3.png -------------------------------------------------------------------------------- /img/efcreveng4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/efcreveng4.png -------------------------------------------------------------------------------- /img/efcreveng4small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/efcreveng4small.png -------------------------------------------------------------------------------- /img/efcreveng5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/efcreveng5.png -------------------------------------------------------------------------------- /img/efcreveng5a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/efcreveng5a.png -------------------------------------------------------------------------------- /img/efreveng1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/efreveng1.png -------------------------------------------------------------------------------- /img/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/options.png -------------------------------------------------------------------------------- /img/options2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/options2.png -------------------------------------------------------------------------------- /img/unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/img/unicorn.png -------------------------------------------------------------------------------- /src/GUI/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/.editorconfig -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/DacFxStrongTypedCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/DacFxStrongTypedCore.csproj -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/Directory.Build.props -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/ISqlModelElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/ISqlModelElement.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/ISqlModelElementReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/ISqlModelElementReference.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/Interfaces.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/Key.snk -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/MarkerInterfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/MarkerInterfaces.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/ModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/ModelExtensions.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/ModelMessages.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/ModelMessages.Designer.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/ModelMessages.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/ModelMessages.resx -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/ModelUtilityMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/ModelUtilityMethods.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/TSqlModelElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/TSqlModelElement.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/TSqlModelElementReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/TSqlModelElementReference.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/TSqlTypedModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/TSqlTypedModel.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/UnresolvedElementException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/UnresolvedElementException.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/Utils.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/VersionSpecificImplementations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/VersionSpecificImplementations.cs -------------------------------------------------------------------------------- /src/GUI/DacFxStrongTypedCore/model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/DacFxStrongTypedCore/model.cs -------------------------------------------------------------------------------- /src/GUI/Directory.Build.Props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Directory.Build.Props -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.BLL/EFCorePowerTools.BLL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.BLL/EFCorePowerTools.BLL.csproj -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.BLL/ExtensionVersionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.BLL/ExtensionVersionService.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.BLL/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.BLL/Key.snk -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/BLL/IExtensionVersionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/BLL/IExtensionVersionService.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/DAL/IDotNetAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/DAL/IDotNetAccess.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/DAL/IOperatingSystemAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/DAL/IOperatingSystemAccess.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/DAL/ITelemetryAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/DAL/ITelemetryAccess.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/EFCorePowerTools.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/EFCorePowerTools.Common.csproj -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/Enums/ModelingGenerationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/Enums/ModelingGenerationMode.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/Key.snk -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/Models/AboutExtensionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/Models/AboutExtensionModel.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/Models/ConfigModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/Models/ConfigModel.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/Models/DatabaseDefinitionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/Models/DatabaseDefinitionModel.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/Models/ModelingOptionsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/Models/ModelingOptionsModel.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/Resources.Designer.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.Shared/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.Shared/Resources.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.sln -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools.sln.DotSettings -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/CodeTemplates.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/CodeTemplates.zip -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/CodeTemplates5.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/CodeTemplates5.zip -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/CodeTemplates501.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/CodeTemplates501.zip -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/CodeTemplates502.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/CodeTemplates502.zip -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/CodeTemplates600.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/CodeTemplates600.zip -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/DgmlBuilder/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/DgmlBuilder/readme.txt -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/AboutDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/AboutDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/AboutDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/AboutDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/AdvancedModelingOptionsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/AdvancedModelingOptionsDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/AdvancedModelingOptionsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/AdvancedModelingOptionsDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/CompareOptionsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/CompareOptionsDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/CompareOptionsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/CompareOptionsDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/CompareResultDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/CompareResultDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/CompareResultDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/CompareResultDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/ConnectionDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/ConnectionDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/ConnectionDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/ConnectionDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/Converter.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/Converter.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/EfCoreMigrationsDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/EfCoreMigrationsDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/EfCoreMigrationsDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/EfCoreMigrationsDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/EfCoreModelDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/EfCoreModelDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/EfCoreModelDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/EfCoreModelDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/PickConfigDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/PickConfigDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/PickConfigDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/PickConfigDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/PickSchemasDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/PickSchemasDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/PickSchemasDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/PickSchemasDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/PickServerDatabaseDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/PickServerDatabaseDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/PickServerDatabaseDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/PickServerDatabaseDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/PickTablesDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/PickTablesDialog.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/PickTablesDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/PickTablesDialog.xaml.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Dialogs/Style.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Dialogs/Style.xaml -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/EFCorePowerTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/EFCorePowerTools.csproj -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/EFCorePowerToolsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/EFCorePowerToolsPackage.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/EFCorePowerToolsPackage.en.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/EFCorePowerToolsPackage.en.vsct -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/EFCorePowerToolsPackage.it.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/EFCorePowerToolsPackage.it.vsct -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/EFCorePowerToolsPackage.tr.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/EFCorePowerToolsPackage.tr.vsct -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/EFCorePowerToolsPackage.zh-Hans.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/EFCorePowerToolsPackage.zh-Hans.vsct -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Key.snk -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/AboutLocale.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/AboutLocale.Designer.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/AboutLocale.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/AboutLocale.en.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/AboutLocale.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/AboutLocale.fr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/AboutLocale.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/AboutLocale.it.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/AboutLocale.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/AboutLocale.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/AboutLocale.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/AboutLocale.tr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/AboutLocale.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/AboutLocale.zh-Hans.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/CompareLocale.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/CompareLocale.Designer.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/CompareLocale.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/CompareLocale.en.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/CompareLocale.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/CompareLocale.fr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/CompareLocale.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/CompareLocale.it.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/CompareLocale.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/CompareLocale.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/CompareLocale.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/CompareLocale.tr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/CompareLocale.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/CompareLocale.zh-Hans.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/DgmlLocale.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/DgmlLocale.Designer.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/DgmlLocale.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/DgmlLocale.en.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/DgmlLocale.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/DgmlLocale.fr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/DgmlLocale.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/DgmlLocale.it.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/DgmlLocale.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/DgmlLocale.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/DgmlLocale.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/DgmlLocale.tr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/DgmlLocale.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/DgmlLocale.zh-Hans.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/MigrationsLocale.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/MigrationsLocale.Designer.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/MigrationsLocale.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/MigrationsLocale.en.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/MigrationsLocale.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/MigrationsLocale.fr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/MigrationsLocale.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/MigrationsLocale.it.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/MigrationsLocale.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/MigrationsLocale.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/MigrationsLocale.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/MigrationsLocale.tr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/MigrationsLocale.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/MigrationsLocale.zh-Hans.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.Designer.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.en.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.fr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.it.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.tr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ModelAnalyzerLocale.zh-Hans.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.Designer.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.en.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.fr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.it.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.tr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/ReverseEngineerLocale.zh-Hans.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/SharedLocale.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/SharedLocale.Designer.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/SharedLocale.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/SharedLocale.en.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/SharedLocale.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/SharedLocale.fr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/SharedLocale.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/SharedLocale.it.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/SharedLocale.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/SharedLocale.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/SharedLocale.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/SharedLocale.tr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Locales/SharedLocale.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Locales/SharedLocale.zh-Hans.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/PowerToolsReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/PowerToolsReadMe.txt -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources.Designer.cs -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources.en.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources.en.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/1.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/2.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/3.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/4.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/5.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/7.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/Add_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/Add_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/Cancel_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/Cancel_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/Column_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/Column_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/DatabaseStoredProcedure_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/DatabaseStoredProcedure_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/Diagram_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/Diagram_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/GlyphDown_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/GlyphDown_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/GlyphRight_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/GlyphRight_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/ImportPackage_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/ImportPackage_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/KeyDown_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/KeyDown_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/Package.ico -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/Remove_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/Remove_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/SQL_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/SQL_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/ScalarFunction_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/ScalarFunction_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/SchemaCompare_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/SchemaCompare_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/Schema_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/Schema_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/ScrollbarArrowsDownRight_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/ScrollbarArrowsDownRight_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/StatusInvalid_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/StatusInvalid_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/TableWarning_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/TableWarning_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/Table_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/Table_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/Unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/Unicorn.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/View_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/View_16x.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/efcreveng2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/efcreveng2.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/h.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/license.txt: -------------------------------------------------------------------------------- 1 | 2 | For license, see https://github.com/ErikEJ/EFCorePowerTools/blob/master/LICENSE -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/Resources/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/Resources/pt.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/VSPackage.en.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/VSPackage.en.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/VSPackage.fr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/VSPackage.fr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/VSPackage.it.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/VSPackage.it.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/VSPackage.tr.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/VSPackage.tr.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/VSPackage.zh-Hans.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/VSPackage.zh-Hans.resx -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/app.config -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/db.png -------------------------------------------------------------------------------- /src/GUI/EFCorePowerTools/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/EFCorePowerTools/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.5.DgmlBuilder/ErikEJ.EntityFrameworkCore.5.DgmlBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.5.DgmlBuilder/ErikEJ.EntityFrameworkCore.5.DgmlBuilder.csproj -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.5.DgmlBuilder/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.5.DgmlBuilder/Key.snk -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.5.SqlServer.Dacpac/ErikEJ.EntityFrameworkCore.5.SqlServer.Dacpac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.5.SqlServer.Dacpac/ErikEJ.EntityFrameworkCore.5.SqlServer.Dacpac.csproj -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.5.SqlServer.Dacpac/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.5.SqlServer.Dacpac/Key.snk -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.6.DgmlBuilder/ErikEJ.EntityFrameworkCore.6.DgmlBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.6.DgmlBuilder/ErikEJ.EntityFrameworkCore.6.DgmlBuilder.csproj -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.6.DgmlBuilder/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.6.DgmlBuilder/Key.snk -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac/Design/SqlServerDacpacDesignTimeServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac/Design/SqlServerDacpacDesignTimeServices.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac/ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac/ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac.csproj -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.6.SqlServer.Dacpac/Key.snk -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.6.SqlServer.SqlQuery/ErikEJ.EntityFrameworkCore.6.SqlServer.SqlQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.6.SqlServer.SqlQuery/ErikEJ.EntityFrameworkCore.6.SqlServer.SqlQuery.csproj -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.6.SqlServer.SqlQuery/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.6.SqlServer.SqlQuery/Key.snk -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/DebugViewParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/DebugViewParser.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/DebugViewParserResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/DebugViewParserResult.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/DgmlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/DgmlBuilder.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/ErikEJ.EntityFrameworkCore.DgmlBuilder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/ErikEJ.EntityFrameworkCore.DgmlBuilder.csproj -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/Key.snk -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/ModelExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/ModelExtension.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/readme.md -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/template.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.DgmlBuilder/template.dgml -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/CustomData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/CustomData.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/DacHacFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/DacHacFactory.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/DacpacConsolidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/DacpacConsolidator.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/DacpacMerger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/DacpacMerger.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/DacpacXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/DacpacXml.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/HeaderParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/HeaderParser.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/Metadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/DacpacConsolidate/Metadata.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/Design/SqlServerDacpacDesignTimeServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/Design/SqlServerDacpacDesignTimeServices.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac.csproj -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/Key.snk -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/Scaffolding/SqlServerDacpacDatabaseModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/Scaffolding/SqlServerDacpacDatabaseModelFactory.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/Scaffolding/SqlServerDacpacDatabaseModelFactoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/Scaffolding/SqlServerDacpacDatabaseModelFactoryOptions.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/Scaffolding/SqlServerDacpacStoredProcedureModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/Scaffolding/SqlServerDacpacStoredProcedureModelFactory.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/AliasResolutionVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/AliasResolutionVisitor.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/DataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/DataType.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/DataTypeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/DataTypeHelper.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/Model/Column.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/Model/Column.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/Model/Procedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/Model/Procedure.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/Model/Select.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/Model/Select.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/Model/SelectColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/Model/SelectColumn.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/Model/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/Model/Table.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/SelectVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/SqlSharpener/SelectVisitor.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.Dacpac/readme.md -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery/DbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery/DbContextExtensions.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery.csproj -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery/Key.snk -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery/OutputParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery/OutputParameter.cs -------------------------------------------------------------------------------- /src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/ErikEJ.EntityFrameworkCore.SqlServer.SqlQuery/readme.md -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dacpac/AdventureWorks2014.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dacpac/AdventureWorks2014.dacpac -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dacpac/Chinook.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dacpac/Chinook.dacpac -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dacpac/DacpacConsolidatorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dacpac/DacpacConsolidatorTest.cs -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dacpac/DacpacTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dacpac/DacpacTest.cs -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dacpac/Issue1262.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dacpac/Issue1262.dacpac -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dacpac/Issue208.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dacpac/Issue208.dacpac -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dacpac/Issue210.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dacpac/Issue210.dacpac -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dacpac/NorthwindProcedures.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dacpac/NorthwindProcedures.dacpac -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dacpac/NorthwindViews.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dacpac/NorthwindViews.dacpac -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dacpac/TestDb.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dacpac/TestDb.dacpac -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/Aw2014Person.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/Aw2014Person.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/ChinookContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/ChinookContext.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/DgmlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/DgmlTest.cs -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/Identity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/Identity.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/Issue604.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/Issue604.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/Issue687.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/Issue687.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/NoFk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/NoFk.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/Northwind.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/Northwind.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/Pfizer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/Pfizer.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/Samurai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/Samurai.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/SingleNav.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/SingleNav.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Dgml/longview50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Dgml/longview50.txt -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/Directory.Build.props -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/NUnitTestCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/NUnitTestCore.csproj -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/ReplacingCandidateNamingServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/ReplacingCandidateNamingServiceTests.cs -------------------------------------------------------------------------------- /src/GUI/NUnitTestCore/SqlServerTypeExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NUnitTestCore/SqlServerTypeExtensionsTest.cs -------------------------------------------------------------------------------- /src/GUI/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/NuGet.Config -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.50/CommentCSharpEntityTypeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.50/CommentCSharpEntityTypeGenerator.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.50/RevEng.Core.50.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.50/RevEng.Core.50.csproj -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.60/RevEng.Core.60.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.60/RevEng.Core.60.csproj -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/IFunctionModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/IFunctionModelFactory.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/IProcedureModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/IProcedureModelFactory.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/Metadata/Function.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/Metadata/Function.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/Metadata/ModuleParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/Metadata/ModuleParameter.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/Metadata/ModuleResultElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/Metadata/ModuleResultElement.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/Metadata/Procedure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/Metadata/Procedure.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/Metadata/Routine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/Metadata/Routine.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/Metadata/RoutineModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/Metadata/RoutineModel.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/Metadata/SqlObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/Metadata/SqlObjectBase.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/ModuleModelFactoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/ModuleModelFactoryOptions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/ModuleScaffolderOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/ModuleScaffolderOptions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/RevEng.Core.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/RevEng.Core.Abstractions.csproj -------------------------------------------------------------------------------- /src/GUI/RevEng.Core.Abstractions/key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core.Abstractions/key.snk -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Check.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/ColumnRemovingScaffoldingModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/ColumnRemovingScaffoldingModelFactory.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/CommentCSharpEntityTypeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/CommentCSharpEntityTypeGenerator.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/CustomTemplateFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/CustomTemplateFileService.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/DbContextExtensions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/DbContextExtensions -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/DbContextSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/DbContextSplitter.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Functions/IFunctionScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Functions/IFunctionScaffolder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Functions/NotImplementedFunctionModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Functions/NotImplementedFunctionModelFactory.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Functions/NotImplementedFunctionScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Functions/NotImplementedFunctionScaffolder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Functions/SqlServerFunctionModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Functions/SqlServerFunctionModelFactory.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Functions/SqlServerFunctionScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Functions/SqlServerFunctionScaffolder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/HumanizerPluralizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/HumanizerPluralizer.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/IReverseEngineerScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/IReverseEngineerScaffolder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/LegacyPluralizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/LegacyPluralizer.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Procedures/IProcedureScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Procedures/IProcedureScaffolder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Procedures/NotImplementedProcedureModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Procedures/NotImplementedProcedureModelFactory.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Procedures/NotImplementedProcedureScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Procedures/NotImplementedProcedureScaffolder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Procedures/RoutineNotImplementedServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Procedures/RoutineNotImplementedServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Procedures/SqlServerSqlTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Procedures/SqlServerSqlTypeExtensions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Procedures/SqlServerStoredProcedureModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Procedures/SqlServerStoredProcedureModelFactory.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Procedures/SqlServerStoredProcedureScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Procedures/SqlServerStoredProcedureScaffolder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Procedures/SqlServerStoredProcedureServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Procedures/SqlServerStoredProcedureServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/ReplacingCandidateNamingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/ReplacingCandidateNamingService.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/RevEng.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/RevEng.Core.csproj -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/ReverseEngineerOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/ReverseEngineerOptionsExtensions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/ReverseEngineerResultExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/ReverseEngineerResultExtensions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/ReverseEngineerRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/ReverseEngineerRunner.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/ReverseEngineerScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/ReverseEngineerScaffolder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Routines/IRoutineScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Routines/IRoutineScaffolder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Routines/SqlServerRoutineModelFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Routines/SqlServerRoutineModelFactory.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/Routines/SqlServerRoutineScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/Routines/SqlServerRoutineScaffolder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/ServiceProviderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/ServiceProviderBuilder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/SharedTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/SharedTypeExtensions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/SqlServerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/SqlServerHelper.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Core/TableListBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Core/TableListBuilder.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/CodeGenerationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/CodeGenerationMode.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/ColumnModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/ColumnModel.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/ColumnNamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/ColumnNamer.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/DatabaseType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/DatabaseType.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/EFCoreReverseEngineerResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/EFCoreReverseEngineerResult.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/Key.snk -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/ObjectType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/ObjectType.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/ObjectTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/ObjectTypeExtensions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/PathHelper.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/RevEng.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/RevEng.Common.csproj -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/ReverseEngineerCommandOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/ReverseEngineerCommandOptions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/Schema.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/SchemaInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/SchemaInfo.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/SerializationTableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/SerializationTableModel.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/TableModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/TableModel.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/TableModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/TableModelExtensions.cs -------------------------------------------------------------------------------- /src/GUI/RevEng.Shared/TableRenamer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/RevEng.Shared/TableRenamer.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/EventArgs/CloseRequestedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/EventArgs/CloseRequestedEventArgs.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IAboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IAboutViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IAdvancedModelingOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IAdvancedModelingOptionsViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IColumnInformationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IColumnInformationViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/ICompareOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/ICompareOptionsViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/ICompareResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/ICompareResultViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IMigrationOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IMigrationOptionsViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IModelingOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IModelingOptionsViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IObjectTreeEditableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IObjectTreeEditableViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IObjectTreeRootItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IObjectTreeRootItemViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IObjectTreeSelectableViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IObjectTreeSelectableViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IObjectTreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IObjectTreeViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IPickConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IPickConfigViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IPickConnectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IPickConnectionViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IPickSchemasViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IPickSchemasViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IPickServerDatabaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IPickServerDatabaseViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IPickTablesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IPickTablesViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/ISchemaInformationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/ISchemaInformationViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/ITableInformationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/ITableInformationViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/IViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/IViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/ObjectTypeIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/ObjectTypeIcon.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/ViewModels/SearchMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/ViewModels/SearchMode.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IAboutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IAboutDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IAdvancedModelingOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IAdvancedModelingOptionsDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/ICompareOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/ICompareOptionsDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/ICompareResultDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/ICompareResultDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IMigrationOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IMigrationOptionsDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IModelingOptionsDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IModelingOptionsDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IPickConfigDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IPickConfigDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IPickConnectionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IPickConnectionDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IPickSchemasDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IPickSchemasDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IPickServerDatabaseDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IPickServerDatabaseDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IPickTablesDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IPickTablesDialog.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/IView.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Contracts/Views/PickTablesDialogResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Contracts/Views/PickTablesDialogResult.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Converter/BoolInvertConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Converter/BoolInvertConverter.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Converter/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Converter/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Converter/CollectionCountToEnabledConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Converter/CollectionCountToEnabledConverter.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Converter/CollectionCountToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Converter/CollectionCountToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Converter/ColumnEnabledConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Converter/ColumnEnabledConverter.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Converter/EnumToBoolConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Converter/EnumToBoolConverter.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Converter/EnumToLabelConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Converter/EnumToLabelConverter.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Converter/FilePathToDisplayNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Converter/FilePathToDisplayNameConverter.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Converter/LevelToWidthConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Converter/LevelToWidthConverter.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Converter/ObjectTypeToImageStyleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Converter/ObjectTypeToImageStyleConverter.cs -------------------------------------------------------------------------------- /src/GUI/Shared/DAL/DotNetAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/DAL/DotNetAccess.cs -------------------------------------------------------------------------------- /src/GUI/Shared/DAL/ICredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/DAL/ICredentialStore.cs -------------------------------------------------------------------------------- /src/GUI/Shared/DAL/IVisualStudioAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/DAL/IVisualStudioAccess.cs -------------------------------------------------------------------------------- /src/GUI/Shared/DAL/OperatingSystemAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/DAL/OperatingSystemAccess.cs -------------------------------------------------------------------------------- /src/GUI/Shared/DAL/TelemetryAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/DAL/TelemetryAccess.cs -------------------------------------------------------------------------------- /src/GUI/Shared/DAL/VisualStudioAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/DAL/VisualStudioAccess.cs -------------------------------------------------------------------------------- /src/GUI/Shared/EFCorePowerToolsPackage.en.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/EFCorePowerToolsPackage.en.vsct -------------------------------------------------------------------------------- /src/GUI/Shared/EFCorePowerToolsPackage.it.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/EFCorePowerToolsPackage.it.vsct -------------------------------------------------------------------------------- /src/GUI/Shared/EFCorePowerToolsPackage.tr.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/EFCorePowerToolsPackage.tr.vsct -------------------------------------------------------------------------------- /src/GUI/Shared/EFCorePowerToolsPackage.zh-Hans.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/EFCorePowerToolsPackage.zh-Hans.vsct -------------------------------------------------------------------------------- /src/GUI/Shared/Extensions/CustomNameOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Extensions/CustomNameOptionsExtensions.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Extensions/EnvDTEExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Extensions/EnvDTEExtensions.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Extensions/FocusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Extensions/FocusExtensions.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Extensions/PathExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Extensions/PathExtensions.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Extensions/ProjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Extensions/ProjectExtensions.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Extensions/ReverseEngineerOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Extensions/ReverseEngineerOptionsExtensions.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Extensions/ZipArchiveExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Extensions/ZipArchiveExtensions.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Guids.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/AboutHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/AboutHandler.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/Compare/CompareAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/Compare/CompareAttributes.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/Compare/CompareHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/Compare/CompareHandler.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/Compare/CompareLogModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/Compare/CompareLogModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/Compare/CompareState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/Compare/CompareState.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/Compare/CompareType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/Compare/CompareType.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/DgmlNugetHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/DgmlNugetHandler.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/GenerationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/GenerationType.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/MigrationsHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/MigrationsHandler.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/ModelAnalyzerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/ModelAnalyzerHandler.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/ProcessLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/ProcessLauncher.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/ReverseEngineer/EfRevEngLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/ReverseEngineer/EfRevEngLauncher.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/ReverseEngineer/NupkgExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/ReverseEngineer/NupkgExtractor.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/ReverseEngineer/ResultDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/ReverseEngineer/ResultDeserializer.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/ReverseEngineer/ReverseEngineerCommandOptionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/ReverseEngineer/ReverseEngineerCommandOptionsExtensions.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/ReverseEngineer/ReverseEngineerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/ReverseEngineer/ReverseEngineerHandler.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/ReverseEngineer/ReverseEngineerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/ReverseEngineer/ReverseEngineerOptions.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Handlers/ReverseEngineer/TableListBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Handlers/ReverseEngineer/TableListBuilder.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Helpers/CredentialStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Helpers/CredentialStore.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Helpers/NuGetHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Helpers/NuGetHelper.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Helpers/ReverseEngineerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Helpers/ReverseEngineerHelper.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Helpers/Telemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Helpers/Telemetry.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Helpers/VSHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Helpers/VSHelper.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Helpers/VsDataHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Helpers/VsDataHelper.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Helpers/VsTheming.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Helpers/VsTheming.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Messages/ShowMessageBoxMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Messages/ShowMessageBoxMessage.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Options/AdvancedOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Options/AdvancedOptions.cs -------------------------------------------------------------------------------- /src/GUI/Shared/PkgCmdID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/PkgCmdID.cs -------------------------------------------------------------------------------- /src/GUI/Shared/Resources/Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Resources/Package.ico -------------------------------------------------------------------------------- /src/GUI/Shared/Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Shared.projitems -------------------------------------------------------------------------------- /src/GUI/Shared/Shared.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/Shared.shproj -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/AboutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/AboutViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/AdvancedModelingOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/AdvancedModelingOptionsViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/ColumnInformationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/ColumnInformationViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/CompareLogItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/CompareLogItemViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/CompareOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/CompareOptionsViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/CompareResultViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/CompareResultViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/DatabaseConnectionModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/DatabaseConnectionModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/MigrationOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/MigrationOptionsViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/ModelingOptionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/ModelingOptionsViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/ObjectTreeRootItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/ObjectTreeRootItemViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/ObjectTreeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/ObjectTreeViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/PickConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/PickConfigViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/PickConnectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/PickConnectionViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/PickSchemasViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/PickSchemasViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/PickServerDatabaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/PickServerDatabaseViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/PickTablesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/PickTablesViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/SchemaInformationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/SchemaInformationViewModel.cs -------------------------------------------------------------------------------- /src/GUI/Shared/ViewModels/TableInformationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/Shared/ViewModels/TableInformationViewModel.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/BLL/CredentialStoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/BLL/CredentialStoreTest.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/BLL/ExtensionVersionServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/BLL/ExtensionVersionServiceTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ErrorResult.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ErrorResult.txt -------------------------------------------------------------------------------- /src/GUI/UnitTests/Microsoft.VisualStudio.Data.Services.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/Microsoft.VisualStudio.Data.Services.dll -------------------------------------------------------------------------------- /src/GUI/UnitTests/Models/AboutExtensionModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/Models/AboutExtensionModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/Models/DatabaseConnectionModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/Models/DatabaseConnectionModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/Models/DatabaseDefinitionModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/Models/DatabaseDefinitionModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/Models/TableIModelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/Models/TableIModelTest.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/PathHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/PathHelperTest.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ResultDeserializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ResultDeserializerTest.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ReverseEngineerHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ReverseEngineerHelperTest.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/TableResult1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/TableResult1.txt -------------------------------------------------------------------------------- /src/GUI/UnitTests/TableResult2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/TableResult2.txt -------------------------------------------------------------------------------- /src/GUI/UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /src/GUI/UnitTests/ViewModels/AboutViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ViewModels/AboutViewModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ViewModels/AdvancedModelingOptionsViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ViewModels/AdvancedModelingOptionsViewModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ViewModels/ColumnInformationViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ViewModels/ColumnInformationViewModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ViewModels/ObjectTreeRootItemViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ViewModels/ObjectTreeRootItemViewModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ViewModels/ObjectTreeViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ViewModels/ObjectTreeViewModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ViewModels/PickSchemasViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ViewModels/PickSchemasViewModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ViewModels/PickServerDatabaseViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ViewModels/PickServerDatabaseViewModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ViewModels/PickTablesViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ViewModels/PickTablesViewModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ViewModels/SchemaInformationViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ViewModels/SchemaInformationViewModelTests.cs -------------------------------------------------------------------------------- /src/GUI/UnitTests/ViewModels/TableInformationViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/UnitTests/ViewModels/TableInformationViewModelTests.cs -------------------------------------------------------------------------------- /src/GUI/efpt30.core/Build30CmdlineTool.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt30.core/Build30CmdlineTool.cmd -------------------------------------------------------------------------------- /src/GUI/efpt30.core/EFCoreMigrationsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt30.core/EFCoreMigrationsBuilder.cs -------------------------------------------------------------------------------- /src/GUI/efpt30.core/EFCoreMigrationsManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt30.core/EFCoreMigrationsManager.cs -------------------------------------------------------------------------------- /src/GUI/efpt30.core/EFCoreModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt30.core/EFCoreModelBuilder.cs -------------------------------------------------------------------------------- /src/GUI/efpt30.core/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt30.core/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/GUI/efpt30.core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt30.core/Program.cs -------------------------------------------------------------------------------- /src/GUI/efpt30.core/efpt30.core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt30.core/efpt30.core.csproj -------------------------------------------------------------------------------- /src/GUI/efpt50.core/Build50CmdlineTool.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt50.core/Build50CmdlineTool.cmd -------------------------------------------------------------------------------- /src/GUI/efpt50.core/EFCoreCompareBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt50.core/EFCoreCompareBuilder.cs -------------------------------------------------------------------------------- /src/GUI/efpt50.core/efpt50.core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt50.core/efpt50.core.csproj -------------------------------------------------------------------------------- /src/GUI/efpt60.core/Build60CmdlineTool.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt60.core/Build60CmdlineTool.cmd -------------------------------------------------------------------------------- /src/GUI/efpt60.core/efpt60.core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efpt60.core/efpt60.core.csproj -------------------------------------------------------------------------------- /src/GUI/efreveng/BuildCmdlineTool.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/BuildCmdlineTool.cmd -------------------------------------------------------------------------------- /src/GUI/efreveng/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/Program.cs -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/dacpaclist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/dacpaclist.txt -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/dacpactest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/dacpactest.txt -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/efreveng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/efreveng.txt -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/efrevengplain.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/efrevengplain.txt -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/fulltest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/fulltest.json -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/fulltest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/fulltest.txt -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/fulltestMultiResult.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/fulltestMultiResult.json -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/fulltestProceduresOnly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/fulltestProceduresOnly.json -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/fulltestdac.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/fulltestdac.txt -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/measure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/measure.ps1 -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/portfolio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/portfolio.json -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/sproc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/sproc.txt -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/sqlite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/TestFiles/sqlite.txt -------------------------------------------------------------------------------- /src/GUI/efreveng/TestFiles/tablelist.txt: -------------------------------------------------------------------------------- 1 | 3 "Data Source=.\SQLEXPRESS;Initial Catalog=Northwind;Integrated Security=True" -------------------------------------------------------------------------------- /src/GUI/efreveng/efreveng.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng/efreveng.csproj -------------------------------------------------------------------------------- /src/GUI/efreveng50/BuildCmdlineTool.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng50/BuildCmdlineTool.cmd -------------------------------------------------------------------------------- /src/GUI/efreveng50/TestFiles/efptHandlebars.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng50/TestFiles/efptHandlebars.config.json -------------------------------------------------------------------------------- /src/GUI/efreveng50/efreveng50.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng50/efreveng50.csproj -------------------------------------------------------------------------------- /src/GUI/efreveng60/BuildCmdlineTool.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng60/BuildCmdlineTool.cmd -------------------------------------------------------------------------------- /src/GUI/efreveng60/TestFiles/DbProject.dacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng60/TestFiles/DbProject.dacpac -------------------------------------------------------------------------------- /src/GUI/efreveng60/TestFiles/dacbugtest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng60/TestFiles/dacbugtest.txt -------------------------------------------------------------------------------- /src/GUI/efreveng60/TestFiles/efptChinookM2M.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng60/TestFiles/efptChinookM2M.json -------------------------------------------------------------------------------- /src/GUI/efreveng60/efreveng60.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/efreveng60/efreveng60.csproj -------------------------------------------------------------------------------- /src/GUI/lib/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/lib/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /src/GUI/lib/SqlCeToolbox.DDEX4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/lib/SqlCeToolbox.DDEX4.dll -------------------------------------------------------------------------------- /src/GUI/lib/Xceed.Wpf.Toolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/lib/Xceed.Wpf.Toolkit.dll -------------------------------------------------------------------------------- /src/GUI/lib/efpt30.exe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/lib/efpt30.exe.zip -------------------------------------------------------------------------------- /src/GUI/lib/efpt50.exe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/lib/efpt50.exe.zip -------------------------------------------------------------------------------- /src/GUI/lib/efpt60.exe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/lib/efpt60.exe.zip -------------------------------------------------------------------------------- /src/GUI/lib/efreveng.exe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/lib/efreveng.exe.zip -------------------------------------------------------------------------------- /src/GUI/lib/efreveng50.exe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/lib/efreveng50.exe.zip -------------------------------------------------------------------------------- /src/GUI/lib/efreveng60.exe.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/src/GUI/lib/efreveng60.exe.zip -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/ChinookContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/ChinookContext.dgml -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/ConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/ConsoleApp.csproj -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Album.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Album.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Artist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Artist.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/ChinookContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/ChinookContext.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/AlbumConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/AlbumConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/ArtistConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/ArtistConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/CustomerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/CustomerConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/EmployeeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/EmployeeConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/GenreConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/GenreConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/InvoiceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/InvoiceConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/InvoiceLineConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/InvoiceLineConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/MediaTypeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/MediaTypeConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/PlaylistConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/PlaylistConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/SpecialConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/SpecialConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Configurations/TrackConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Configurations/TrackConfiguration.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Customer.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Employee.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Genre.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Invoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Invoice.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/InvoiceLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/InvoiceLine.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/MediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/MediaType.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Playlist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Playlist.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Special.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Special.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Models/Track.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Models/Track.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/Program.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/chinookscript.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/chinookscript.sql -------------------------------------------------------------------------------- /test/ScaffoldingTester/ConsoleApp/efpt.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ConsoleApp/efpt.config.json -------------------------------------------------------------------------------- /test/ScaffoldingTester/Database/Database.sqlproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/Database/Database.sqlproj -------------------------------------------------------------------------------- /test/ScaffoldingTester/Database/Table1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/Database/Table1.sql -------------------------------------------------------------------------------- /test/ScaffoldingTester/DbContextExtensionsTester/Album.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/DbContextExtensionsTester/Album.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/DbContextExtensionsTester/ChinookContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/DbContextExtensionsTester/ChinookContext.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/DbContextExtensionsTester/DbContextExtensionsTester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/DbContextExtensionsTester/DbContextExtensionsTester.csproj -------------------------------------------------------------------------------- /test/ScaffoldingTester/DbContextExtensionsTester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/DbContextExtensionsTester/Program.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/DbContextExtensionsTester/efpt.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/DbContextExtensionsTester/efpt.config.json -------------------------------------------------------------------------------- /test/ScaffoldingTester/MigrationsTest/Blog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/MigrationsTest/Blog.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/MigrationsTest/BlogContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/MigrationsTest/BlogContext.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/MigrationsTest/MigrationsTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/MigrationsTest/MigrationsTest.csproj -------------------------------------------------------------------------------- /test/ScaffoldingTester/MigrationsTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/MigrationsTest/Program.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/MigrationsTest/efpt.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/MigrationsTest/efpt.config.json -------------------------------------------------------------------------------- /test/ScaffoldingTester/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/NuGet.config -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester.sln -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/AlphabeticalListOfProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/AlphabeticalListOfProduct.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/Category.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/CategorySalesFor1997.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/CategorySalesFor1997.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/CurrentProductList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/CurrentProductList.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/CustOrderHistResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/CustOrderHistResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/CustOrdersDetailResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/CustOrdersDetailResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/CustOrdersOrdersResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/CustOrdersOrdersResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/Customer.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/CustomerAndSuppliersByCity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/CustomerAndSuppliersByCity.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/CustomerCustomerDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/CustomerCustomerDemo.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/CustomerDemographic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/CustomerDemographic.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/DbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/DbContextExtensions.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/Employee.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/EmployeeSalesbyCountryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/EmployeeSalesbyCountryResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/EmployeeTerritory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/EmployeeTerritory.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/Invoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/Invoice.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/NorthwindContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/NorthwindContext.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/NorthwindContextProcedures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/NorthwindContextProcedures.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/Order.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/OrderDetail.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/OrderDetailsExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/OrderDetailsExtended.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/OrderSubtotal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/OrderSubtotal.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/OrdersQry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/OrdersQry.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/Product.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/ProductSalesFor1997.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/ProductSalesFor1997.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/ProductsAboveAveragePrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/ProductsAboveAveragePrice.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/ProductsByCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/ProductsByCategory.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/QuarterlyOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/QuarterlyOrder.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/Region.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/SalesByCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/SalesByCategory.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/SalesByCategoryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/SalesByCategoryResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/SalesTotalsByAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/SalesTotalsByAmount.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/SalesbyYearResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/SalesbyYearResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/Shipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/Shipper.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/SummaryOfSalesByQuarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/SummaryOfSalesByQuarter.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/SummaryOfSalesByYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/SummaryOfSalesByYear.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/Supplier.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/TenMostExpensiveProductsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/TenMostExpensiveProductsResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Models/Territory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Models/Territory.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Northwind.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Northwind.sql -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/NorthwindContext.dgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/NorthwindContext.dgml -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/Program.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/ScaffoldingTester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/ScaffoldingTester.csproj -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/efpt.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/efpt.config.json -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester/efpt.renaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester/efpt.renaming.json -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/AlphabeticalListOfProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/AlphabeticalListOfProduct.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/BoolNullableTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/BoolNullableTest1.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/BoolNullableTestxx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/BoolNullableTestxx.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Category.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/CategorySalesFor1997.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/CategorySalesFor1997.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/CurrentProductList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/CurrentProductList.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/CustOrderHistResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/CustOrderHistResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/CustOrdersDetailResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/CustOrdersDetailResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/CustOrdersOrdersResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/CustOrdersOrdersResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Customer.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/CustomerAndSuppliersByCity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/CustomerAndSuppliersByCity.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/CustomerCustomerDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/CustomerCustomerDemo.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/CustomerDemographic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/CustomerDemographic.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/DbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/DbContextExtensions.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Employee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Employee.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/EmployeeSalesbyCountryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/EmployeeSalesbyCountryResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/EmployeeTerritory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/EmployeeTerritory.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Invoice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Invoice.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/MultiSetResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/MultiSetResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/NorthwindContext.Custom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/NorthwindContext.Custom.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/NorthwindContext.Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/NorthwindContext.Functions.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/NorthwindContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/NorthwindContext.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/NorthwindContextProcedures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/NorthwindContextProcedures.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Order.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/OrderDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/OrderDetail.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/OrderDetailsExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/OrderDetailsExtended.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/OrderSubtotal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/OrderSubtotal.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/OrdersQry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/OrdersQry.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Product.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/ProductSalesFor1997.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/ProductSalesFor1997.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/ProductsAboveAveragePrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/ProductsAboveAveragePrice.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/ProductsByCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/ProductsByCategory.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/QuarterlyOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/QuarterlyOrder.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Region.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Region.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/SalesByCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/SalesByCategory.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/SalesByCategoryResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/SalesByCategoryResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/SalesTotalsByAmount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/SalesTotalsByAmount.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/SalesbyYearResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/SalesbyYearResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Shipper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Shipper.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Special.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Special.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/SpecialTypesResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/SpecialTypesResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/StringSplitResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/StringSplitResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/SummaryOfSalesByQuarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/SummaryOfSalesByQuarter.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/SummaryOfSalesByYear.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/SummaryOfSalesByYear.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Supplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Supplier.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/TenMostExpensiveProductsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/TenMostExpensiveProductsResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/Territory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/Territory.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Models/tvpResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Models/tvpResult.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/Program.cs -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/ScaffoldingTester5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/ScaffoldingTester5.csproj -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/efpt.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/efpt.config.json -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/efpt.postrun.cmd: -------------------------------------------------------------------------------- 1 | echo running test 2 | 3 | pause -------------------------------------------------------------------------------- /test/ScaffoldingTester/ScaffoldingTester5/efpt.renaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/test/ScaffoldingTester/ScaffoldingTester5/efpt.renaming.json -------------------------------------------------------------------------------- /tools/3.5.8109/SSCERuntime-ENU_x64.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/tools/3.5.8109/SSCERuntime-ENU_x64.msi -------------------------------------------------------------------------------- /tools/3.5.8109/SSCERuntime-ENU_x86.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/tools/3.5.8109/SSCERuntime-ENU_x86.msi -------------------------------------------------------------------------------- /tools/4.0.8902/SSCERuntime_x64-ENU.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/tools/4.0.8902/SSCERuntime_x64-ENU.msi -------------------------------------------------------------------------------- /tools/4.0.8902/SSCERuntime_x86-ENU.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/EFCorePowerTools/HEAD/tools/4.0.8902/SSCERuntime_x86-ENU.msi --------------------------------------------------------------------------------