├── .azuredevops └── dependabot.yml ├── .config ├── guardian │ └── .gdnbaselines └── tsaoptions.json ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── ask_a_question.md │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── SUPPORT.md └── workflows │ └── inter-branch-merge-flow.yml ├── .gitignore ├── .nuget ├── NuGet.targets └── packages.config ├── CODE-OF-CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── EntityFramework.sln ├── EntityFramework.sln.DotSettings ├── LICENSE.txt ├── NuGet.config ├── README.md ├── azure-pipelines-public.yml ├── azure-pipelines.yml ├── eng ├── Publishing.props ├── Version.Details.xml ├── Versions.props ├── common │ ├── BuildConfiguration │ │ └── build-configuration.json │ ├── CIBuild.cmd │ ├── PSScriptAnalyzerSettings.psd1 │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── build.cmd │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── core-templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── cleanup-microbuild.yml │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── install-microbuild-impl.yml │ │ │ ├── install-microbuild.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1-publish.yml │ │ └── variables │ │ │ └── pool-providers.yml │ ├── cross │ │ ├── arm │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── arm64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── armel │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── build-android-rootfs.sh │ │ ├── build-rootfs.sh │ │ ├── install-debs.py │ │ ├── riscv64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ ├── toolchain.cmake │ │ ├── x64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ └── x86 │ │ │ └── tizen │ │ │ └── tizen.patch │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── dotnet.cmd │ ├── dotnet.ps1 │ ├── dotnet.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-locproject.ps1 │ ├── generate-sbom-prep.ps1 │ ├── generate-sbom-prep.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ │ ├── Directory.Build.props │ │ ├── NuGet.config │ │ └── Tools.csproj │ ├── loc │ │ └── P22DotNetHtmlLocalization.lss │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ │ ├── CommonLibrary.psm1 │ │ ├── common-library.sh │ │ ├── init-compiler.sh │ │ ├── init-distro-rid.sh │ │ ├── init-os-and-arch.sh │ │ ├── install-cmake-test.sh │ │ ├── install-cmake.sh │ │ ├── install-dependencies.sh │ │ └── install-tool.ps1 │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ │ ├── check-channel-consistency.ps1 │ │ ├── nuget-validation.ps1 │ │ ├── nuget-verification.ps1 │ │ ├── publish-using-darc.ps1 │ │ ├── redact-logs.ps1 │ │ ├── sourcelink-validation.ps1 │ │ └── symbols-validation.ps1 │ ├── retain-build.ps1 │ ├── sdk-task.ps1 │ ├── sdk-task.sh │ ├── sdl │ │ ├── NuGet.config │ │ ├── configure-sdl-tool.ps1 │ │ ├── execute-all-sdl-tools.ps1 │ │ ├── extract-artifact-archives.ps1 │ │ ├── extract-artifact-packages.ps1 │ │ ├── init-sdl.ps1 │ │ ├── packages.config │ │ ├── run-sdl.ps1 │ │ ├── sdl.ps1 │ │ └── trim-assets-version.ps1 │ ├── template-guidance.md │ ├── templates-official │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1-publish.yml │ │ └── variables │ │ │ ├── pool-providers.yml │ │ │ └── sdl-variables.yml │ ├── templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ ├── source-index-stage1-publish.yml │ │ │ └── vmr-sync.yml │ │ ├── variables │ │ │ └── pool-providers.yml │ │ └── vmr-build-pr.yml │ ├── tools.ps1 │ ├── tools.sh │ ├── vmr-sync.ps1 │ └── vmr-sync.sh └── sdl-tsa-vars.config ├── es-metadata.yml ├── github-merge-flow.jsonc ├── global.json ├── restore.cmd ├── restore.sh ├── src ├── Common │ ├── AssemblyExtensions.cs │ ├── ByteExtensions.cs │ ├── Check.cs │ ├── DatabaseName.cs │ ├── DebugCheck.cs │ ├── IEnumerableExtensions.cs │ ├── MemberInfoExtensions.cs │ ├── PropertyInfoExtensions.cs │ ├── StringExtensions.cs │ └── TypeExtensions.cs ├── Directory.Build.props ├── EntityFramework.NuGet │ ├── EntityFramework.NuGet.csproj │ ├── EntityFramework.NuGet.nuspec │ ├── EntityFramework6.PS2.psd1.in │ ├── EntityFramework6.psd1.in │ ├── build │ │ ├── EntityFramework.DefaultItems.props │ │ ├── EntityFramework.props │ │ ├── EntityFramework.targets │ │ └── net6.0 │ │ │ ├── EntityFramework.props │ │ │ └── EntityFramework.targets │ ├── buildTransitive │ │ ├── EntityFramework.props │ │ ├── EntityFramework.targets │ │ └── net6.0 │ │ │ ├── EntityFramework.props │ │ │ └── EntityFramework.targets │ ├── content │ │ └── net40 │ │ │ ├── App.config.install.xdt │ │ │ ├── App.config.transform │ │ │ ├── Web.config.install.xdt │ │ │ └── Web.config.transform │ └── tools │ │ ├── EntityFramework6.PS2.psm1 │ │ ├── EntityFramework6.psm1 │ │ ├── about_EntityFramework6.help.txt │ │ ├── init.ps1 │ │ └── install.ps1 ├── EntityFramework.SqlServer │ ├── DbGeographyAdapter.cs │ ├── DbGeometryAdapter.cs │ ├── DefaultSqlExecutionStrategy.cs │ ├── EntityFramework.SqlServer.InternalsVisibleTo.csproj │ ├── EntityFramework.SqlServer.csproj │ ├── Expressions.cs │ ├── GlobalSuppressions.cs │ ├── IDbSpatialValue.cs │ ├── IDbSpatialValueExtensionMethods.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── InternalsVisibleTo.cs │ │ ├── Resources.SqlServer.cs │ │ ├── Resources.SqlServer.resx │ │ └── Resources.SqlServer.tt │ ├── Resources │ │ └── System │ │ │ └── Data │ │ │ └── SqlClient │ │ │ ├── System.Data.Resources.SqlClient.SqlProviderServices.ProviderManifest.xml │ │ │ ├── System.Data.Resources.SqlClient.SqlProviderServices.StoreSchemaDefinition.ssdl │ │ │ ├── System.Data.Resources.SqlClient.SqlProviderServices.StoreSchemaDefinitionVersion3.ssdl │ │ │ ├── System.Data.Resources.SqlClient.SqlProviderServices.StoreSchemaDefinitionVersion3_Sql8.ssdl │ │ │ ├── System.Data.Resources.SqlClient.SqlProviderServices.StoreSchemaDefinition_Sql8.ssdl │ │ │ ├── System.Data.Resources.SqlClient.SqlProviderServices.StoreSchemaMapping.msl │ │ │ └── System.Data.Resources.SqlClient.SqlProviderServices.StoreSchemaMappingVersion3.msl │ ├── ServerType.cs │ ├── SqlAzureExecutionStrategy.cs │ ├── SqlAzureRetriableExceptionDetector.cs │ ├── SqlDdlBuilder.cs │ ├── SqlFunctions.cs │ ├── SqlGen │ │ ├── BoolWrapper.cs │ │ ├── DmlFunctionSqlGenerator.cs │ │ ├── DmlSqlGenerator.cs │ │ ├── ISqlFragment.cs │ │ ├── JoinSymbol.cs │ │ ├── OptionalColumn.cs │ │ ├── SkipClause.cs │ │ ├── Sql8ConformanceChecker.cs │ │ ├── Sql8ExpressionRewriter.cs │ │ ├── SqlBuilder.cs │ │ ├── SqlFunctionCallHandler.cs │ │ ├── SqlGenerator.cs │ │ ├── SqlSelectClauseBuilder.cs │ │ ├── SqlSelectStatement.cs │ │ ├── SqlStringBuilder.cs │ │ ├── SqlWriter.cs │ │ ├── Symbol.cs │ │ ├── SymbolPair.cs │ │ ├── SymbolTable.cs │ │ ├── SymbolUsageManager.cs │ │ └── TopClause.cs │ ├── SqlHierarchyIdFunctions.cs │ ├── SqlProviderManifest.cs │ ├── SqlProviderServices.cs │ ├── SqlProviderUtilities.cs │ ├── SqlServerMigrationSqlGenerator.cs │ ├── SqlSpatialDataReader.cs │ ├── SqlSpatialFunctions.cs │ ├── SqlSpatialServices.cs │ ├── SqlTableExistenceChecker.cs │ ├── SqlTypesAssembly.cs │ ├── SqlTypesAssemblyLoader.cs │ ├── SqlVersion.cs │ ├── SqlVersionUtils.cs │ └── Utilities │ │ ├── DbExpressionExtensions.cs │ │ ├── EdmFunctionExtensions.cs │ │ ├── FuncExtensions.cs │ │ ├── IDictionaryExtensions.cs │ │ ├── MetdataItemExtensions.cs │ │ ├── PrimitiveTypeExtensions.cs │ │ ├── SqlDataReaderWrapper.cs │ │ └── TypeUsageExtensions.cs ├── EntityFramework.SqlServerCompact │ ├── ADP1.cs │ ├── AliasGenerator.cs │ ├── CommandTreeUtils.cs │ ├── CommonUtils.cs │ ├── EntityFramework.SqlServerCompact.InternalsVisibleTo.csproj │ ├── EntityFramework.SqlServerCompact.csproj │ ├── EntityFramework.SqlServerCompact.nuspec │ ├── GlobalSuppressions.cs │ ├── Helper.cs │ ├── ParameterHelpers.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── InternalsVisibleTo.cs │ │ ├── Resources.SqlServerCompact.cs │ │ ├── Resources.SqlServerCompact.resx │ │ └── Resources.SqlServerCompact.tt │ ├── ProviderManifest.cs │ ├── RemoteProviderHelper.cs │ ├── Resources │ │ ├── Microsoft.SqlServerCe.Client.Resources.Entity.SqlCeProviderServices.StoreSchemaDefinition.ssdl │ │ ├── System.Data.Resources.SqlServerCe.Entity.SqlCeProviderServices.ProviderManifest.xml │ │ ├── System.Data.Resources.SqlServerCe.Entity.SqlCeProviderServices.StoreSchemaDefinition.ssdl │ │ └── System.Data.Resources.SqlServerCe.Entity.SqlCeProviderServices.StoreSchemaMapping.msl │ ├── SqlCeFunctions.cs │ ├── SqlCeMigrationSqlGenerator.cs │ ├── SqlCeMultiCommand.cs │ ├── SqlCeProviderManifest.cs │ ├── SqlCeProviderServices.cs │ ├── SqlCeTableExistenceChecker.cs │ ├── SqlDdlBuilder.cs │ ├── SqlGen │ │ ├── DmlSqlGenerator.cs │ │ ├── ISqlFragment.cs │ │ ├── JoinSymbol.cs │ │ ├── SkipClause.cs │ │ ├── SqlBuilder.cs │ │ ├── SqlGenerator.cs │ │ ├── SqlSelectStatement.cs │ │ ├── SqlStringBuilder.cs │ │ ├── SqlWriter.cs │ │ ├── Symbol.cs │ │ ├── SymbolPair.cs │ │ ├── SymbolTable.cs │ │ └── TopClause.cs │ ├── TypeHelpers.cs │ ├── TypeSemantics.cs │ ├── content │ │ └── net40 │ │ │ ├── App.config.install.xdt │ │ │ ├── App.config.transform │ │ │ ├── Web.config.install.xdt │ │ │ └── Web.config.transform │ └── readme.md ├── EntityFramework │ ├── Core │ │ ├── Common │ │ │ ├── CommandTrees │ │ │ │ ├── BasicCommandTreeVisitor.cs │ │ │ │ ├── BasicExpressionVisitor.cs │ │ │ │ ├── DbAggregate.cs │ │ │ │ ├── DbAndExpression.cs │ │ │ │ ├── DbApplyExpression.cs │ │ │ │ ├── DbArithmeticExpression.cs │ │ │ │ ├── DbBinaryExpression.cs │ │ │ │ ├── DbCaseExpression.cs │ │ │ │ ├── DbCastExpression.cs │ │ │ │ ├── DbCommandTree.cs │ │ │ │ ├── DbCommandTreeKind.cs │ │ │ │ ├── DbComparisonExpression.cs │ │ │ │ ├── DbConstantExpression.cs │ │ │ │ ├── DbCrossJoinExpression.cs │ │ │ │ ├── DbDeleteCommandTree.cs │ │ │ │ ├── DbDerefExpression.cs │ │ │ │ ├── DbDistinctExpression.cs │ │ │ │ ├── DbElementExpression.cs │ │ │ │ ├── DbEntityRefExpression.cs │ │ │ │ ├── DbExceptExpression.cs │ │ │ │ ├── DbExpression.cs │ │ │ │ ├── DbExpressionBinding.cs │ │ │ │ ├── DbExpressionKind.cs │ │ │ │ ├── DbExpressionVisitor.cs │ │ │ │ ├── DbExpressionVisitor_TResultType.cs │ │ │ │ ├── DbFilterExpression.cs │ │ │ │ ├── DbFunctionAggregate.cs │ │ │ │ ├── DbFunctionCommandTree.cs │ │ │ │ ├── DbFunctionExpression.cs │ │ │ │ ├── DbGroupAggregate.cs │ │ │ │ ├── DbGroupByExpression.cs │ │ │ │ ├── DbGroupExpressionBinding.cs │ │ │ │ ├── DbInExpression.cs │ │ │ │ ├── DbInsertCommandTree.cs │ │ │ │ ├── DbIntersectExpression.cs │ │ │ │ ├── DbIsEmptyExpression.cs │ │ │ │ ├── DbIsNullExpression.cs │ │ │ │ ├── DbIsOfExpression.cs │ │ │ │ ├── DbJoinExpression.cs │ │ │ │ ├── DbLambda.cs │ │ │ │ ├── DbLambdaExpression.cs │ │ │ │ ├── DbLikeExpression.cs │ │ │ │ ├── DbLimitExpression.cs │ │ │ │ ├── DbModificationClause.cs │ │ │ │ ├── DbModificationCommandTree.cs │ │ │ │ ├── DbNewInstanceExpression.cs │ │ │ │ ├── DbNotExpression.cs │ │ │ │ ├── DbNullExpression.cs │ │ │ │ ├── DbOfTypeExpression.cs │ │ │ │ ├── DbOrExpression.cs │ │ │ │ ├── DbParameterReferenceExpression.cs │ │ │ │ ├── DbProjectExpression.cs │ │ │ │ ├── DbPropertyExpression.cs │ │ │ │ ├── DbQuantifierExpression.cs │ │ │ │ ├── DbQueryCommandTree.cs │ │ │ │ ├── DbRefExpression.cs │ │ │ │ ├── DbRefKeyExpression.cs │ │ │ │ ├── DbRelatedEntityRef.cs │ │ │ │ ├── DbRelationshipNavigationExpression.cs │ │ │ │ ├── DbScanExpression.cs │ │ │ │ ├── DbSetClause.cs │ │ │ │ ├── DbSkipExpression.cs │ │ │ │ ├── DbSortClause.cs │ │ │ │ ├── DbSortExpression.cs │ │ │ │ ├── DbTreatExpression.cs │ │ │ │ ├── DbUnaryExpression.cs │ │ │ │ ├── DbUnionAllExpression.cs │ │ │ │ ├── DbUpdateCommandTree.cs │ │ │ │ ├── DbVariableReferenceExpression.cs │ │ │ │ ├── DefaultExpressionVisitor.cs │ │ │ │ ├── ExpressionBuilder │ │ │ │ │ ├── DbExpressionBuilder.cs │ │ │ │ │ ├── EdmFunctions.cs │ │ │ │ │ ├── Hierarchy │ │ │ │ │ │ └── HierarchyIdEdmFunctions.cs │ │ │ │ │ ├── Internal │ │ │ │ │ │ ├── ArgumentValidation.cs │ │ │ │ │ │ └── EnumerableValidator.cs │ │ │ │ │ ├── Row.cs │ │ │ │ │ └── Spatial │ │ │ │ │ │ └── SpatialEdmFunctions.cs │ │ │ │ ├── ExpressionRebinder.cs │ │ │ │ └── Internal │ │ │ │ │ ├── DbExpressionRule.cs │ │ │ │ │ ├── DbExpressionRuleProcessingVisitor.cs │ │ │ │ │ ├── ExpressionDumper.cs │ │ │ │ │ ├── ExpressionKeyGen.cs │ │ │ │ │ ├── ExpressionList.cs │ │ │ │ │ ├── ExpressionPrinter.cs │ │ │ │ │ ├── ParameterRetriever.cs │ │ │ │ │ ├── PatternMatchRule.cs │ │ │ │ │ ├── PatternMatchRuleProcessor.cs │ │ │ │ │ ├── Patterns.cs │ │ │ │ │ ├── Validator.cs │ │ │ │ │ ├── ViewSimplifier.cs │ │ │ │ │ └── XmlExpressionDumper.cs │ │ │ ├── DataRecordInfo.cs │ │ │ ├── DbCommandDefinition.cs │ │ │ ├── DbProviderManifest.cs │ │ │ ├── DbProviderServices.cs │ │ │ ├── DbXmlEnabledProviderManifest.cs │ │ │ ├── EntityRecordInfo.cs │ │ │ ├── EntitySql │ │ │ │ ├── AST │ │ │ │ │ ├── AliasedExpr.cs │ │ │ │ │ ├── ApplyClauseItem.cs │ │ │ │ │ ├── ApplyKind.cs │ │ │ │ │ ├── AstNode.cs │ │ │ │ │ ├── BuiltInExpr.cs │ │ │ │ │ ├── BuiltInKind.cs │ │ │ │ │ ├── CaseExpr.cs │ │ │ │ │ ├── CollectionTypeDefinition.cs │ │ │ │ │ ├── Command.cs │ │ │ │ │ ├── CreateRefExpr.cs │ │ │ │ │ ├── DerefExpr.cs │ │ │ │ │ ├── DistinctKind.cs │ │ │ │ │ ├── DotExpr.cs │ │ │ │ │ ├── FromClause.cs │ │ │ │ │ ├── FromClauseItem.cs │ │ │ │ │ ├── FromClauseItemKind.cs │ │ │ │ │ ├── FunctionDefinition.cs │ │ │ │ │ ├── GroupAggregateExpr.cs │ │ │ │ │ ├── GroupByClause.cs │ │ │ │ │ ├── GroupPartitionExpr.cs │ │ │ │ │ ├── HavingClause.cs │ │ │ │ │ ├── Identifier.cs │ │ │ │ │ ├── JoinClauseItem.cs │ │ │ │ │ ├── JoinKind.cs │ │ │ │ │ ├── KeyExpr.cs │ │ │ │ │ ├── Literal.cs │ │ │ │ │ ├── LiteralKind.cs │ │ │ │ │ ├── MethodExpr.cs │ │ │ │ │ ├── MultisetConstructorExpr.cs │ │ │ │ │ ├── NamespaceImport.cs │ │ │ │ │ ├── NavigationExpr.cs │ │ │ │ │ ├── OrderByClause.cs │ │ │ │ │ ├── OrderByClauseItem.cs │ │ │ │ │ ├── OrderKind.cs │ │ │ │ │ ├── ParenExpr.cs │ │ │ │ │ ├── QueryExpr.cs │ │ │ │ │ ├── QueryParameter.cs │ │ │ │ │ ├── QueryStatement.cs │ │ │ │ │ ├── RefExpr.cs │ │ │ │ │ ├── RefTypeDefinition.cs │ │ │ │ │ ├── RowConstructorExpr.cs │ │ │ │ │ ├── RowTypeDefinition.cs │ │ │ │ │ ├── SelectClause.cs │ │ │ │ │ ├── SelectKind.cs │ │ │ │ │ ├── Statement.cs │ │ │ │ │ ├── TypeDefinition.cs │ │ │ │ │ └── WhenThenExpr.cs │ │ │ │ ├── CqlErrorHelper.cs │ │ │ │ ├── CqlGrammar.y │ │ │ │ ├── CqlLexer.cs │ │ │ │ ├── CqlLexer.l │ │ │ │ ├── CqlLexerHelpers.cs │ │ │ │ ├── CqlParser.cs │ │ │ │ ├── CqlParserHelpers.cs │ │ │ │ ├── CqlQuery.cs │ │ │ │ ├── Disposer.cs │ │ │ │ ├── EntityContainerExpression.cs │ │ │ │ ├── EntitySqlParser.cs │ │ │ │ ├── ErrorContext.cs │ │ │ │ ├── ExpressionResolution.cs │ │ │ │ ├── ExpressionResolutionClass.cs │ │ │ │ ├── FunctionAggregateInfo.cs │ │ │ │ ├── FunctionDefinition.cs │ │ │ │ ├── FunctionOverloadResolver.cs │ │ │ │ ├── GenerateParser.cmd │ │ │ │ ├── GroupAggregateInfo.cs │ │ │ │ ├── GroupAggregateKind.cs │ │ │ │ ├── GroupKeyAggregateInfo.cs │ │ │ │ ├── GroupKeyDefinitionScopeEntry.cs │ │ │ │ ├── GroupPartitionInfo.cs │ │ │ │ ├── IGetAlternativeName.cs │ │ │ │ ├── IGroupExpressionExtendedInfo.cs │ │ │ │ ├── InlineFunctionGroup.cs │ │ │ │ ├── InlineFunctionInfo.cs │ │ │ │ ├── InvalidGroupInputRefScopeEntry.cs │ │ │ │ ├── MetadataEnumMember.cs │ │ │ │ ├── MetadataFunctionGroup.cs │ │ │ │ ├── MetadataMember.cs │ │ │ │ ├── MetadataMemberClass.cs │ │ │ │ ├── MetadataNamespace.cs │ │ │ │ ├── MetadataType.cs │ │ │ │ ├── Pair.cs │ │ │ │ ├── ParseResult.cs │ │ │ │ ├── ParserOptions.cs │ │ │ │ ├── Scope.cs │ │ │ │ ├── ScopeEntry.cs │ │ │ │ ├── ScopeEntryKind.cs │ │ │ │ ├── ScopeRegion.cs │ │ │ │ ├── SemanticAnalyzer.cs │ │ │ │ ├── SemanticResolver.cs │ │ │ │ ├── SourceScopeEntry.cs │ │ │ │ ├── StaticContext.cs │ │ │ │ ├── TypeResolver.cs │ │ │ │ ├── ValueExpression.cs │ │ │ │ └── y │ │ │ ├── EntityUtil.cs │ │ │ ├── FieldMetadata.cs │ │ │ ├── FieldNameLookup.cs │ │ │ ├── QueryCache │ │ │ │ ├── CompiledQueryCacheEntry.cs │ │ │ │ ├── CompiledQueryCacheKey.cs │ │ │ │ ├── EntityClientCacheKey.cs │ │ │ │ ├── EntitySqlQueryCacheKey.cs │ │ │ │ ├── LinqQueryCacheKey.cs │ │ │ │ ├── QueryCacheEntry.cs │ │ │ │ ├── QueryCacheKey.cs │ │ │ │ ├── QueryCacheManager.cs │ │ │ │ └── shaperfactoryquerycachekey.cs │ │ │ ├── TypeHelpers.cs │ │ │ ├── Utils │ │ │ │ ├── AliasGenerator.cs │ │ │ │ ├── Boolean │ │ │ │ │ ├── AndExpr.cs │ │ │ │ │ ├── BasicVisitor.cs │ │ │ │ │ ├── BoolExpr.cs │ │ │ │ │ ├── BooleanExpressionTermRewriter.cs │ │ │ │ │ ├── Clause.cs │ │ │ │ │ ├── CnfClause.cs │ │ │ │ │ ├── CnfSentence.cs │ │ │ │ │ ├── ConversionContext.cs │ │ │ │ │ ├── Converter.cs │ │ │ │ │ ├── DnfClause.cs │ │ │ │ │ ├── DnfSentence.cs │ │ │ │ │ ├── DomainConstraint.cs │ │ │ │ │ ├── DomainConstraintConversionContext.cs │ │ │ │ │ ├── DomainVariable.cs │ │ │ │ │ ├── ExprType.cs │ │ │ │ │ ├── FalseExpr.cs │ │ │ │ │ ├── GenericConversionContext.cs │ │ │ │ │ ├── IdentifierService.cs │ │ │ │ │ ├── KnowledgeBase.cs │ │ │ │ │ ├── LeafVisitor.cs │ │ │ │ │ ├── Literal.cs │ │ │ │ │ ├── LiteralVertexPair.cs │ │ │ │ │ ├── NegationPusher.cs │ │ │ │ │ ├── NormalFormNode.cs │ │ │ │ │ ├── NotExpr.cs │ │ │ │ │ ├── OrExpr.cs │ │ │ │ │ ├── Sentence.cs │ │ │ │ │ ├── Simplifier.cs │ │ │ │ │ ├── Solver.cs │ │ │ │ │ ├── TermCounter.cs │ │ │ │ │ ├── TermExpr.cs │ │ │ │ │ ├── ToDecisionDiagramConverter.cs │ │ │ │ │ ├── TreeExpr.cs │ │ │ │ │ ├── TrueExpr.cs │ │ │ │ │ ├── Vertex.cs │ │ │ │ │ └── Visitor.cs │ │ │ │ ├── ByValueComparer.cs │ │ │ │ ├── ByValueEqualityComparer.cs │ │ │ │ ├── CommandHelper.cs │ │ │ │ ├── DisposableCollectionWrapper.cs │ │ │ │ ├── Helpers.cs │ │ │ │ ├── InternalBase.cs │ │ │ │ ├── KeyToListMap.cs │ │ │ │ ├── Memoizer.cs │ │ │ │ ├── MetadataHelper.cs │ │ │ │ ├── ModifiableIteratorCollection.cs │ │ │ │ ├── Pair.cs │ │ │ │ ├── Set.cs │ │ │ │ ├── StringUtil.cs │ │ │ │ ├── TrailingSpaceComparer.cs │ │ │ │ ├── TrailingSpaceStringComparer.cs │ │ │ │ └── TreePrinter.cs │ │ │ └── internal │ │ │ │ ├── DbTypeMap.cs │ │ │ │ ├── MultipartIdentifier.cs │ │ │ │ └── materialization │ │ │ │ ├── CodeGenEmitter.cs │ │ │ │ ├── CollectionTranslatorResult.cs │ │ │ │ ├── CoordinatorFactory`.cs │ │ │ │ ├── Coordinator`.cs │ │ │ │ ├── ShaperFactory`.cs │ │ │ │ ├── Shaper`.cs │ │ │ │ ├── TranslatorArg.cs │ │ │ │ ├── TranslatorResult.cs │ │ │ │ ├── columnmapkeybuilder.cs │ │ │ │ ├── compensatingcollection.cs │ │ │ │ ├── coordinator.cs │ │ │ │ ├── coordinatorfactory.cs │ │ │ │ ├── coordinatorscratchpad.cs │ │ │ │ ├── recordstate.cs │ │ │ │ ├── recordstatefactory.cs │ │ │ │ ├── recordstatescratchpad.cs │ │ │ │ ├── shaper.cs │ │ │ │ ├── shaperfactory.cs │ │ │ │ └── translator.cs │ │ ├── EntityClient │ │ │ ├── DbParameterCollectionHelper.cs │ │ │ ├── EntityCommand.cs │ │ │ ├── EntityConnection.cs │ │ │ ├── EntityConnectionStringBuilder.cs │ │ │ ├── EntityDataReader.cs │ │ │ ├── EntityParameter.cs │ │ │ ├── EntityParameterCollection.cs │ │ │ ├── EntityProviderFactory.cs │ │ │ ├── EntityTransaction.cs │ │ │ ├── Internal │ │ │ │ ├── DbConnectionOptions.cs │ │ │ │ ├── EntityAdapter.cs │ │ │ │ ├── EntityCommandDefinition.cs │ │ │ │ ├── EntityProviderServices.cs │ │ │ │ └── IEntityAdapter.cs │ │ │ └── NameValuePair.cs │ │ ├── EntityCommandCompilationException.cs │ │ ├── EntityCommandExecutionException.cs │ │ ├── EntityException.cs │ │ ├── EntityKey.cs │ │ ├── EntityKeyMember.cs │ │ ├── EntityResCategoryAttribute.cs │ │ ├── EntityResDescriptionAttribute.cs │ │ ├── EntitySqlException.cs │ │ ├── IEntityStateEntry.cs │ │ ├── IEntityStateManager.cs │ │ ├── IExtendedDataRecord.cs │ │ ├── InternalMappingException.cs │ │ ├── InvalidCommandTreeException.cs │ │ ├── Mapping │ │ │ ├── AssociationSetMapping.cs │ │ │ ├── AssociationSetModificationFunctionMapping.cs │ │ │ ├── AssociationTypeMapping.cs │ │ │ ├── ColumnMappingBuilder.cs │ │ │ ├── ComplexPropertyMapping.cs │ │ │ ├── ComplexTypeMapping.cs │ │ │ ├── CompressingHashBuilder.cs │ │ │ ├── ConditionPropertyMapping.cs │ │ │ ├── DefaultObjectMappingItemCollection.cs │ │ │ ├── EndPropertyMapping.cs │ │ │ ├── EntityContainerMapping.cs │ │ │ ├── EntitySetBaseMapping.cs │ │ │ ├── EntitySetMapping.cs │ │ │ ├── EntityTypeMapping.cs │ │ │ ├── EntityTypeModificationFunctionMapping.cs │ │ │ ├── EntityViewContainer.cs │ │ │ ├── EntityViewGenerationAttribute.cs │ │ │ ├── FunctionImportComplexTypeMapping.cs │ │ │ ├── FunctionImportEntityTypeMapping.cs │ │ │ ├── FunctionImportEntityTypeMappingCondition.cs │ │ │ ├── FunctionImportEntityTypeMappingConditionIsNull.cs │ │ │ ├── FunctionImportEntityTypeMappingConditionValue.cs │ │ │ ├── FunctionImportMapping.cs │ │ │ ├── FunctionImportMappingComposable.cs │ │ │ ├── FunctionImportMappingComposableHelper.cs │ │ │ ├── FunctionImportMappingNonComposable.cs │ │ │ ├── FunctionImportNormalizedEntityTypeMapping.cs │ │ │ ├── FunctionImportResultMapping.cs │ │ │ ├── FunctionImportReturnTypeEntityTypeColumnsRenameBuilder.cs │ │ │ ├── FunctionImportReturnTypePropertyMapping.cs │ │ │ ├── FunctionImportReturnTypeScalarPropertyMapping.cs │ │ │ ├── FunctionImportReturnTypeStructuralTypeColumn.cs │ │ │ ├── FunctionImportReturnTypeStructuralTypeColumnRenameMapping.ReturnTypeRenameMapping.cs │ │ │ ├── FunctionImportStructuralTypeMapping.cs │ │ │ ├── FunctionImportStructuralTypeMappingKB.cs │ │ │ ├── IsNullConditionMapping.cs │ │ │ ├── LineInfo.cs │ │ │ ├── MappingBase.cs │ │ │ ├── MappingErrorCode.cs │ │ │ ├── MappingFragment.cs │ │ │ ├── MappingItem.cs │ │ │ ├── MappingItemCollection.cs │ │ │ ├── MappingItemLoader.cs │ │ │ ├── MemberMappingKind.cs │ │ │ ├── ModificationFunctionMapping.cs │ │ │ ├── ModificationFunctionMemberPath.cs │ │ │ ├── ModificationFunctionParameterBinding.cs │ │ │ ├── ModificationFunctionResultBinding.cs │ │ │ ├── MslConstructs.cs │ │ │ ├── ObjectAssociationEndMapping.cs │ │ │ ├── ObjectComplexPropertyMapping.cs │ │ │ ├── ObjectMemberMapping.cs │ │ │ ├── ObjectMslConstructs.cs │ │ │ ├── ObjectNavigationPropertyMapping.cs │ │ │ ├── ObjectPropertyMapping.cs │ │ │ ├── ObjectTypeMapping.cs │ │ │ ├── PropertyMapping.cs │ │ │ ├── ScalarPropertyMapping.cs │ │ │ ├── StorageMappingItemCollection.cs │ │ │ ├── StringHashBuilder.cs │ │ │ ├── StructuralTypeMapping.cs │ │ │ ├── TypeMapping.cs │ │ │ ├── Update │ │ │ │ └── Internal │ │ │ │ │ ├── AssociationSetMetadata.cs │ │ │ │ │ ├── ChangeNode.cs │ │ │ │ │ ├── CompositeKey.cs │ │ │ │ │ ├── DynamicUpdateCommand.cs │ │ │ │ │ ├── ExtractedStateEntry.cs │ │ │ │ │ ├── ExtractorMetadata.cs │ │ │ │ │ ├── FunctionMappingTranslator.cs │ │ │ │ │ ├── FunctionUpdateCommand.cs │ │ │ │ │ ├── Graph.cs │ │ │ │ │ ├── KeyManager.cs │ │ │ │ │ ├── ModificationOperator.cs │ │ │ │ │ ├── ModifiedPropertiesBehavior.cs │ │ │ │ │ ├── Propagator.Evaluator.cs │ │ │ │ │ ├── Propagator.ExtentPlaceholderCreator.cs │ │ │ │ │ ├── Propagator.JoinPropagator.JoinPredicateVisitor.cs │ │ │ │ │ ├── Propagator.JoinPropagator.SubstitutingCloneVisitor.cs │ │ │ │ │ ├── Propagator.JoinPropagator.cs │ │ │ │ │ ├── Propagator.cs │ │ │ │ │ ├── PropagatorFlags.cs │ │ │ │ │ ├── PropagatorResult.cs │ │ │ │ │ ├── RecordConverter.cs │ │ │ │ │ ├── SourceInterpreter.cs │ │ │ │ │ ├── TableChangeProcessor.cs │ │ │ │ │ ├── UndirectedGraph.cs │ │ │ │ │ ├── UpdateCommand.cs │ │ │ │ │ ├── UpdateCompiler.cs │ │ │ │ │ ├── UpdateExpressionVisitor.cs │ │ │ │ │ ├── UpdateTranslator.cs │ │ │ │ │ ├── ViewLoader.cs │ │ │ │ │ └── updatecommandorderer.cs │ │ │ ├── ValueCondition.cs │ │ │ ├── ValueConditionMapping.cs │ │ │ ├── ViewGeneration │ │ │ │ ├── BasicViewGenerator.cs │ │ │ │ ├── CellCreator.cs │ │ │ │ ├── CellPartitioner.cs │ │ │ │ ├── CellTreeSimplifier.cs │ │ │ │ ├── ConfigViewGenerator.cs │ │ │ │ ├── CqlGeneration │ │ │ │ │ ├── AliasedSlot.cs │ │ │ │ │ ├── BooleanProjectedSlot.cs │ │ │ │ │ ├── CaseCqlBlock.cs │ │ │ │ │ ├── CqlBlock.cs │ │ │ │ │ ├── CqlIdentifiers.cs │ │ │ │ │ ├── CqlWriter.cs │ │ │ │ │ ├── ExtentCqlBlock.cs │ │ │ │ │ ├── JoinCqlBlock.cs │ │ │ │ │ ├── SlotInfo.cs │ │ │ │ │ └── UnionCqlBlock.cs │ │ │ │ ├── CqlGenerator.cs │ │ │ │ ├── DiscriminatorMap.cs │ │ │ │ ├── GeneratedView.cs │ │ │ │ ├── PerfType.cs │ │ │ │ ├── QueryRewriting │ │ │ │ │ ├── DefaultTileProcessor.cs │ │ │ │ │ ├── FragmentQuery.cs │ │ │ │ │ ├── FragmentQueryKB.cs │ │ │ │ │ ├── FragmentQueryKBChaseSupport.cs │ │ │ │ │ ├── FragmentQueryProcessor.cs │ │ │ │ │ ├── ITileQuery.cs │ │ │ │ │ ├── QueryRewriter.cs │ │ │ │ │ ├── RewritingPass.cs │ │ │ │ │ ├── RewritingProcessor.cs │ │ │ │ │ ├── RewritingSimplifier.cs │ │ │ │ │ ├── RewritingValidator.cs │ │ │ │ │ ├── RoleBoolean.cs │ │ │ │ │ ├── Tile.cs │ │ │ │ │ ├── TileBinaryOperator.cs │ │ │ │ │ ├── TileNamed.cs │ │ │ │ │ ├── TileOpKind.cs │ │ │ │ │ ├── TileProcessor.cs │ │ │ │ │ └── TileQueryProcessor.cs │ │ │ │ ├── Structures │ │ │ │ │ ├── BoolExpression.cs │ │ │ │ │ ├── BoolExpressionVisitors.cs │ │ │ │ │ ├── BoolLiteral.cs │ │ │ │ │ ├── CaseStatement.cs │ │ │ │ │ ├── CaseStatementProjectedSlot.cs │ │ │ │ │ ├── Cell.cs │ │ │ │ │ ├── CellIdBoolean.cs │ │ │ │ │ ├── CellLabel.cs │ │ │ │ │ ├── CellQuery.cs │ │ │ │ │ ├── CellTreeNode.cs │ │ │ │ │ ├── CellTreeNodeVisitors.cs │ │ │ │ │ ├── CellTreeOpType.cs │ │ │ │ │ ├── Constant.cs │ │ │ │ │ ├── ConstantProjectedSlot.cs │ │ │ │ │ ├── Domain.cs │ │ │ │ │ ├── ErrorLog.cs │ │ │ │ │ ├── LeafCellTreeNode.cs │ │ │ │ │ ├── LeftCellWrapper.cs │ │ │ │ │ ├── MemberDomainMap.cs │ │ │ │ │ ├── MemberMaps.cs │ │ │ │ │ ├── MemberPath.cs │ │ │ │ │ ├── MemberProjectedSlot.cs │ │ │ │ │ ├── MemberProjectionIndex.cs │ │ │ │ │ ├── MemberRestriction.cs │ │ │ │ │ ├── NegatedConstant.cs │ │ │ │ │ ├── OpCellTreeNode.cs │ │ │ │ │ ├── ProjectedSlot.cs │ │ │ │ │ ├── QualifiedCellIdBoolean.cs │ │ │ │ │ ├── ScalarConstant.cs │ │ │ │ │ ├── ScalarRestriction.cs │ │ │ │ │ ├── TrueFalseLiteral.cs │ │ │ │ │ ├── TypeConstant.cs │ │ │ │ │ ├── TypeRestriction.cs │ │ │ │ │ ├── ViewTarget.cs │ │ │ │ │ └── WithStatement.cs │ │ │ │ ├── Utils │ │ │ │ │ ├── ExceptionHelpers.cs │ │ │ │ │ ├── ExternalCalls.cs │ │ │ │ │ └── ViewGenErrorCode.cs │ │ │ │ ├── Validation │ │ │ │ │ ├── BasicCellRelation.cs │ │ │ │ │ ├── BasicKeyConstraint.cs │ │ │ │ │ ├── CellRelation.cs │ │ │ │ │ ├── ConditionComparer.cs │ │ │ │ │ ├── ConstraintBase.cs │ │ │ │ │ ├── ExtentKey.cs │ │ │ │ │ ├── ForeignConstraint.cs │ │ │ │ │ ├── KeyConstraint.cs │ │ │ │ │ ├── SchemaConstraints.cs │ │ │ │ │ ├── ViewCellRelation.cs │ │ │ │ │ ├── ViewCellSlot.cs │ │ │ │ │ ├── ViewKeyConstraint.cs │ │ │ │ │ └── errorpatternmatcher.cs │ │ │ │ ├── Validator.cs │ │ │ │ ├── ViewGenMode.cs │ │ │ │ ├── ViewGenResults.cs │ │ │ │ ├── ViewGenTraceLevel.cs │ │ │ │ ├── ViewGenerator.cs │ │ │ │ ├── ViewgenContext.cs │ │ │ │ └── ViewgenGatekeeper.cs │ │ │ ├── ViewValidator.cs │ │ │ ├── basemetadatamappingvisitor.cs │ │ │ └── metadatamappinghashervisitor.cs │ │ ├── MappingException.cs │ │ ├── Metadata │ │ │ ├── Edm │ │ │ │ ├── AspProxy.cs │ │ │ │ ├── AssociationEndMember.cs │ │ │ │ ├── AssociationSet.cs │ │ │ │ ├── AssociationSetEnd.cs │ │ │ │ ├── AssociationType.cs │ │ │ │ ├── BuiltInTypeKind.cs │ │ │ │ ├── CacheForPrimitiveTypes.cs │ │ │ │ ├── ClrEntityType.cs │ │ │ │ ├── ClrEnumType.cs │ │ │ │ ├── ClrPerspective.cs │ │ │ │ ├── CollectionKind.cs │ │ │ │ ├── CollectionType.cs │ │ │ │ ├── ComplexType.cs │ │ │ │ ├── ConcurrencyMode.cs │ │ │ │ ├── Converter.cs │ │ │ │ ├── CsdlSerializer.cs │ │ │ │ ├── CustomAssemblyResolver.cs │ │ │ │ ├── DataModelErrorEventArgs.cs │ │ │ │ ├── DataModelValidationRule.cs │ │ │ │ ├── DataModelValidationRuleSet.cs │ │ │ │ ├── DataModelValidationRule`.cs │ │ │ │ ├── DataModelValidator.cs │ │ │ │ ├── DataSpace.cs │ │ │ │ ├── DbDatabaseMapping.cs │ │ │ │ ├── DbModelExtensions.cs │ │ │ │ ├── DefaultAssemblyResolver.cs │ │ │ │ ├── EdmConstants.cs │ │ │ │ ├── EdmError.cs │ │ │ │ ├── EdmFunction.cs │ │ │ │ ├── EdmFunctionPayload.cs │ │ │ │ ├── EdmItemCollection.OcAssemblyCache.cs │ │ │ │ ├── EdmItemCollection.cs │ │ │ │ ├── EdmItemError.cs │ │ │ │ ├── EdmMember.cs │ │ │ │ ├── EdmModel.cs │ │ │ │ ├── EdmModelRuleSet.cs │ │ │ │ ├── EdmModelSemanticValidationRules.cs │ │ │ │ ├── EdmModelSyntacticValidationRules.cs │ │ │ │ ├── EdmModelValidationContext.cs │ │ │ │ ├── EdmModelValidationRule.cs │ │ │ │ ├── EdmModelValidationVisitor.cs │ │ │ │ ├── EdmProperty.cs │ │ │ │ ├── EdmSchemaError.cs │ │ │ │ ├── EdmSchemaErrorSeverity.cs │ │ │ │ ├── EdmSerializationVisitor.cs │ │ │ │ ├── EdmType.cs │ │ │ │ ├── EdmValidator.cs │ │ │ │ ├── EdmXmlSchemaWriter.cs │ │ │ │ ├── EntityContainer.cs │ │ │ │ ├── EntitySet.cs │ │ │ │ ├── EntitySetBase.cs │ │ │ │ ├── EntitySetBaseCollection.cs │ │ │ │ ├── EntityType.cs │ │ │ │ ├── EntityTypeBase.cs │ │ │ │ ├── EnumMember.cs │ │ │ │ ├── EnumType.cs │ │ │ │ ├── ExpensiveOSpaceLoader.cs │ │ │ │ ├── Facet.cs │ │ │ │ ├── FacetDescription.cs │ │ │ │ ├── FacetValueContainer.cs │ │ │ │ ├── FacetValues.cs │ │ │ │ ├── FilteredReadOnlyMetadataCollection.cs │ │ │ │ ├── ForeignKeyBuilder.cs │ │ │ │ ├── FunctionParameter.cs │ │ │ │ ├── GlobalItem.cs │ │ │ │ ├── Helper.cs │ │ │ │ ├── IEdmModelAdapter.cs │ │ │ │ ├── INamedDataModelItem.cs │ │ │ │ ├── ItemCollection.cs │ │ │ │ ├── MappingMetadataHelper.cs │ │ │ │ ├── MemberCollection.cs │ │ │ │ ├── MetadataArtifactAssemblyResolver.cs │ │ │ │ ├── MetadataArtifactLoader.cs │ │ │ │ ├── MetadataArtifactLoaderComposite.cs │ │ │ │ ├── MetadataArtifactLoaderCompositeFile.cs │ │ │ │ ├── MetadataArtifactLoaderCompositeResource.cs │ │ │ │ ├── MetadataArtifactLoaderFile.cs │ │ │ │ ├── MetadataArtifactLoaderResource.cs │ │ │ │ ├── MetadataArtifactLoaderXmlReaderWrapper.cs │ │ │ │ ├── MetadataCache.cs │ │ │ │ ├── MetadataCollection.cs │ │ │ │ ├── MetadataItem.cs │ │ │ │ ├── MetadataItemHelper.cs │ │ │ │ ├── MetadataItem_Static.cs │ │ │ │ ├── MetadataOptimization.cs │ │ │ │ ├── MetadataProperty.cs │ │ │ │ ├── MetadataPropertyAttribute.cs │ │ │ │ ├── MetadataPropertyCollection.cs │ │ │ │ ├── MetadataPropertyvalue.cs │ │ │ │ ├── MetadataWorkspace.cs │ │ │ │ ├── ModelPerspective.cs │ │ │ │ ├── MslSerializer.cs │ │ │ │ ├── MslXmlSchemaWriter.cs │ │ │ │ ├── NavigationProperty.cs │ │ │ │ ├── NavigationPropertyAccessor.cs │ │ │ │ ├── ObjectHelper.cs │ │ │ │ ├── ObjectItemCollection.cs │ │ │ │ ├── OperationAction.cs │ │ │ │ ├── ParameterMode.cs │ │ │ │ ├── ParameterTypeSemantics.cs │ │ │ │ ├── Perspective.cs │ │ │ │ ├── PrimitiveType.cs │ │ │ │ ├── PrimitiveTypeKind.cs │ │ │ │ ├── PropertyKind.cs │ │ │ │ ├── Provider │ │ │ │ │ ├── ClrProviderManifest.cs │ │ │ │ │ ├── EdmProviderManifest.cs │ │ │ │ │ ├── EdmProviderManifestFunctionBuilder.cs │ │ │ │ │ ├── EdmProviderManifestHierarchyIdFunctions.cs │ │ │ │ │ └── EdmProviderManifestSpatialFunctions.cs │ │ │ │ ├── ReadOnlyMetadataCollection.cs │ │ │ │ ├── RefType.cs │ │ │ │ ├── ReferentialConstraint.cs │ │ │ │ ├── RelationshipEndMember.cs │ │ │ │ ├── RelationshipMultiplicity.cs │ │ │ │ ├── RelationshipMultiplicityConverter.cs │ │ │ │ ├── RelationshipSet.cs │ │ │ │ ├── RelationshipType.cs │ │ │ │ ├── RowType.cs │ │ │ │ ├── SimpleType.cs │ │ │ │ ├── SsdlSerializer.cs │ │ │ │ ├── StoreGeneratedPattern.cs │ │ │ │ ├── StoreItemCollection.Loader.cs │ │ │ │ ├── StoreItemCollection.cs │ │ │ │ ├── StructuralType.cs │ │ │ │ ├── TargetPerspective.cs │ │ │ │ ├── TypeSemantics.cs │ │ │ │ ├── TypeUsage.cs │ │ │ │ ├── ValidationErrorEventArgs.cs │ │ │ │ ├── ValidationSeverity.cs │ │ │ │ ├── XmlConstants.cs │ │ │ │ ├── XmlSchemaWriter.cs │ │ │ │ ├── documentation.cs │ │ │ │ ├── safelink.cs │ │ │ │ ├── safelinkcollection.cs │ │ │ │ └── util.cs │ │ │ └── ObjectLayer │ │ │ │ ├── AssemblyCache.cs │ │ │ │ ├── AssemblyCacheEntry.cs │ │ │ │ ├── CodeFirstOSpaceLoader.cs │ │ │ │ ├── CodeFirstOSpaceTypeFactory.cs │ │ │ │ ├── ImmutableAssemblyCacheEntry.cs │ │ │ │ ├── KnownAssembliesSet.cs │ │ │ │ ├── KnownAssemblyEntry.cs │ │ │ │ ├── LoadMessageLogger.cs │ │ │ │ ├── LockedAssemblyCache.cs │ │ │ │ ├── MetadataAssemblyHelper.cs │ │ │ │ ├── MutableAssemblyCacheEntry.cs │ │ │ │ ├── OSpaceTypeFactory.cs │ │ │ │ ├── ObjectItemAssemblyLoader.cs │ │ │ │ ├── ObjectItemAttributeAssemblyLoader.cs │ │ │ │ ├── ObjectItemCachedAssemblyLoader.cs │ │ │ │ ├── ObjectItemConventionAssemblyLoader.cs │ │ │ │ ├── ObjectItemLoadingSessionData.cs │ │ │ │ └── ObjectItemNoOpAssemblyLoader.cs │ │ ├── MetadataException.cs │ │ ├── ObjectNotFoundException.cs │ │ ├── Objects │ │ │ ├── CompiledQuery.cs │ │ │ ├── CurrentValueRecord.cs │ │ │ ├── DataClasses │ │ │ │ ├── ComplexObject.cs │ │ │ │ ├── EdmComplexPropertyAttribute.cs │ │ │ │ ├── EdmComplexTypeAttribute.cs │ │ │ │ ├── EdmEntityTypeAttribute.cs │ │ │ │ ├── EdmEnumTypeAttribute.cs │ │ │ │ ├── EdmFunctionAttribute.cs │ │ │ │ ├── EdmPropertyAttribute.cs │ │ │ │ ├── EdmRelationshipNavigationPropertyAttribute.cs │ │ │ │ ├── EdmRelationshipRoleAttribute.cs │ │ │ │ ├── EdmScalarPropertyAttribute.cs │ │ │ │ ├── EdmSchemaAttribute.cs │ │ │ │ ├── EdmTypeAttribute.cs │ │ │ │ ├── EntityCollection.cs │ │ │ │ ├── EntityObject.cs │ │ │ │ ├── EntityReference.cs │ │ │ │ ├── EntityReference`.cs │ │ │ │ ├── IEntityChangeTracker.cs │ │ │ │ ├── IEntityWithChangeTracker.cs │ │ │ │ ├── IEntityWithKey.cs │ │ │ │ ├── IEntityWithRelationships.cs │ │ │ │ ├── IRelatedEnd.cs │ │ │ │ ├── IRelationshipFixer.cs │ │ │ │ ├── RelatedEnd.cs │ │ │ │ ├── RelationshipFixer.cs │ │ │ │ ├── RelationshipKind.cs │ │ │ │ ├── RelationshipManager.cs │ │ │ │ ├── RelationshipNavigation.cs │ │ │ │ └── StructuralObject.cs │ │ │ ├── DataRecordObjectView.cs │ │ │ ├── DbUpdatableDataRecord.cs │ │ │ ├── DelegateFactory.cs │ │ │ ├── ELinq │ │ │ │ ├── Binding.cs │ │ │ │ ├── BindingContext.cs │ │ │ │ ├── CompiledELinqQueryState.cs │ │ │ │ ├── ELinqQueryState.cs │ │ │ │ ├── EntityExpressionVisitor.cs │ │ │ │ ├── Error.cs │ │ │ │ ├── ExpressionConverter.cs │ │ │ │ ├── Funcletizer.cs │ │ │ │ ├── HierarchyIdMethodCallTranslator.cs │ │ │ │ ├── InitializerFacet.cs │ │ │ │ ├── InitializerMetadata.cs │ │ │ │ ├── LinqExpressionNormalizer.cs │ │ │ │ ├── MethodCallTranslator.cs │ │ │ │ ├── ObjectQueryProvider.cs │ │ │ │ ├── OrderByLifter.cs │ │ │ │ ├── QueryParameterExpression.cs │ │ │ │ ├── ReadOnlyCollectionExtensions.cs │ │ │ │ ├── ReflectionUtil.cs │ │ │ │ ├── SequenceMethod.cs │ │ │ │ ├── SpatialMethodCallTranslator.cs │ │ │ │ ├── SpatialPropertyTranslator.cs │ │ │ │ ├── StringTranslatorUtil.cs │ │ │ │ ├── Translator.cs │ │ │ │ └── TypeSystem.cs │ │ │ ├── EntityEntry.cs │ │ │ ├── EntityFunctions.cs │ │ │ ├── EntitySetQualifiedType.cs │ │ │ ├── ExecutionOptions.cs │ │ │ ├── FieldDescriptor.cs │ │ │ ├── IObjectSet.cs │ │ │ ├── IObjectView.cs │ │ │ ├── IObjectViewData.cs │ │ │ ├── IntBox.cs │ │ │ ├── Internal │ │ │ │ ├── BaseEntityWrapper.cs │ │ │ │ ├── BaseProxyImplementor.cs │ │ │ │ ├── BufferedDataReader.cs │ │ │ │ ├── BufferedDataRecord.cs │ │ │ │ ├── DataContractImplementor.cs │ │ │ │ ├── EntityProxyFactory.cs │ │ │ │ ├── EntityProxyMemberInfo.cs │ │ │ │ ├── EntityProxyTypeInfo.cs │ │ │ │ ├── EntitySqlQueryBuilder.cs │ │ │ │ ├── EntitySqlQueryState.cs │ │ │ │ ├── EntityWithChangeTrackerStrategy.cs │ │ │ │ ├── EntityWithKeyStrategy.cs │ │ │ │ ├── EntityWrapper.cs │ │ │ │ ├── EntityWrapperFactory.cs │ │ │ │ ├── EntityWrapperWithRelationships.cs │ │ │ │ ├── EntityWrapperWithoutRelationships.cs │ │ │ │ ├── ForeignKeyFactory.cs │ │ │ │ ├── IChangeTrackingStrategy.cs │ │ │ │ ├── IEntityKeyStrategy.cs │ │ │ │ ├── IEntityWrapper.cs │ │ │ │ ├── IPOCOImplementor.cs │ │ │ │ ├── IPropertyAccessorStrategy.cs │ │ │ │ ├── LazyLoadBehavior.cs │ │ │ │ ├── LazyLoadImplementor.cs │ │ │ │ ├── LightweightEntityWrapper.cs │ │ │ │ ├── NullEntityWrapper.cs │ │ │ │ ├── ObjectFullSpanRewriter.cs │ │ │ │ ├── ObjectQueryExecutionPlan.cs │ │ │ │ ├── ObjectQueryExecutionPlanFactory.cs │ │ │ │ ├── ObjectQueryState.cs │ │ │ │ ├── ObjectSpanRewriter.cs │ │ │ │ ├── PocoEntityKeyStrategy.cs │ │ │ │ ├── PocoPropertyAccessorStrategy.cs │ │ │ │ ├── SerializableImplementor.cs │ │ │ │ ├── ShapedBufferedDataRecord.cs │ │ │ │ ├── ShapelessBufferedDataRecord.cs │ │ │ │ ├── SnapshotChangeTrackingStrategy.cs │ │ │ │ ├── TransactionManager.cs │ │ │ │ └── complextypematerializer.cs │ │ │ ├── MaterializedDataRecord.cs │ │ │ ├── MergeOption.cs │ │ │ ├── NextResultGenerator.cs │ │ │ ├── ObjectContext.cs │ │ │ ├── ObjectContextOptions.cs │ │ │ ├── ObjectMaterializedEventArgs.cs │ │ │ ├── ObjectParameter.cs │ │ │ ├── ObjectParameterCollection.cs │ │ │ ├── ObjectQuery.cs │ │ │ ├── ObjectQuery`.cs │ │ │ ├── ObjectResult.cs │ │ │ ├── ObjectResult`.cs │ │ │ ├── ObjectSet.cs │ │ │ ├── ObjectStateEntry.cs │ │ │ ├── ObjectStateEntryDbDataRecord.cs │ │ │ ├── ObjectStateEntryDbUpdatableDataRecord.cs │ │ │ ├── ObjectStateEntryOriginalDbUpdatableDataRecord_Internal.cs │ │ │ ├── ObjectStateEntryOriginalDbUpdatableDataRecord_Public.cs │ │ │ ├── ObjectStateManager.cs │ │ │ ├── ObjectStateValueRecord.cs │ │ │ ├── ObjectView.cs │ │ │ ├── ObjectViewEntityCollectionData.cs │ │ │ ├── ObjectViewFactory.cs │ │ │ ├── ObjectViewListener.cs │ │ │ ├── ObjectViewQueryResultData.cs │ │ │ ├── OriginalValueRecord.cs │ │ │ ├── ProxyDataContractResolver.cs │ │ │ ├── RefreshMode.cs │ │ │ ├── RelationshipEntry.cs │ │ │ ├── RelationshipWrapper.cs │ │ │ ├── SaveOptions.cs │ │ │ ├── Span.cs │ │ │ ├── SpanIndex.cs │ │ │ ├── StateManagerMemberMetadata.cs │ │ │ ├── StateManagerTypeMetadata.cs │ │ │ └── StateManagerValue.cs │ │ ├── OptimisticConcurrencyException.cs │ │ ├── PropertyConstraintException.cs │ │ ├── ProviderIncompatibleException.cs │ │ ├── Query │ │ │ ├── InternalTrees │ │ │ │ ├── AggregateOp.cs │ │ │ │ ├── AncillaryOp.cs │ │ │ │ ├── ApplyBaseOp.cs │ │ │ │ ├── ArithmeticOp.cs │ │ │ │ ├── BasicOpVisitor.cs │ │ │ │ ├── BasicOpVisitorOfNode.cs │ │ │ │ ├── BasicOpVisitorOfT.cs │ │ │ │ ├── BasicValidator.cs │ │ │ │ ├── CaseOp.cs │ │ │ │ ├── CastOp.cs │ │ │ │ ├── CollectOp.cs │ │ │ │ ├── CollectionColumnMap.cs │ │ │ │ ├── CollectionInfo.cs │ │ │ │ ├── ColumnMD.cs │ │ │ │ ├── ColumnMap.cs │ │ │ │ ├── ColumnMapCopier.cs │ │ │ │ ├── ColumnMapVisitor.cs │ │ │ │ ├── ColumnMapVisitorWithResults.cs │ │ │ │ ├── ColumnVar.cs │ │ │ │ ├── Command.cs │ │ │ │ ├── ComparisonOp.cs │ │ │ │ ├── ComplexTypeColumnMap.cs │ │ │ │ ├── ComputedVar.cs │ │ │ │ ├── ConditionalOp.cs │ │ │ │ ├── ConstantBaseOp.cs │ │ │ │ ├── ConstantOp.cs │ │ │ │ ├── ConstantPredicateOp.cs │ │ │ │ ├── ConstrainedSortOp.cs │ │ │ │ ├── CrossApplyOp.cs │ │ │ │ ├── CrossJoinOp.cs │ │ │ │ ├── DerefOp.cs │ │ │ │ ├── DiscriminatedCollectionColumnMap.cs │ │ │ │ ├── DiscriminatedEntityIdentity.cs │ │ │ │ ├── DiscriminatedNewEntityOp.cs │ │ │ │ ├── DistinctOp.cs │ │ │ │ ├── Dump.cs │ │ │ │ ├── ElementOp.cs │ │ │ │ ├── EntityColumnMap.cs │ │ │ │ ├── EntityIdentity.cs │ │ │ │ ├── ExceptOp.cs │ │ │ │ ├── ExistsOp.cs │ │ │ │ ├── ExplicitDiscriminatorMap.cs │ │ │ │ ├── ExtendedNodeInfo.cs │ │ │ │ ├── FilterOp.cs │ │ │ │ ├── FullOuterJoinOp.cs │ │ │ │ ├── FunctionOp.cs │ │ │ │ ├── GetEntityRefOp.cs │ │ │ │ ├── GetRefKeyOp.cs │ │ │ │ ├── GroupByBaseOp.cs │ │ │ │ ├── GroupByIntoOp.cs │ │ │ │ ├── GroupByOp.cs │ │ │ │ ├── InnerJoinOp.cs │ │ │ │ ├── InternalConstantOp.cs │ │ │ │ ├── IntersectOp.cs │ │ │ │ ├── IsOfOp.cs │ │ │ │ ├── JoinBaseOp.cs │ │ │ │ ├── KeyVec.cs │ │ │ │ ├── LeafOp.cs │ │ │ │ ├── LeftOuterJoinOp.cs │ │ │ │ ├── LikeOp.cs │ │ │ │ ├── MultiStreamNestOp.cs │ │ │ │ ├── MultipleDiscriminatorPolymorphicColumnMap.cs │ │ │ │ ├── NavigateOp.cs │ │ │ │ ├── NestBaseOp.cs │ │ │ │ ├── NewEntityBaseOp.cs │ │ │ │ ├── NewEntityOp.cs │ │ │ │ ├── NewInstanceOp.cs │ │ │ │ ├── NewMultisetOp.cs │ │ │ │ ├── NewRecordOp.cs │ │ │ │ ├── Node.cs │ │ │ │ ├── NodeCounter.cs │ │ │ │ ├── NodeInfo.cs │ │ │ │ ├── NodeInfoVisitor.cs │ │ │ │ ├── NullOp.cs │ │ │ │ ├── NullSentinelOp.cs │ │ │ │ ├── Op.cs │ │ │ │ ├── OpCopier.cs │ │ │ │ ├── OpDelegate.cs │ │ │ │ ├── OpType.cs │ │ │ │ ├── OuterApplyOp.cs │ │ │ │ ├── ParameterVar.cs │ │ │ │ ├── PatternMatchRule.cs │ │ │ │ ├── PhysicalOp.cs │ │ │ │ ├── PhysicalProjectOp.cs │ │ │ │ ├── ProjectOp.cs │ │ │ │ ├── PropertyOp.cs │ │ │ │ ├── RecordColumnMap.cs │ │ │ │ ├── RefColumnMap.cs │ │ │ │ ├── RefOp.cs │ │ │ │ ├── RelOp.cs │ │ │ │ ├── RelProperty.cs │ │ │ │ ├── RelPropertyOp.cs │ │ │ │ ├── RowCount.cs │ │ │ │ ├── Rule.cs │ │ │ │ ├── RulePatternOp.cs │ │ │ │ ├── RuleProcessingContext.cs │ │ │ │ ├── RuleProcessor.cs │ │ │ │ ├── ScalarColumnMap.cs │ │ │ │ ├── ScalarOp.cs │ │ │ │ ├── ScanTableBaseOp.cs │ │ │ │ ├── ScanTableOp.cs │ │ │ │ ├── ScanViewOp.cs │ │ │ │ ├── SetOp.cs │ │ │ │ ├── SetOpVar.cs │ │ │ │ ├── SimpleCollectionColumnMap.cs │ │ │ │ ├── SimpleColumnMap.cs │ │ │ │ ├── SimpleEntityIdentity.cs │ │ │ │ ├── SimplePolymorphicColumnMap.cs │ │ │ │ ├── SimpleRule.cs │ │ │ │ ├── SingleRowOp.cs │ │ │ │ ├── SingleRowTableOp.cs │ │ │ │ ├── SingleStreamNestOp.cs │ │ │ │ ├── SoftCastOp.cs │ │ │ │ ├── SortBaseOp.cs │ │ │ │ ├── SortKey.cs │ │ │ │ ├── SortOp.cs │ │ │ │ ├── StructuredColumnMap.cs │ │ │ │ ├── SubTreeId.cs │ │ │ │ ├── Table.cs │ │ │ │ ├── TableMD.cs │ │ │ │ ├── TreatOp.cs │ │ │ │ ├── TypedColumnMap.cs │ │ │ │ ├── UnionAllOp.cs │ │ │ │ ├── UnnestOp.cs │ │ │ │ ├── Var.cs │ │ │ │ ├── VarDefListOp.cs │ │ │ │ ├── VarDefOp.cs │ │ │ │ ├── VarList.cs │ │ │ │ ├── VarMap.cs │ │ │ │ ├── VarRefColumnMap.cs │ │ │ │ ├── VarRefOp.cs │ │ │ │ ├── VarType.cs │ │ │ │ ├── VarVec.cs │ │ │ │ ├── columnmapfactory.cs │ │ │ │ └── relpropertyhelper.cs │ │ │ ├── PlanCompiler │ │ │ │ ├── AggregatePushdown.cs │ │ │ │ ├── AggregatePushdownUtil.cs │ │ │ │ ├── AllPropertyRef.cs │ │ │ │ ├── ApplyOpRules.cs │ │ │ │ ├── AugmentedJoinNode.cs │ │ │ │ ├── AugmentedNode.cs │ │ │ │ ├── AugmentedTableNode.cs │ │ │ │ ├── CTreeGenerator.cs │ │ │ │ ├── CodeGen.cs │ │ │ │ ├── CollectionVarInfo.cs │ │ │ │ ├── ColumnMapProcessor.cs │ │ │ │ ├── ColumnMapTranslator.cs │ │ │ │ ├── CommandPlan.cs │ │ │ │ ├── ConstrainedSortOpRules.cs │ │ │ │ ├── ConstraintManager.cs │ │ │ │ ├── DiscriminatorMapInfo.cs │ │ │ │ ├── DistinctOpRules.cs │ │ │ │ ├── EntitySetIdPropertyRef.cs │ │ │ │ ├── ExtentPair.cs │ │ │ │ ├── FilterOpRules.cs │ │ │ │ ├── ForeignKeyConstraint.cs │ │ │ │ ├── GroupAggregateRefComputingVisitor.cs │ │ │ │ ├── GroupAggregateVarComputationTranslator.cs │ │ │ │ ├── GroupAggregateVarInfo.cs │ │ │ │ ├── GroupAggregateVarInfoManager.cs │ │ │ │ ├── GroupAggregateVarRefInfo.cs │ │ │ │ ├── GroupByOpRules.cs │ │ │ │ ├── ITreeGenerator.cs │ │ │ │ ├── JoinEdge.cs │ │ │ │ ├── JoinElimination.cs │ │ │ │ ├── JoinGraph.cs │ │ │ │ ├── JoinKind.cs │ │ │ │ ├── JoinOpRules.cs │ │ │ │ ├── KeyPullup.cs │ │ │ │ ├── NestPullup.cs │ │ │ │ ├── NestedPropertyRef.cs │ │ │ │ ├── NominalTypeEliminator.cs │ │ │ │ ├── Normalizer.cs │ │ │ │ ├── NullSemantics.cs │ │ │ │ ├── NullSentinelPropertyRef.cs │ │ │ │ ├── OpCopierTrackingCollectionVars.cs │ │ │ │ ├── PlanCompiler.cs │ │ │ │ ├── PlanCompilerPhase.cs │ │ │ │ ├── PlanCompilerUtil.cs │ │ │ │ ├── PreProcessor.cs │ │ │ │ ├── Predicate.cs │ │ │ │ ├── PrimitiveTypeVarInfo.cs │ │ │ │ ├── ProjectOpRules.cs │ │ │ │ ├── ProjectionPruner.cs │ │ │ │ ├── PropertyPushdownHelper.cs │ │ │ │ ├── PropertyRef.cs │ │ │ │ ├── PropertyRefList.cs │ │ │ │ ├── ProviderCommandInfoUtils.cs │ │ │ │ ├── RelPropertyRef.cs │ │ │ │ ├── RootTypeInfo.cs │ │ │ │ ├── ScalarOpRules.cs │ │ │ │ ├── SetOpRules.cs │ │ │ │ ├── SimplePropertyRef.cs │ │ │ │ ├── SingleRowOpRules.cs │ │ │ │ ├── SortOpRules.cs │ │ │ │ ├── SortRemover.cs │ │ │ │ ├── StructuredTypeInfo.cs │ │ │ │ ├── StructuredTypeNullabilityAnalyzer.cs │ │ │ │ ├── StructuredVarInfo.cs │ │ │ │ ├── SubqueryTrackingVisitor.cs │ │ │ │ ├── TransformationRules.cs │ │ │ │ ├── TransformationRulesContext.cs │ │ │ │ ├── TransformationRulesGroup.cs │ │ │ │ ├── TypeIdKind.cs │ │ │ │ ├── TypeIdPropertyRef.cs │ │ │ │ ├── TypeInfo.cs │ │ │ │ ├── TypeUsageEqualityComparer.cs │ │ │ │ ├── TypeUtils.cs │ │ │ │ ├── Validator.cs │ │ │ │ ├── VarInfo.cs │ │ │ │ ├── VarInfoKind.cs │ │ │ │ ├── VarInfoMap.cs │ │ │ │ ├── VarRefManager.cs │ │ │ │ └── VarRemapper.cs │ │ │ └── ResultAssembly │ │ │ │ ├── BridgeDataReader.cs │ │ │ │ ├── BridgeDataReaderFactory.cs │ │ │ │ └── BridgeDataRecord.cs │ │ ├── SchemaObjectModel │ │ │ ├── Action.cs │ │ │ ├── AddErrorKind.cs │ │ │ ├── BooleanFacetDescriptionElement.cs │ │ │ ├── ByteFacetDescriptionElement.cs │ │ │ ├── CollectionTypeElement.cs │ │ │ ├── DocumentationElement.cs │ │ │ ├── EntityContainer.cs │ │ │ ├── EntityContainerAssociationSet.cs │ │ │ ├── EntityContainerAssociationSetEnd.cs │ │ │ ├── EntityContainerEntitySet.cs │ │ │ ├── EntityContainerEntitySetDefiningQuery.cs │ │ │ ├── EntityContainerRelationshipSet.cs │ │ │ ├── EntityContainerRelationshipSetEnd.cs │ │ │ ├── EntityKeyElement.cs │ │ │ ├── ErrorCode.cs │ │ │ ├── FacetDescriptionElement.cs │ │ │ ├── FacetEnabledSchemaElement.cs │ │ │ ├── FilteredSchemaElementLookUpTable.cs │ │ │ ├── Function.cs │ │ │ ├── FunctionCommandText.cs │ │ │ ├── FunctionImportElement.cs │ │ │ ├── IRelationship.cs │ │ │ ├── IRelationshipEnd.cs │ │ │ ├── ISchemaElementLookUpTable.cs │ │ │ ├── IntegerFacetDescriptionElement.cs │ │ │ ├── ItemType.cs │ │ │ ├── ModelFunction.cs │ │ │ ├── ModelFunctionTypeElement.cs │ │ │ ├── NavigationProperty.cs │ │ │ ├── OnOperation.cs │ │ │ ├── Operation.cs │ │ │ ├── Parameter.cs │ │ │ ├── PrimitiveSchema.cs │ │ │ ├── Property.cs │ │ │ ├── PropertyRefElement.cs │ │ │ ├── ReferenceSchema.cs │ │ │ ├── ReferenceTypeElement.cs │ │ │ ├── ReferentialConstraint.cs │ │ │ ├── ReferentialConstraintRoleElement.cs │ │ │ ├── Relationship.cs │ │ │ ├── RelationshipEnd.cs │ │ │ ├── RelationshipEndCollection.cs │ │ │ ├── ReturnType.cs │ │ │ ├── ReturnValue.cs │ │ │ ├── RowTypeElement.cs │ │ │ ├── RowTypePropertyElement.cs │ │ │ ├── ScalarType.cs │ │ │ ├── Schema.cs │ │ │ ├── SchemaComplexType.cs │ │ │ ├── SchemaDataModelOption.cs │ │ │ ├── SchemaElement.cs │ │ │ ├── SchemaElementLookUpTable.cs │ │ │ ├── SchemaElementLookUpTableEnumerator.cs │ │ │ ├── SchemaEnumMember.cs │ │ │ ├── SchemaEnumType.cs │ │ │ ├── SchemaLookupTable.cs │ │ │ ├── SchemaManager.cs │ │ │ ├── SchemaType.cs │ │ │ ├── SridFacetDescriptionElement.cs │ │ │ ├── StructuredProperty.cs │ │ │ ├── StructuredType.cs │ │ │ ├── TextElement.cs │ │ │ ├── TypeElement.cs │ │ │ ├── TypeModifier.cs │ │ │ ├── TypeRefElement.cs │ │ │ ├── TypeUsageBuilder.cs │ │ │ ├── Utils.cs │ │ │ ├── ValidationHelper.cs │ │ │ └── XmlSchemaResource.cs │ │ └── UpdateException.cs │ ├── CreateDatabaseIfNotExists`.cs │ ├── DataAnnotations │ │ ├── MaxLengthAttribute.cs │ │ ├── MinLengthAttribute.cs │ │ └── Schema │ │ │ ├── ColumnAttribute.cs │ │ │ ├── ComplexTypeAttribute.cs │ │ │ ├── DatabaseGeneratedAttribute.cs │ │ │ ├── DatabaseGeneratedOption.cs │ │ │ ├── ForeignKeyAttribute.cs │ │ │ ├── IndexAttribute.cs │ │ │ ├── InversePropertyAttribute.cs │ │ │ ├── NotMappedAttribute.cs │ │ │ └── TableAttribute.cs │ ├── Database.cs │ ├── DbConfiguration.cs │ ├── DbConfigurationTypeAttribute.cs │ ├── DbContext.cs │ ├── DbContextTransaction.cs │ ├── DbFunctionAttribute.cs │ ├── DbFunctions.cs │ ├── DbModelBuilder.cs │ ├── DbModelBuilderVersion.cs │ ├── DbModelBuilderVersionAttribute.cs │ ├── DbSet.cs │ ├── DbSet`.cs │ ├── DropCreateDatabaseAlways`.cs │ ├── DropCreateDatabaseIfModelChanges`.cs │ ├── Edm │ │ └── EdmModelVisitor.cs │ ├── EntityFramework.InternalsVisibleTo.csproj │ ├── EntityFramework.csproj │ ├── EntityState.cs │ ├── GlobalSuppressions.cs │ ├── Hierarchy │ │ ├── DbHierarchyServices.cs │ │ └── HierarchyId.cs │ ├── IDatabaseInitializer`.cs │ ├── IDbSet`.cs │ ├── Infrastructure │ │ ├── Annotations │ │ │ ├── AnnotationCodeGenerator.cs │ │ │ ├── AnnotationValues.cs │ │ │ ├── CompatibilityResult.cs │ │ │ ├── IMergeableAnnotation.cs │ │ │ ├── IndexAnnotation.cs │ │ │ ├── IndexAnnotationSerializer.cs │ │ │ └── IndexAttributeExtensions.cs │ │ ├── ConsolidatedIndex.cs │ │ ├── DbChangeTracker.cs │ │ ├── DbCollectionEntry.cs │ │ ├── DbCollectionEntry`.cs │ │ ├── DbCompiledModel.cs │ │ ├── DbComplexPropertyEntry.cs │ │ ├── DbComplexPropertyEntry`.cs │ │ ├── DbConnectionInfo.cs │ │ ├── DbConnectionStringOrigin.cs │ │ ├── DbContextConfiguration.cs │ │ ├── DbContextInfo.cs │ │ ├── DbEntityEntry.cs │ │ ├── DbEntityEntry`.cs │ │ ├── DbExecutionStrategy.cs │ │ ├── DbMemberEntry.cs │ │ ├── DbMemberEntry`.cs │ │ ├── DbModel.cs │ │ ├── DbModelStore.cs │ │ ├── DbPropertyEntry.cs │ │ ├── DbPropertyEntry`.cs │ │ ├── DbPropertyValues.cs │ │ ├── DbProviderInfo.cs │ │ ├── DbQuery.cs │ │ ├── DbQuery`.cs │ │ ├── DbRawSqlQuery.cs │ │ ├── DbRawSqlQuery`.cs │ │ ├── DbReferenceEntry.cs │ │ ├── DbReferenceEntry`.cs │ │ ├── DbSqlQuery.cs │ │ ├── DbSqlQuery`.cs │ │ ├── DbUpdateConcurrencyException.cs │ │ ├── DbUpdateException.cs │ │ ├── DefaultDbModelStore.cs │ │ ├── DefaultDbProviderFactoryResolver.cs │ │ ├── DefaultExecutionStrategy.cs │ │ ├── DefaultManifestTokenResolver.cs │ │ ├── DependencyResolution │ │ │ ├── AppConfigDependencyResolver.cs │ │ │ ├── CachingDependencyResolver.cs │ │ │ ├── ClrTypeAnnotationSerializer.cs │ │ │ ├── CompositeResolver`.cs │ │ │ ├── DatabaseInitializerResolver.cs │ │ │ ├── DbConfigurationFinder.cs │ │ │ ├── DbConfigurationLoadedEventArgs.cs │ │ │ ├── DbConfigurationLoader.cs │ │ │ ├── DbConfigurationManager.cs │ │ │ ├── DefaultExecutionStrategyResolver.cs │ │ │ ├── DefaultInvariantNameResolver.cs │ │ │ ├── DefaultProviderFactoryResolver.cs │ │ │ ├── DefaultProviderServicesResolver.cs │ │ │ ├── ExecutionStrategyResolver.cs │ │ │ ├── IDbDependencyResolver.cs │ │ │ ├── IDbDependencyResolverExtensions.cs │ │ │ ├── InternalConfiguration.cs │ │ │ ├── InvariantNameResolver.cs │ │ │ ├── NamedDbProviderService.cs │ │ │ ├── ProviderServicesFactory.cs │ │ │ ├── ResolverChain.cs │ │ │ ├── RootDependencyResolver.cs │ │ │ ├── SingletonDependencyResolver.cs │ │ │ ├── TransactionContextInitializerResolver.cs │ │ │ ├── TransactionHandlerResolver.cs │ │ │ └── WrappingDependencyResolver`.cs │ │ ├── Design │ │ │ ├── AppConfigReader.cs │ │ │ ├── Executor.cs │ │ │ ├── ForwardingProxy.cs │ │ │ ├── HandlerBase.cs │ │ │ ├── IReportHandler.cs │ │ │ ├── IResultHandler.cs │ │ │ ├── IResultHandler2.cs │ │ │ ├── ReportHandler.cs │ │ │ ├── Reporter.cs │ │ │ ├── ResultHandler.cs │ │ │ ├── WrappedReportHandler.cs │ │ │ └── WrappedResultHandler.cs │ │ ├── EdmMetadata.cs │ │ ├── EdmxReader.cs │ │ ├── EdmxWriter.cs │ │ ├── ExecutionStrategyKey.cs │ │ ├── IDbAsyncEnumerable.cs │ │ ├── IDbAsyncEnumerableExtensions.cs │ │ ├── IDbAsyncEnumerable`.cs │ │ ├── IDbAsyncEnumerator.cs │ │ ├── IDbAsyncEnumeratorExtensions.cs │ │ ├── IDbAsyncEnumerator`.cs │ │ ├── IDbAsyncQueryProvider.cs │ │ ├── IDbConnectionFactory.cs │ │ ├── IDbContextFactory.cs │ │ ├── IDbExecutionStrategy.cs │ │ ├── IDbModelCacheKey.cs │ │ ├── IDbModelCacheKeyProvider.cs │ │ ├── IDbProviderFactoryResolver.cs │ │ ├── IManifestTokenResolver.cs │ │ ├── IMetadataAnnotationSerializer.cs │ │ ├── IObjectContextAdapter.cs │ │ ├── IProviderInvariantName.cs │ │ ├── IncludeMetadataConvention.cs │ │ ├── Interception │ │ │ ├── BeginTransactionInterceptionContext.cs │ │ │ ├── CancelableDbCommandDispatcher.cs │ │ │ ├── CancelableEntityConnectionDispatcher.cs │ │ │ ├── DatabaseLogFormatter.cs │ │ │ ├── DatabaseLogger.cs │ │ │ ├── DbCommandDispatcher.cs │ │ │ ├── DbCommandInterceptionContext.cs │ │ │ ├── DbCommandInterceptionContext`.cs │ │ │ ├── DbCommandInterceptor.cs │ │ │ ├── DbCommandTreeDispatcher.cs │ │ │ ├── DbCommandTreeInterceptionContext.cs │ │ │ ├── DbConfigurationDispatcher.cs │ │ │ ├── DbConfigurationInterceptionContext.cs │ │ │ ├── DbConnectionDispatcher.cs │ │ │ ├── DbConnectionInterceptionContext.cs │ │ │ ├── DbConnectionInterceptionContext`.cs │ │ │ ├── DbConnectionPropertyInterceptionContext.cs │ │ │ ├── DbDispatchers.cs │ │ │ ├── DbInterception.cs │ │ │ ├── DbInterceptionContext.cs │ │ │ ├── DbTransactionDispatcher.cs │ │ │ ├── DbTransactionInterceptionContext.cs │ │ │ ├── DbTransactionInterceptionContext`.cs │ │ │ ├── EnlistTransactionInterceptionContext.cs │ │ │ ├── ICancelableDbCommandInterceptor.cs │ │ │ ├── ICancelableEntityConnectionInterceptor.cs │ │ │ ├── IDbCommandInterceptor.cs │ │ │ ├── IDbCommandTreeInterceptor.cs │ │ │ ├── IDbConfigurationInterceptor.cs │ │ │ ├── IDbConnectionInterceptor.cs │ │ │ ├── IDbInterceptor.cs │ │ │ ├── IDbMutableInterceptionContext.cs │ │ │ ├── IDbMutableInterceptionContext`.cs │ │ │ ├── IDbTransactionInterceptor.cs │ │ │ ├── InterceptionContextMutableData.cs │ │ │ ├── InterceptionContextMutableData`.cs │ │ │ ├── InternalDispatcher.cs │ │ │ ├── MutableInterceptionContext.cs │ │ │ ├── MutableInterceptionContext`.cs │ │ │ └── PropertyInterceptionContext.cs │ │ ├── LocalDbConnectionFactory.cs │ │ ├── MappingViews │ │ │ ├── DbMappingView.cs │ │ │ ├── DbMappingViewCache.cs │ │ │ ├── DbMappingViewCacheFactory.cs │ │ │ ├── DbMappingViewCacheTypeAttribute.cs │ │ │ └── DefaultDbMappingViewCacheFactory.cs │ │ ├── ModelContainerConvention.cs │ │ ├── ModelNamespaceConvention.cs │ │ ├── Net40DefaultDbProviderFactoryResolver.cs │ │ ├── ObjectReferenceEqualityComparer.cs │ │ ├── Pluralization │ │ │ ├── BidirectionalDictionary.cs │ │ │ ├── CustomPluralizationEntry.cs │ │ │ ├── EnglishPluralizationService.cs │ │ │ ├── IPluralizationService.cs │ │ │ └── PluralizationServiceUtil.cs │ │ ├── ProviderInvariantName.cs │ │ ├── ReplacementDbQueryWrapper`.cs │ │ ├── RetryLimitExceededException.cs │ │ ├── SqlCeConnectionFactory.cs │ │ ├── SqlConnectionFactory.cs │ │ ├── SuppressDbSetInitializationAttribute.cs │ │ ├── TableExistenceChecker.cs │ │ ├── Transactions │ │ │ ├── CommitFailedException.cs │ │ │ ├── CommitFailureHandler.cs │ │ │ ├── DefaultTransactionHandler.cs │ │ │ ├── TransactionContext.cs │ │ │ ├── TransactionContextInitializer.cs │ │ │ ├── TransactionHandler.cs │ │ │ └── TransactionRow.cs │ │ └── UnintentionalCodeFirstException.cs │ ├── Internal │ │ ├── AppConfig.cs │ │ ├── ClonedObjectContext.cs │ │ ├── CodeFirstCachedMetadataWorkspace.cs │ │ ├── CommandTracer.cs │ │ ├── ConfigFile │ │ │ ├── ContextCollection.cs │ │ │ ├── ContextElement.cs │ │ │ ├── DatabaseInitializerElement.cs │ │ │ ├── DefaultConnectionFactoryElement.cs │ │ │ ├── EntityFrameworkSection.cs │ │ │ ├── InterceptorElement.cs │ │ │ ├── InterceptorsCollection.cs │ │ │ ├── ParameterCollection.cs │ │ │ ├── ParameterElement.cs │ │ │ ├── ProviderCollection.cs │ │ │ ├── ProviderElement.cs │ │ │ └── QueryCacheElement.cs │ │ ├── ContextConfig.cs │ │ ├── DatabaseCreator.cs │ │ ├── DatabaseExistenceState.cs │ │ ├── DatabaseOperations.cs │ │ ├── DatabaseTableChecker.cs │ │ ├── DbContextTypesInitializersPair.cs │ │ ├── DbHelpers.cs │ │ ├── DbLocalView`.cs │ │ ├── DbSetDiscoveryService.cs │ │ ├── DefaultModelCacheKey.cs │ │ ├── DefaultModelCacheKeyFactory.cs │ │ ├── EagerInternalConnection.cs │ │ ├── EagerInternalContext.cs │ │ ├── EdmMetadataContext.cs │ │ ├── EdmMetadataRepository.cs │ │ ├── EntityEntries │ │ │ ├── ClonedPropertyValues.cs │ │ │ ├── ClonedPropertyValuesItem.cs │ │ │ ├── DbDataRecordPropertyValues.cs │ │ │ ├── DbDataRecordPropertyValuesItem.cs │ │ │ ├── IEntityStateEntry.cs │ │ │ ├── IPropertyValuesItem.cs │ │ │ ├── InternalCollectionEntry.cs │ │ │ ├── InternalEntityEntry.cs │ │ │ ├── InternalEntityPropertyEntry.cs │ │ │ ├── InternalMemberEntry.cs │ │ │ ├── InternalNavigationEntry.cs │ │ │ ├── InternalNestedPropertyEntry.cs │ │ │ ├── InternalPropertyEntry.cs │ │ │ ├── InternalPropertyValues.cs │ │ │ ├── InternalReferenceEntry.cs │ │ │ ├── MemberEntryMetadata.cs │ │ │ ├── MemberEntryType.cs │ │ │ ├── NavigationEntryMetadata.cs │ │ │ ├── ObjectContextTypeCache.cs │ │ │ ├── PropertyEntryMetadata.cs │ │ │ ├── ReadOnlySet`.cs │ │ │ └── StateEntryAdapter.cs │ │ ├── EntitySetTypePair.cs │ │ ├── ICachedMetadataWorkspace.cs │ │ ├── IDbEnumerator.cs │ │ ├── IInternalConnection.cs │ │ ├── InitializerConfig.cs │ │ ├── InitializerLockPair.cs │ │ ├── InterceptableDbCommand.cs │ │ ├── InternalConnection.cs │ │ ├── InternalContext.cs │ │ ├── InternalSqlNonSetQuery.cs │ │ ├── InternalSqlQuery.cs │ │ ├── InternalSqlSetQuery.cs │ │ ├── LazyAsyncEnumerator.cs │ │ ├── LazyEnumerator`.cs │ │ ├── LazyInternalConnection.cs │ │ ├── LazyInternalContext.cs │ │ ├── Linq │ │ │ ├── DbQueryProvider.cs │ │ │ ├── DbQueryVisitor.cs │ │ │ ├── IInternalQuery.cs │ │ │ ├── IInternalQueryAdapter.cs │ │ │ ├── IInternalQuery`.cs │ │ │ ├── IInternalSet.cs │ │ │ ├── IInternalSetAdapter.cs │ │ │ ├── IInternalSet`.cs │ │ │ ├── InternalDbQuery`.cs │ │ │ ├── InternalDbSet`.cs │ │ │ ├── InternalQuery`.cs │ │ │ ├── InternalSet`.cs │ │ │ └── NonGenericDbQueryProvider.cs │ │ ├── MockingProxies │ │ │ ├── EntityConnectionProxy.cs │ │ │ └── ObjectContextProxy.cs │ │ ├── ModelCompatibilityChecker.cs │ │ ├── ModelHashCalculator.cs │ │ ├── ObservableBackedBindingList`.cs │ │ ├── QueryCacheConfig.cs │ │ ├── RepositoryBase.cs │ │ ├── RetryAction`.cs │ │ ├── RetryLazy`.cs │ │ ├── SortableBindingList`.cs │ │ ├── ThrowingMonitor.cs │ │ ├── Validation │ │ │ ├── ComplexPropertyValidator.cs │ │ │ ├── ComplexTypeValidator.cs │ │ │ ├── EntityValidationContext.cs │ │ │ ├── EntityValidator.cs │ │ │ ├── EntityValidatorBuilder.cs │ │ │ ├── IValidator.cs │ │ │ ├── PropertyValidator.cs │ │ │ ├── TypeValidator.cs │ │ │ ├── ValidatableObjectValidator.cs │ │ │ ├── ValidationAttributeValidator.cs │ │ │ └── ValidationProvider.cs │ │ └── WrappedEntityKey.cs │ ├── MigrateDatabaseToLatestVersion`.cs │ ├── Migrations │ │ ├── Builders │ │ │ ├── ColumnBuilder.cs │ │ │ ├── ParameterBuilder.cs │ │ │ └── TableBuilder.cs │ │ ├── DbMigration.cs │ │ ├── DbMigrationsConfiguration.cs │ │ ├── DbMigrationsConfiguration`.cs │ │ ├── DbMigrator.cs │ │ ├── DbSetMigrationsExtensions.cs │ │ ├── Design │ │ │ ├── CSharpMigrationCodeGenerator.cs │ │ │ ├── MigrationCodeGenerator.cs │ │ │ ├── MigrationScaffolder.cs │ │ │ ├── ScaffoldedMigration.cs │ │ │ ├── ToolingException.cs │ │ │ ├── ToolingFacade.cs │ │ │ └── VisualBasicMigrationCodeGenerator.cs │ │ ├── Edm │ │ │ ├── EdmXNames.cs │ │ │ └── ModelCompressor.cs │ │ ├── History │ │ │ ├── HistoryContext.cs │ │ │ ├── HistoryRepository.cs │ │ │ ├── HistoryRow.cs │ │ │ └── LegacyHistoryContext.cs │ │ ├── Infrastructure │ │ │ ├── AutomaticDataLossException.cs │ │ │ ├── AutomaticMigrationsDisabledException.cs │ │ │ ├── DynamicToFunctionModificationCommandConverter.cs │ │ │ ├── EdmModelDiffer.cs │ │ │ ├── IDbMigration.cs │ │ │ ├── IMigrationMetadata.cs │ │ │ ├── MigrationAssembly.cs │ │ │ ├── MigrationsException.cs │ │ │ ├── MigrationsLogger.cs │ │ │ ├── MigrationsPendingException.cs │ │ │ ├── MigratorBase.cs │ │ │ ├── MigratorLoggingDecorator.cs │ │ │ ├── MigratorScriptingDecorator.cs │ │ │ ├── ModificationCommandTreeGenerator.cs │ │ │ └── VersionedModel.cs │ │ ├── Model │ │ │ ├── AddColumnOperation.cs │ │ │ ├── AddForeignKeyOperation.cs │ │ │ ├── AddPrimaryKeyOperation.cs │ │ │ ├── AlterColumnOperation.cs │ │ │ ├── AlterProcedureOperation.cs │ │ │ ├── AlterTableOperation.cs │ │ │ ├── ColumnModel.cs │ │ │ ├── CreateIndexOperation.cs │ │ │ ├── CreateProcedureOperation.cs │ │ │ ├── CreateTableOperation.cs │ │ │ ├── DropColumnOperation.cs │ │ │ ├── DropForeignKeyOperation.cs │ │ │ ├── DropIndexOperation.cs │ │ │ ├── DropPrimaryKeyOperation.cs │ │ │ ├── DropProcedureOperation.cs │ │ │ ├── DropTableOperation.cs │ │ │ ├── ForeignKeyOperation.cs │ │ │ ├── HistoryOperation.cs │ │ │ ├── IAnnotationTarget.cs │ │ │ ├── IndexOperation.cs │ │ │ ├── MigrationOperation.cs │ │ │ ├── MoveProcedureOperation.cs │ │ │ ├── MoveTableOperation.cs │ │ │ ├── NotSupportedOperation.cs │ │ │ ├── ParameterModel.cs │ │ │ ├── PrimaryKeyOperation.cs │ │ │ ├── ProcedureOperation.cs │ │ │ ├── PropertyModel.cs │ │ │ ├── RenameColumnOperation.cs │ │ │ ├── RenameIndexOperation.cs │ │ │ ├── RenameProcedureOperation.cs │ │ │ ├── RenameTableOperation.cs │ │ │ ├── SqlOperation.cs │ │ │ └── UpdateDatabaseOperation.cs │ │ ├── Sql │ │ │ ├── MigrationSqlGenerator.cs │ │ │ └── MigrationStatement.cs │ │ └── Utilities │ │ │ ├── ConfigurationFileUpdater.cs │ │ │ ├── DatabaseCreator.cs │ │ │ ├── EmptyContext.cs │ │ │ ├── IndentedTextWriter.cs │ │ │ ├── MigrationsConfigurationFinder.cs │ │ │ └── UtcNowGenerator.cs │ ├── ModelConfiguration │ │ ├── ComplexTypeConfiguration.cs │ │ ├── Configuration │ │ │ ├── ConfigurationBase.cs │ │ │ ├── ConfigurationRegistrar.cs │ │ │ ├── ConfigurationTypeActivator.cs │ │ │ ├── ConfigurationTypeFilter.cs │ │ │ ├── ConfigurationTypesFinder.cs │ │ │ ├── Conventions │ │ │ │ ├── ModelConventionDispatcher.cs │ │ │ │ ├── PropertyConfigurationConventionDispatcher.cs │ │ │ │ ├── PropertyConventionConfiguration.cs │ │ │ │ ├── PropertyConventionWithHavingConfiguration.cs │ │ │ │ ├── TypeConventionConfiguration.cs │ │ │ │ ├── TypeConventionConfiguration`.cs │ │ │ │ ├── TypeConventionWithHavingConfiguration.cs │ │ │ │ └── TypeConventionWithHavingConfiguration`.cs │ │ │ ├── ConventionsConfiguration.cs │ │ │ ├── ConventionsTypeActivator.cs │ │ │ ├── ConventionsTypeFilter.cs │ │ │ ├── ConventionsTypeFinder.cs │ │ │ ├── Functions │ │ │ │ ├── AssociationModificationStoredProcedureConfiguration.cs │ │ │ │ ├── ConventionDeleteModificationStoredProcedureConfiguration.cs │ │ │ │ ├── ConventionInsertModificationStoredProcedureConfiguration.cs │ │ │ │ ├── ConventionModificationStoredProcedureConfiguration.cs │ │ │ │ ├── ConventionModificationStoredProceduresConfiguration.cs │ │ │ │ ├── ConventionUpdateModificationStoredProcedureConfiguration.cs │ │ │ │ ├── DeleteModificationStoredProcedureConfiguration`.cs │ │ │ │ ├── InsertModificationStoredProcedureConfiguration`.cs │ │ │ │ ├── ManyToManyModificationStoredProcedureConfiguration``.cs │ │ │ │ ├── ManyToManyModificationStoredProceduresConfiguration``.cs │ │ │ │ ├── ModificationStoredProcedureConfiguration.cs │ │ │ │ ├── ModificationStoredProcedureConfiguration`.cs │ │ │ │ ├── ModificationStoredProceduresConfiguration.cs │ │ │ │ ├── ModificationStoredProceduresConfiguration`.cs │ │ │ │ └── UpdateModificationStoredProcedureConfiguration`.cs │ │ │ ├── Mapping │ │ │ │ ├── EdmPropertyPath.cs │ │ │ │ ├── EntityMappingConfiguration.cs │ │ │ │ ├── EntityMappingConfiguration`.cs │ │ │ │ ├── EntityMappingTransformer.cs │ │ │ │ ├── LengthColumnConfiguration.cs │ │ │ │ ├── NotNullConditionConfiguration.cs │ │ │ │ ├── PrimitiveColumnConfiguration.cs │ │ │ │ ├── Services │ │ │ │ │ ├── ColumnMapping.cs │ │ │ │ │ ├── EntityMappingService.cs │ │ │ │ │ ├── PropertyMappingSpecification.cs │ │ │ │ │ ├── SortedEntityTypeIndex.cs │ │ │ │ │ └── TableMapping.cs │ │ │ │ ├── StringColumnConfiguration.cs │ │ │ │ └── ValueConditionConfiguration.cs │ │ │ ├── ModelConfiguration.cs │ │ │ ├── Properties │ │ │ │ ├── Index │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── IndexConfiguration.cs │ │ │ │ │ │ └── PrimaryKeyIndexConfiguration.cs │ │ │ │ │ └── IndexConfiguration.cs │ │ │ │ ├── Navigation │ │ │ │ │ ├── ConstraintConfiguration.cs │ │ │ │ │ ├── ConventionNavigationPropertyConfiguration.cs │ │ │ │ │ ├── ForeignKeyConstraintConfiguration.cs │ │ │ │ │ ├── HasX │ │ │ │ │ │ ├── ManyNavigationPropertyConfiguration.cs │ │ │ │ │ │ ├── OptionalNavigationPropertyConfiguration.cs │ │ │ │ │ │ └── RequiredNavigationPropertyConfiguration.cs │ │ │ │ │ ├── IndependentConstraintConfiguration.cs │ │ │ │ │ ├── NavigationPropertyConfiguration.cs │ │ │ │ │ └── WithX │ │ │ │ │ │ ├── AssociationMappingConfiguration.cs │ │ │ │ │ │ ├── CascadableNavigationPropertyConfiguration.cs │ │ │ │ │ │ ├── DependentNavigationPropertyConfiguration.cs │ │ │ │ │ │ ├── ForeignKeyAssociationMappingConfiguration.cs │ │ │ │ │ │ ├── ForeignKeyNavigationPropertyConfiguration.cs │ │ │ │ │ │ ├── ManyToManyAssociationMappingConfiguration.cs │ │ │ │ │ │ └── ManyToManyNavigationPropertyConfiguration.cs │ │ │ │ ├── Primitive │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── BinaryPropertyConfiguration.cs │ │ │ │ │ │ ├── DateTimePropertyConfiguration.cs │ │ │ │ │ │ ├── DecimalPropertyConfiguration.cs │ │ │ │ │ │ ├── LengthPropertyConfiguration.cs │ │ │ │ │ │ ├── PrimitivePropertyConfiguration.cs │ │ │ │ │ │ ├── PropertyMappingConfiguration.cs │ │ │ │ │ │ └── StringPropertyConfiguration.cs │ │ │ │ │ ├── BinaryPropertyConfiguration.cs │ │ │ │ │ ├── ConventionPrimitivePropertyConfiguration.cs │ │ │ │ │ ├── DateTimePropertyConfiguration.cs │ │ │ │ │ ├── DecimalPropertyConfiguration.cs │ │ │ │ │ ├── LengthPropertyConfiguration.cs │ │ │ │ │ ├── OverridableConfigurationParts.cs │ │ │ │ │ ├── PrimitivePropertyConfiguration.cs │ │ │ │ │ └── StringPropertyConfiguration.cs │ │ │ │ └── PropertyConfiguration.cs │ │ │ ├── TphColumnFixer.cs │ │ │ └── Types │ │ │ │ ├── ComplexTypeConfiguration.cs │ │ │ │ ├── ConventionTypeConfiguration.cs │ │ │ │ ├── ConventionTypeConfiguration`.cs │ │ │ │ ├── EntityTypeConfiguration.cs │ │ │ │ ├── StructuralTypeConfiguration.cs │ │ │ │ └── StructuralTypeConfiguration`.cs │ │ ├── Conventions │ │ │ ├── Configuration │ │ │ │ ├── IConfigurationConvention.cs │ │ │ │ ├── IConfigurationConvention`.cs │ │ │ │ ├── IConfigurationConvention``.cs │ │ │ │ ├── Lightweight │ │ │ │ │ ├── PropertyConvention.cs │ │ │ │ │ ├── PropertyConventionBase.cs │ │ │ │ │ ├── PropertyConventionWithHaving.cs │ │ │ │ │ ├── TypeConvention.cs │ │ │ │ │ ├── TypeConventionBase.cs │ │ │ │ │ ├── TypeConventionWithHaving.cs │ │ │ │ │ ├── TypeConventionWithHavingBase.cs │ │ │ │ │ ├── TypeConventionWithHaving`.cs │ │ │ │ │ └── TypeConvention`.cs │ │ │ │ ├── Property │ │ │ │ │ ├── AttributeToColumnAnnotationConvention.cs │ │ │ │ │ ├── AttributeToTableAnnotationConvention.cs │ │ │ │ │ ├── ColumnAttributeConvention.cs │ │ │ │ │ ├── ConcurrencyCheckAttributeConvention.cs │ │ │ │ │ ├── DatabaseGeneratedAttributeConvention.cs │ │ │ │ │ ├── ForeignKeyPrimitivePropertyAttributeConvention.cs │ │ │ │ │ ├── IndexAttributeConvention.cs │ │ │ │ │ ├── InversePropertyAttributeConvention.cs │ │ │ │ │ ├── KeyAttributeConvention.cs │ │ │ │ │ ├── MaxLengthAttributeConvention.cs │ │ │ │ │ ├── NotMappedPropertyAttributeConvention.cs │ │ │ │ │ ├── PrimitivePropertyAttributeConfigurationConvention.cs │ │ │ │ │ ├── PropertyAttributeConfigurationConvention.cs │ │ │ │ │ ├── RequiredNavigationPropertyAttributeConvention.cs │ │ │ │ │ ├── RequiredPrimitivePropertyAttributeConvention.cs │ │ │ │ │ ├── StringLengthAttributeConvention.cs │ │ │ │ │ └── TimestampAttributeConvention.cs │ │ │ │ └── Type │ │ │ │ │ ├── ComplexTypeAttributeConvention.cs │ │ │ │ │ ├── NotMappedTypeAttributeConvention.cs │ │ │ │ │ ├── TableAttributeConvention.cs │ │ │ │ │ └── TypeAttributeConfigurationConvention.cs │ │ │ ├── Convention.cs │ │ │ ├── Edm │ │ │ │ ├── AssociationInverseDiscoveryConvention.cs │ │ │ │ ├── ComplexTypeDiscoveryConvention.cs │ │ │ │ ├── Db │ │ │ │ │ ├── ColumnOrderingConvention.cs │ │ │ │ │ ├── ColumnOrderingConventionStrict.cs │ │ │ │ │ ├── ForeignKeyIndexConvention.cs │ │ │ │ │ ├── Mapping │ │ │ │ │ │ ├── IDbMappingConvention.cs │ │ │ │ │ │ ├── ManyToManyCascadeDeleteConvention.cs │ │ │ │ │ │ └── MappingInheritedPropertiesSupportConvention.cs │ │ │ │ │ └── PluralizingTableNameConvention.cs │ │ │ │ ├── DecimalPropertyConvention.cs │ │ │ │ ├── DeclaredPropertyOrderingConvention.cs │ │ │ │ ├── ForeignKeyAssociationMultiplicityConvention.cs │ │ │ │ ├── ForeignKeyDiscoveryConvention.cs │ │ │ │ ├── ForeignKeyNavigationPropertyAttributeConvention.cs │ │ │ │ ├── IdKeyDiscoveryConvention.cs │ │ │ │ ├── KeyDiscoveryConvention.cs │ │ │ │ ├── NavigationPropertyNameForeignKeyDiscoveryConvention.cs │ │ │ │ ├── OneToManyCascadeDeleteConvention.cs │ │ │ │ ├── OneToOneConstraintIntroductionConvention.cs │ │ │ │ ├── PluralizingEntitySetNameConvention.cs │ │ │ │ ├── PrimaryKeyNameForeignKeyDiscoveryConvention.cs │ │ │ │ ├── PropertyMaxLengthConvention.cs │ │ │ │ ├── SqlCePropertyMaxLengthConvention.cs │ │ │ │ ├── StoreGeneratedIdentityKeyConvention.cs │ │ │ │ └── TypeNameForeignKeyDiscoveryConvention.cs │ │ │ ├── IConceptualModelConvention`.cs │ │ │ ├── IConvention.cs │ │ │ ├── IStoreModelConvention`.cs │ │ │ └── Sets │ │ │ │ ├── ConventionSet.cs │ │ │ │ ├── V1ConventionSet.cs │ │ │ │ └── V2ConventionSet.cs │ │ ├── Edm │ │ │ ├── AssociationTypeExtensions.cs │ │ │ ├── ColumnMappingBuilderExtensions.cs │ │ │ ├── ComplexTypeExtensions.cs │ │ │ ├── DataModelErrorEventArgsExtensions.cs │ │ │ ├── DbDatabaseMappingExtensions.cs │ │ │ ├── EdmMemberExtensions.cs │ │ │ ├── EdmModelExtensions.cs │ │ │ ├── EdmPropertyExtensions.cs │ │ │ ├── EdmTypeExtensions.cs │ │ │ ├── EntitySetExtensions.cs │ │ │ ├── EntityTypeExtensions.cs │ │ │ ├── EnumTypeExtensions.cs │ │ │ ├── ForeignKeyBuilderExtensions.cs │ │ │ ├── FunctionParameterExtensions.cs │ │ │ ├── INamedDataModelItemExtensions.cs │ │ │ ├── MetadataPropertyExtensions.cs │ │ │ ├── NavigationPropertyExtensions.cs │ │ │ ├── RelationshipEndMemberExtensions.cs │ │ │ ├── RelationshipMultiplicityExtensions.cs │ │ │ ├── Serialization │ │ │ │ └── EdmxSerializer.cs │ │ │ ├── Services │ │ │ │ ├── AssociationTypeMappingGenerator.cs │ │ │ │ ├── DatabaseMappingGenerator.cs │ │ │ │ ├── FunctionParameterMappingGenerator.cs │ │ │ │ ├── ModificationFunctionMappingGenerator.cs │ │ │ │ ├── PropertyMappingGenerator.cs │ │ │ │ ├── StructuralTypeMappingGenerator.cs │ │ │ │ └── TableMappingGenerator.cs │ │ │ ├── StorageAssociationSetMappingExtensions.cs │ │ │ ├── StorageEntityTypeMappingExtensions.cs │ │ │ └── StorageMappingFragmentExtensions.cs │ │ ├── EntityTypeConfiguration.cs │ │ ├── Mappers │ │ │ ├── AttributeMapper.cs │ │ │ ├── MappingContext.cs │ │ │ ├── NavigationPropertyMapper.cs │ │ │ ├── PropertyFilter.cs │ │ │ ├── PropertyMapper.cs │ │ │ └── TypeMapper.cs │ │ ├── ModelValidationException.cs │ │ └── Utilities │ │ │ ├── AttributeProvider.cs │ │ │ └── PropertyPath.cs │ ├── NullDatabaseInitializer.cs │ ├── ObservableCollectionExtensions.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── InternalsVisibleTo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ └── Resources.tt │ ├── QueryableExtensions.cs │ ├── Resources │ │ └── System │ │ │ └── Data │ │ │ ├── EntityModel │ │ │ ├── System.Data.Resources.AnnotationSchema.xsd │ │ │ ├── System.Data.Resources.CSDLSchema_1.xsd │ │ │ ├── System.Data.Resources.CSDLSchema_1_1.xsd │ │ │ ├── System.Data.Resources.CSDLSchema_2.xsd │ │ │ ├── System.Data.Resources.CSDLSchema_3.xsd │ │ │ ├── System.Data.Resources.CodeGenerationSchema.xsd │ │ │ ├── System.Data.Resources.SSDLSchema.xsd │ │ │ ├── System.Data.Resources.SSDLSchema_2.xsd │ │ │ ├── System.Data.Resources.SSDLSchema_3.xsd │ │ │ └── system.data.resources.entitystoreschemagenerator.xsd │ │ │ ├── MappingSpecification │ │ │ ├── System.Data.Resources.CSMSL_1.xsd │ │ │ ├── System.Data.Resources.CSMSL_2.xsd │ │ │ └── System.Data.Resources.CSMSL_3.xsd │ │ │ ├── System.Data.Resources.DbProviderServices.ConceptualSchemaDefinition.csdl │ │ │ ├── System.Data.Resources.DbProviderServices.ConceptualSchemaDefinitionVersion3.csdl │ │ │ └── System.Data.Resources.ProviderServices.ProviderManifest.xsd │ ├── Spatial │ │ ├── DbGeography.cs │ │ ├── DbGeographyWellKnownValue.cs │ │ ├── DbGeometry.cs │ │ ├── DbGeometryWellKnownValue.cs │ │ ├── DbSpatialDataReader.cs │ │ ├── DbSpatialServices.cs │ │ ├── DefaultSpatialServices.cs │ │ ├── SpatialHelpers.cs │ │ └── SpatialServicesLoader.cs │ ├── TransactionalBehavior.cs │ ├── Utilities │ │ ├── BoolExtensions.cs │ │ ├── DbConnectionExtensions.cs │ │ ├── DbContextExtensions.cs │ │ ├── DbModelBuilderVersionExtensions.cs │ │ ├── DbModelExtensions.cs │ │ ├── DbProviderFactoryExtensions.cs │ │ ├── DbProviderInfoExtensions.cs │ │ ├── DbProviderManifestExtensions.cs │ │ ├── DbProviderServicesExtensions.cs │ │ ├── DynamicEqualityComparer.cs │ │ ├── DynamicEqualityComparerLinqIntegration.cs │ │ ├── ExceptionExtensions.cs │ │ ├── ExpressionExtensions.cs │ │ ├── HashSetExtensions.cs │ │ ├── ProviderRowFinder.cs │ │ ├── TaskExtensions.cs │ │ ├── TaskHelper.cs │ │ ├── TypeFinder.cs │ │ ├── ValidationContextExtensions.cs │ │ ├── XContainerExtensions.cs │ │ └── XDocumentExtensions.cs │ └── Validation │ │ ├── DbEntityValidationException.cs │ │ ├── DbEntityValidationResult.cs │ │ ├── DbUnexpectedValidationException.cs │ │ └── DbValidationError.cs ├── Microsoft.Data.Entity.Build.Tasks │ ├── EntityClean.cs │ ├── EntityDeploy.cs │ ├── EntityDeploySetLogicalNames.cs │ ├── EntityDeploySplit.cs │ ├── EntityDesignerUtils.cs │ ├── Microsoft.Data.Entity.Build.Tasks.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ └── XmlConstants.cs ├── Microsoft.EntityFramework.SqlServer │ ├── Microsoft.EntityFramework.SqlServer.csproj │ ├── Microsoft.EntityFramework.SqlServer.nuspec │ ├── MicrosoftLocalDbConnectionFactory.cs │ ├── MicrosoftSqlConnectionFactory.cs │ ├── MicrosoftSqlDbConfiguration.cs │ ├── Resources │ │ └── System │ │ │ └── Data │ │ │ └── SqlClient │ │ │ ├── System.Data.Resources.SqlClient.SqlProviderServices.StoreSchemaDefinition.ssdl │ │ │ └── System.Data.Resources.SqlClient.SqlProviderServices.StoreSchemaDefinitionVersion3.ssdl │ └── readme.md ├── SharedAssemblyInfo.cs ├── SharedAssemblyVersionInfo.cs └── ef6 │ ├── AnsiConsole.cs │ ├── AnsiConstants.cs │ ├── AnsiTextWriter.cs │ ├── AppDomainExecutor.cs │ ├── CommandException.cs │ ├── CommandLineUtils │ ├── CommandArgument.cs │ ├── CommandLineApplication.cs │ ├── CommandLineApplicationExtensions.cs │ ├── CommandOption.cs │ ├── CommandOptionType.cs │ └── CommandParsingException.cs │ ├── Commands │ ├── CommandBase.cs │ ├── DatabaseCommand.cs │ ├── DatabaseUpdateCommand.cs │ ├── EFCommandBase.cs │ ├── HelpCommandBase.cs │ ├── MigrationsAddCommand.cs │ ├── MigrationsCommand.cs │ ├── MigrationsCommandBase.cs │ ├── MigrationsEnableCommand.cs │ ├── MigrationsListCommand.cs │ ├── ProjectCommandBase.cs │ └── RootCommand.cs │ ├── ExecutorBase.cs │ ├── Extensions │ └── StringExtensions.cs │ ├── Json.cs │ ├── Migrations │ └── Design │ │ └── ScaffoldedMigration.cs │ ├── Program.cs │ ├── Properties │ ├── Resources.Designer.cs │ └── Resources.resx │ ├── ReflectionExecutor.cs │ ├── Reporter.cs │ ├── ResXResourceWriter.cs │ ├── Templates │ ├── Configuration.cs │ └── Configuration.vb │ ├── Utilities │ ├── DebugCheck.cs │ └── TemplateProcessor.cs │ ├── WrappedException.cs │ └── ef6.csproj ├── startvs.cmd ├── test.cmd ├── test.sh ├── test ├── Directory.Build.props ├── Directory.Build.targets ├── FunctionalTests.ProviderAgnostic │ ├── App.config │ ├── App.config.mysql │ ├── App.config.sqlclient │ ├── CodeFirst │ │ ├── EntitySplittingTests.cs │ │ ├── InheritanceScenarioTests.cs │ │ ├── NameUniquificationTests.cs │ │ └── NonPublicPropertyTests.cs │ ├── Configuration │ │ ├── MySqlConnectionFactory.cs │ │ ├── MySqlHistoryContext.cs │ │ └── ProviderAgnosticConfiguration.cs │ ├── FunctionalTests.ProviderAgnostic.csproj │ ├── ProductivityApi │ │ ├── ChangeTrackingProxyTests.cs │ │ ├── ExtraLazyLoadingTests.cs │ │ ├── GetHashCodeTests.cs │ │ ├── HasChangesTests.cs │ │ ├── PluralizationServiceTests.cs │ │ └── StreamingTests.cs │ ├── Properties │ │ └── XunitAttributes.cs │ ├── Query │ │ ├── LinqToEntities │ │ │ ├── EnumTests.cs │ │ │ ├── FunctionsTests.cs │ │ │ ├── IncludeTests.cs │ │ │ ├── MaterializationTests.cs │ │ │ └── OrderByLiftingTests.cs │ │ └── QueryTestHelpers.cs │ └── TestModels │ │ ├── ExtraLazyLoading │ │ ├── CachingCollectionInitializer.cs │ │ ├── CollectionExtensions.cs │ │ ├── IHasIsLoaded.cs │ │ ├── LazyBlogContext.cs │ │ ├── QueryableCollection.cs │ │ └── QueryableCollectionInitializer.cs │ │ └── ProviderAgnosticModel │ │ ├── AllTypes.cs │ │ ├── Bug.cs │ │ ├── City.cs │ │ ├── CogTag.cs │ │ ├── Config.cs │ │ ├── Failure.cs │ │ ├── Gear.cs │ │ ├── HeavyWeapon.cs │ │ ├── MachineConfig.cs │ │ ├── MilitaryRank.cs │ │ ├── Owner.cs │ │ ├── ProviderAgnosticContext.cs │ │ ├── ProviderAgnosticContextInitializer.cs │ │ ├── Run.cs │ │ ├── Squad.cs │ │ ├── StandardWeapon.cs │ │ ├── Task.cs │ │ └── Weapon.cs ├── FunctionalTests.Transitional │ ├── ! DON'T ADD TESTS HERE │ │ └── ReadMe.txt │ ├── App.config │ ├── CodeFirst │ │ ├── AdvancedMappingScenarioTests.cs │ │ ├── AssociationScenarioTests.cs │ │ ├── AttributeToAnnotationScenarios.cs │ │ ├── BasicMappingScenarioTests.cs │ │ ├── ComplexTypeScenarioTests.cs │ │ ├── ConfigurationScenarioTests.cs │ │ ├── ConventionsScenarioTests.cs │ │ ├── DataAnnotationScenarioTests.cs │ │ ├── DataServicesTests.cs │ │ ├── EnumsScenarioTests.cs │ │ ├── FunctionsScenarioTests.cs │ │ ├── HierarchyIdScenarioTests.cs │ │ ├── IndexScenarios.cs │ │ ├── InheritanceScenarioTests.cs │ │ ├── PropertyConfigurationScenarioTests.cs │ │ ├── SpatialScenarioTests.cs │ │ ├── TableSplittingTests.cs │ │ ├── TestHelpers │ │ │ └── EndToEndFunctionsTest.cs │ │ └── TptMappingTests.cs │ ├── Design │ │ └── BasicDesignTimeScenarios.cs │ ├── FunctionalTests.Transitional.csproj │ ├── MetadataMapping │ │ ├── Enum.csdl │ │ ├── Enum.msl │ │ ├── Enum.ssdl │ │ └── EnumOCMappingTests.cs │ ├── Migrations │ │ ├── TestHelpers │ │ │ └── InfoContext.cs │ │ └── TestModel │ │ │ └── TestModels.cs │ ├── ProductivityApi │ │ └── DbContextTests.cs │ ├── Properties │ │ ├── InternalsVisibleTo.cs │ │ └── XunitAttributes.cs │ ├── TestHelpers │ │ ├── AdventureWorksModelBuilder.cs │ │ ├── AnyValueParameter.cs │ │ ├── AssemblyResourceLookup.cs │ │ ├── CodeFirstScaffoldingContext.cs │ │ ├── CodeFirstScaffoldingContextWithConnection.cs │ │ ├── CollationAttribute.cs │ │ ├── CollationCSharpCodeGenerator.cs │ │ ├── CollationSerializer.cs │ │ ├── ConnectionEventsTracker.cs │ │ ├── ConstructionStrategies.cs │ │ ├── CsdlToClrAssemblyConverter.cs │ │ ├── DatabaseTestHelpers.cs │ │ ├── DbContextExtensions.cs │ │ ├── DbDatabaseMappingExtensions.cs │ │ ├── DbDispatchersHelpers.cs │ │ ├── DefaultFunctionalTestsConnectionFactory.cs │ │ ├── DefaultUnitTestsConnectionFactory.cs │ │ ├── DynamicAssembly.cs │ │ ├── DynamicTypeDescriptor.cs │ │ ├── ExceptionHelpers.cs │ │ ├── ExceptionTestExtensions.cs │ │ ├── ExtendedFactAttribute.cs │ │ ├── ExtendedSqlAzureExecutionStrategy.cs │ │ ├── FakeProviderFactoryResolver.cs │ │ ├── FakeProviderServicesResolver.cs │ │ ├── FunctionalTestBase.cs │ │ ├── FunctionalTestsConfiguration.cs │ │ ├── GenericConnection.cs │ │ ├── GenericProviderFactory`.cs │ │ ├── GenericProviderServices.cs │ │ ├── HashSetBasedDbSet.cs │ │ ├── IOHelpers.cs │ │ ├── IndexAnnotationEqualityComparer.cs │ │ ├── IndexAttributeEqualityComparer.cs │ │ ├── LocalizationTestHelpers.cs │ │ ├── ModelAssertions.cs │ │ ├── ModelHelpers.cs │ │ ├── MutableResolver.cs │ │ ├── ObservableListSource`.cs │ │ ├── ProviderRegistry.cs │ │ ├── RegisterMutableResolver.cs │ │ ├── ResourceUtilities.cs │ │ ├── SimpleTestCaseOrderer.cs │ │ ├── SimpleTestCollectionOrderer.cs │ │ ├── SqlServerMigrationSqlGeneratorWtihCollations.cs │ │ ├── StringResourceVerifier.cs │ │ ├── SuspendableSqlAzureExecutionStrategy.cs │ │ ├── TestBase.cs │ │ ├── TestGroup.cs │ │ ├── TestLoadedInterceptor.cs │ │ └── TypeAssertion`.cs │ └── TestModels │ │ ├── ConcurrencyModel │ │ ├── Chassis.cs │ │ ├── ConcurrencyModelInitializer.cs │ │ ├── Driver.cs │ │ ├── Engine.cs │ │ ├── EngineSupplier.cs │ │ ├── F1Context.cs │ │ ├── Gearbox.cs │ │ ├── Location.cs │ │ ├── Sponsor.cs │ │ ├── SponsorDetails.cs │ │ ├── Team.cs │ │ ├── TestDriver.cs │ │ └── TitleSponsor.cs │ │ ├── SimpleModel │ │ ├── Blog.cs │ │ ├── Category.cs │ │ ├── EmptyContext.cs │ │ ├── ExtraEntity.cs │ │ ├── FeaturedProduct.cs │ │ ├── FuncyContexts.cs │ │ ├── LiveWriterContext.cs │ │ ├── Login.cs │ │ ├── Product.cs │ │ ├── ProductBase.cs │ │ ├── SimpleModelContext.cs │ │ ├── SimpleModelContextWithNoData.cs │ │ └── SimpleModelInitializer.cs │ │ └── StoreModel │ │ ├── AbstractType1.cs │ │ ├── AbstractType1_1.cs │ │ ├── Address.cs │ │ ├── AddressType.cs │ │ ├── BillOfMaterials.cs │ │ ├── ColoredProduct.cs │ │ ├── ConcreteType1_1_1.cs │ │ ├── ConcreteType1_2.cs │ │ ├── Contact.cs │ │ ├── ContactCreditCard.cs │ │ ├── ContactType.cs │ │ ├── CountryRegion.cs │ │ ├── CountryRegionCurrency.cs │ │ ├── CreditCard.cs │ │ ├── Culture.cs │ │ ├── Currency.cs │ │ ├── CurrencyRate.cs │ │ ├── Customer.cs │ │ ├── CustomerAddress.cs │ │ ├── CustomerDiscount.cs │ │ ├── Department.cs │ │ ├── DiscontinuedProduct.cs │ │ ├── Document.cs │ │ ├── Employee.cs │ │ ├── EmployeeAddress.cs │ │ ├── EmployeeDepartmentHistory.cs │ │ ├── EmployeePayHistory.cs │ │ ├── FixupCollection'.cs │ │ ├── Illustration.cs │ │ ├── Individual.cs │ │ ├── JobCandidate.cs │ │ ├── Location.cs │ │ ├── Product.cs │ │ ├── ProductCategory.cs │ │ ├── ProductCostHistory.cs │ │ ├── ProductDescription.cs │ │ ├── ProductDocument.cs │ │ ├── ProductInventory.cs │ │ ├── ProductListPriceHistory.cs │ │ ├── ProductModel.cs │ │ ├── ProductModelIllustration.cs │ │ ├── ProductModelProductDescriptionCulture.cs │ │ ├── ProductPhoto.cs │ │ ├── ProductProductPhoto.cs │ │ ├── ProductReview.cs │ │ ├── ProductSubcategory.cs │ │ ├── ProductVendor.cs │ │ ├── PurchaseOrderDetail.cs │ │ ├── PurchaseOrderHeader.cs │ │ ├── RowDetails.cs │ │ ├── SalesOrderDetail.cs │ │ ├── SalesOrderHeader.cs │ │ ├── SalesPerson.cs │ │ ├── SalesPersonQuotaHistory.cs │ │ ├── SalesReason.cs │ │ ├── SalesTaxRate.cs │ │ ├── SalesTerritory.cs │ │ ├── SalesTerritoryHistory.cs │ │ ├── ScrapReason.cs │ │ ├── Shift.cs │ │ ├── ShipMethod.cs │ │ ├── ShoppingCartItem.cs │ │ ├── SpecialOffer.cs │ │ ├── SpecialOfferProduct.cs │ │ ├── StateProvince.cs │ │ ├── Store.cs │ │ ├── StoreContact.cs │ │ ├── StyledProduct.cs │ │ ├── TransactionHistory.cs │ │ ├── TransactionHistoryArchive.cs │ │ ├── UnitMeasure.cs │ │ ├── User.cs │ │ ├── Vendor.cs │ │ ├── VendorAddress.cs │ │ ├── VendorContact.cs │ │ ├── WorkOrder.cs │ │ └── WorkOrderRouting.cs ├── FunctionalTests │ ├── App.config │ ├── CodeFirst │ │ ├── CodePlex2169.cs │ │ ├── ConfigurationScenarioTests.cs │ │ ├── FunctionsScenarioTests.cs │ │ ├── ModificationFunctionsEndToEndTests.cs │ │ ├── PropertyConfigurationScenarioTests.cs │ │ ├── QueryCachingTests.cs │ │ └── SpecialCharacterTests.cs │ ├── EntityClient │ │ ├── AsyncScenarios.cs │ │ └── DependencyResolverTests.cs │ ├── FunctionalTests.csproj │ ├── Interception │ │ ├── BlogContext.cs │ │ ├── BlogContextNoInit.cs │ │ ├── CommandInterceptionTests.cs │ │ ├── CommandTreeInterceptionTests.cs │ │ ├── CommitFailureTests.cs │ │ ├── DatabaseLogFormatterTests.cs │ │ └── DatabaseLoggerTests.cs │ ├── MetaTests.cs │ ├── Metadata │ │ ├── MetadataAnnotationTests.cs │ │ ├── MetadataCachingModel.csdl │ │ ├── MetadataCachingModel.msl │ │ ├── MetadataCachingModel.ssdl │ │ ├── MetadataCachingTests.cs │ │ ├── MetadataCollectionTests.cs │ │ ├── MetadataEnumTests.cs │ │ ├── MetadataFunctionsTests.cs │ │ └── MetadataSpatialTests.cs │ ├── Migrations │ │ ├── AddColumnScenarios.cs │ │ ├── AddForeignKeyScenarios.cs │ │ ├── AddPrimaryKeyScenarios.cs │ │ ├── AlterColumnScenarios.cs │ │ ├── AlterTableAnnotationsScenarios.cs │ │ ├── AutoAndGenerateScenarios.cs │ │ ├── AutoAndGenerateTestCase.cs │ │ ├── BasicMigrationScenarios.cs │ │ ├── CreateIndexScenarios.cs │ │ ├── CreateStoredProcedureScenarios.cs │ │ ├── CreateTableScenarios.cs │ │ ├── CrossDatabaseScenarios.cs │ │ ├── CustomHistoryScenarios.cs │ │ ├── CustomOperationScenarios.cs │ │ ├── CustomSqlScenarios.cs │ │ ├── DatabaseGeneratedScenarios.cs │ │ ├── DbPermissionsScenarios.cs │ │ ├── DefaultValueScenarios.cs │ │ ├── DropColumnScenarios.cs │ │ ├── DropForeignKeyScenarios.cs │ │ ├── DropIndexScenarios.cs │ │ ├── InitializerScenarios.cs │ │ ├── LoggingScenarios.cs │ │ ├── MappingScenarios.cs │ │ ├── ModificationFunctionsScenarios.cs │ │ ├── MultiTenantScenarios.cs │ │ ├── NoTestInfraScenarios.cs │ │ ├── SchemaScenarios.cs │ │ ├── ScriptingScenarios.cs │ │ ├── SeedingScenarios.cs │ │ ├── SpatialScenarios.cs │ │ ├── TestHelpers │ │ │ ├── DatabaseProviderFixture.cs │ │ │ ├── DbMigratorExtensions.cs │ │ │ ├── DbProviders.cs │ │ │ ├── DbTestCase.cs │ │ │ ├── MigrationCompiler.cs │ │ │ ├── MigrationMetadataHelper.cs │ │ │ ├── MigrationsTestCase.cs │ │ │ ├── MigrationsTheoryAttribute.cs │ │ │ ├── TestDatabase.cs │ │ │ └── VariantAttribute.cs │ │ ├── TestModel │ │ │ ├── CommentOperation.cs │ │ │ ├── CustomOperationExtensions.cs │ │ │ ├── CustomOperationMigration.cs │ │ │ ├── CustomSqlGenerator.cs │ │ │ └── TestMigration.cs │ │ ├── TransactionScenarios.cs │ │ └── UpgradeScenarios.cs │ ├── Objects │ │ ├── AttributeBasedOCLoading.cs │ │ ├── LazyLoadingTests.cs │ │ ├── SerializationScenarios.cs │ │ ├── TransactionsModel.csdl │ │ ├── TransactionsModel.msl │ │ ├── TransactionsModel.ssdl │ │ └── TransactionsTests.cs │ ├── PlanCompiler │ │ ├── AnonymousTypeTests.cs │ │ ├── LimitExpressionTests.cs │ │ └── LinqGroupByTests.cs │ ├── ProductivityApi │ │ ├── ComplexTypeTests.cs │ │ ├── ConcurrencyTests.cs │ │ ├── ConnectionTests.cs │ │ ├── DatabaseInitializationTests.cs │ │ ├── DatabaseTests.cs │ │ ├── DatabindingTests.cs │ │ ├── DbConfigurationTests.cs │ │ ├── DbConnectionFactoryTests.cs │ │ ├── DbContextTests.cs │ │ ├── DbContextTestsForSqlCe.cs │ │ ├── DbEntityEntryTests.cs │ │ ├── DbFunctionScenarios.cs │ │ ├── DbModelTests.cs │ │ ├── DbPropertyValuesTests.cs │ │ ├── DbSetTests.cs │ │ ├── DbSqlQueryTests.cs │ │ ├── DeadlockTests.cs │ │ ├── DefaultDbModelStoreTests.cs │ │ ├── DetectChangesTests.cs │ │ ├── DisposeTests.cs │ │ ├── FindTests.cs │ │ ├── HierarchyIdTests.cs │ │ ├── IncludeTests.cs │ │ ├── InvalidTypeTests.cs │ │ ├── LinqTests.cs │ │ ├── ModelNamespaceAndContainerTests.cs │ │ ├── MultiThreadingTests.cs │ │ ├── NamespaceAndNestingTests.cs │ │ ├── NoTrackingTests.cs │ │ ├── PropertyApiTests.cs │ │ ├── ScaffoldingScenarioTests.cs │ │ ├── SimpleScenarios.cs │ │ ├── SimpleScenariosForLocalDb.cs │ │ ├── SimpleScenariosForSqlCe.cs │ │ ├── SpatialTests.cs │ │ ├── TemplateBasedModelnitializer.cs │ │ ├── TemplateTests.cs │ │ ├── TimeoutTests.cs │ │ ├── TransactionTests.cs │ │ ├── ValidationTests.cs │ │ ├── WriteEdmxTests.cs │ │ └── enumtests.cs │ ├── Properties │ │ └── XunitAttributes.cs │ ├── Query │ │ ├── ApplyOpRulesTests.cs │ │ ├── Bug2612.cs │ │ ├── Bug952621.cs │ │ ├── ComparisonTestst.cs │ │ ├── CompiledQuery │ │ │ ├── CompiledQueryModel.csdl │ │ │ ├── CompiledQueryModel.msl │ │ │ ├── CompiledQueryModel.ssdl │ │ │ └── CompiledQueryTests.cs │ │ ├── ConditionalTranslatorTests.cs │ │ ├── FilterOpRulesTests.cs │ │ ├── FunctionTests.cs │ │ ├── GroupAggregateTests.cs │ │ ├── JoinEliminationTests.cs │ │ ├── LinqToEntities │ │ │ ├── ContainsTests.cs │ │ │ ├── ConvertEliminationTests.cs │ │ │ ├── DefaultIfEmptyTests.cs │ │ │ ├── EnumTests.cs │ │ │ ├── ExpressionTests.cs │ │ │ ├── FuncletizationTests.cs │ │ │ ├── FunctionsTests.cs │ │ │ ├── GroupByOptimizationTests.cs │ │ │ ├── HasFlagTests.cs │ │ │ ├── IncludeTests.cs │ │ │ ├── JoinTests.cs │ │ │ ├── MaterializationTests.cs │ │ │ ├── OrderByLiftingTests.cs │ │ │ ├── OrderByTests.cs │ │ │ ├── ProjectionTests.cs │ │ │ ├── SqlCeFunctionsTests.cs │ │ │ ├── StringConcatTests.cs │ │ │ └── ToStringTests.cs │ │ ├── ModelDefinedFunctionTests.cs │ │ ├── NullSemanticsTests.cs │ │ ├── PredicateScalarizationTests.cs │ │ ├── ProductModel.cs │ │ ├── QueryEnumTests.cs │ │ ├── QueryTestHelpers.cs │ │ ├── SpatialTests.cs │ │ ├── SqlCeCanonicalFunctionsTests.cs │ │ ├── SqlGeneratorTests.cs │ │ └── StoredProcedures │ │ │ ├── IceAndFireModel.cs │ │ │ ├── IceAndFireModel.csdl │ │ │ ├── IceAndFireModel.msl │ │ │ ├── IceAndFireModel.ssdl │ │ │ └── StoredProceduresTests.cs │ ├── SqlClient │ │ ├── DatabaseExistsInInitializerTests.cs │ │ ├── DatabaseExistsTests.cs │ │ └── SqlProviderServicesTests.cs │ ├── SqlServerCompact │ │ ├── CodePlex2197.cs │ │ └── SqlGeneratorTests.cs │ ├── TestDoubles │ │ ├── InMemoryAsyncQueryProvider.cs │ │ ├── InMemoryAsyncQueryable.cs │ │ ├── InMemoryDbAsyncEnumerator.cs │ │ ├── InMemoryDbSet.cs │ │ ├── InMemoryDbSetTests.cs │ │ ├── InMemoryNonGenericDbSet.cs │ │ ├── InMemoryNonGenericDbSetTests.cs │ │ ├── InMemoryNonGenericSqlQuery.cs │ │ ├── InMemorySqlQuery.cs │ │ ├── MockableDbSetTests.cs │ │ ├── MockableNonGenericDbSetTests.cs │ │ ├── UnimplementedDbSetTests.cs │ │ └── UnimplementedNonGenericDbSetTests.cs │ ├── TestHelpers │ │ ├── AutoRollbackAttribute.cs │ │ ├── EntityTypeConfigurationExtensions.cs │ │ ├── EnumeratorExtensions.cs │ │ ├── FullTrustAttribute.cs │ │ ├── IEnumerableExtentions.cs │ │ ├── IUseDefaultExecutionStrategy.cs │ │ ├── ListExtensions.cs │ │ ├── StringExtensions.cs │ │ └── UseDefaultExecutionStrategyAttribute.cs │ ├── TestModels │ │ ├── AdvancedPatternsModel │ │ │ ├── Address.cs │ │ │ ├── AdvancedPatternsEmployeeContext.cs │ │ │ ├── AdvancedPatternsInitializer.cs │ │ │ ├── AdvancedPatternsMasterContext.cs │ │ │ ├── AdvancedPatternsModelFirstInitializer.cs │ │ │ ├── Building.cs │ │ │ ├── BuildingDetail.cs │ │ │ ├── CurrentEmployee.cs │ │ │ ├── Employee.cs │ │ │ ├── MailRoom.cs │ │ │ ├── Office.cs │ │ │ ├── PastEmployee.cs │ │ │ ├── SiteInfo.cs │ │ │ ├── UnMappedOffice.cs │ │ │ ├── UnMappedOfficeBase.cs │ │ │ ├── UnMappedPersonBase.cs │ │ │ ├── Whiteboard.cs │ │ │ └── WorkOrder.cs │ │ ├── AllTypeKeysModel │ │ │ ├── AllTypeKeysContext.cs │ │ │ ├── AllTypeKeysModelInitializer.cs │ │ │ ├── BoolKeyEntity.cs │ │ │ ├── ByteKeyEntity.cs │ │ │ ├── CompositeKeyEntity.cs │ │ │ ├── CompositeKeyEntityWithOrderingAnnotations.cs │ │ │ ├── DateTimeKeyEntity.cs │ │ │ ├── DateTimeOffsetKeyEntity.cs │ │ │ ├── DecimalKeyEntity.cs │ │ │ ├── DoubleKeyEntity.cs │ │ │ ├── FloatKeyEntity.cs │ │ │ ├── GuidKeyEntity.cs │ │ │ ├── LongKeyEntity.cs │ │ │ ├── ShortKeyEntity.cs │ │ │ └── TimeSpanKeyEntity.cs │ │ ├── ArubaCeModel │ │ │ ├── ArubaAllCeTypes.cs │ │ │ ├── ArubaCeContext.cs │ │ │ └── ArubaCeInitializer.cs │ │ ├── ArubaModel │ │ │ ├── ArubaAllTypes.cs │ │ │ ├── ArubaBaseline.cs │ │ │ ├── ArubaBug.cs │ │ │ ├── ArubaConfig.cs │ │ │ ├── ArubaContext.cs │ │ │ ├── ArubaDatabaseSeeder.cs │ │ │ ├── ArubaFailure.cs │ │ │ ├── ArubaInitializer.cs │ │ │ ├── ArubaMachineConfig.cs │ │ │ ├── ArubaOwner.cs │ │ │ ├── ArubaPerson.cs │ │ │ ├── ArubaRun.cs │ │ │ ├── ArubaStoredProceduresContext.cs │ │ │ ├── ArubaStoredProceduresInitializer.cs │ │ │ ├── ArubaTask.cs │ │ │ ├── ArubaTaskInfo.cs │ │ │ └── ArubaTestFailure.cs │ │ ├── FantasyModel │ │ │ ├── Attributes.cs │ │ │ ├── Building.cs │ │ │ ├── City.cs │ │ │ ├── Creature.cs │ │ │ ├── DamageType.cs │ │ │ ├── FantasyContext.cs │ │ │ ├── FantasyDatabaseSeeder.cs │ │ │ ├── FantasyInitializer.cs │ │ │ ├── FantasyStoredProceduresContext.cs │ │ │ ├── FantasyStoredProceduresInitializer.cs │ │ │ ├── Landmark.cs │ │ │ ├── Npc.cs │ │ │ ├── Perk.cs │ │ │ ├── Province.cs │ │ │ ├── Race.cs │ │ │ ├── Skill.cs │ │ │ ├── Spell.cs │ │ │ └── Tower.cs │ │ ├── GearsOfWarModel │ │ │ ├── City.cs │ │ │ ├── CogTag.cs │ │ │ ├── Gear.cs │ │ │ ├── GearsOfWarContext.cs │ │ │ ├── GearsOfWarDatabaseSeeder.cs │ │ │ ├── GearsOfWarInitializer.cs │ │ │ ├── GearsOfWarStoredProceduresContext.cs │ │ │ ├── GearsOfWarStoredProceduresInitializer.cs │ │ │ ├── HeavyWeapon.cs │ │ │ ├── MilitaryRank.cs │ │ │ ├── Squad.cs │ │ │ ├── StandardWeapon.cs │ │ │ └── Weapon.cs │ │ ├── HierarchyIdTvfsModel │ │ │ ├── 226644HierarchyIdModel.csdl │ │ │ ├── 226644HierarchyIdModel.msl │ │ │ ├── 226644HierarchyIdModel.ssdl │ │ │ ├── HierarchyIdNorthwindContext.cs │ │ │ └── HierarchyIdNorthwindInitializer.cs │ │ ├── InvalidMappingModel │ │ │ └── InvalidMappingContext.cs │ │ ├── InvalidTypeModel │ │ │ ├── Person.cs │ │ │ └── PersonContext.cs │ │ ├── LinqModels │ │ │ ├── BaseTypeForLinq.cs │ │ │ ├── BaseTypeForLinqComparer.cs │ │ │ ├── CustomerForLinq.cs │ │ │ ├── FeaturedProductForLinq.cs │ │ │ ├── NumberForLinq.cs │ │ │ ├── OrderForLinq.cs │ │ │ ├── ProductForLinq.cs │ │ │ ├── SimpleModelForLinq.cs │ │ │ └── SimpleModelForLinqInitializer.cs │ │ ├── SimpleMigrationsModel │ │ │ ├── 201112202056275_InitialCreate.cs │ │ │ ├── 201112202056275_InitialCreate.designer.cs │ │ │ ├── 201112202056573_AddUrlToBlog.cs │ │ │ ├── 201112202056573_AddUrlToBlog.designer.cs │ │ │ ├── Blog.cs │ │ │ ├── MigrateInitializerConfiguration.cs │ │ │ └── MigrateInitializerContext.cs │ │ ├── SimpleModel │ │ │ ├── BadMappingModel.cs │ │ │ ├── CeLoginsContext.cs │ │ │ ├── DisabledInitializerContext.cs │ │ │ ├── EntityConnectionForSimpleModel.cs │ │ │ ├── LocalDbLoginsContext.cs │ │ │ ├── LoginsContext.cs │ │ │ ├── ModelWithWideProperties.cs │ │ │ ├── SimpleLocalDbModelContext.cs │ │ │ ├── SimpleLocalDbModelContextWithNoData.cs │ │ │ └── SimpleLocalDbModelInitializer.cs │ │ ├── SpatialTvfsModel │ │ │ ├── 226644SpatialModel.csdl │ │ │ ├── 226644SpatialModel.msl │ │ │ ├── 226644SpatialModel.ssdl │ │ │ ├── SpatialNorthwindContext.cs │ │ │ └── SpatialNorthwindInitializer.cs │ │ ├── StoreModel │ │ │ ├── AWBuildVersion.cs │ │ │ ├── ConcreteType1_3.cs │ │ │ ├── DatabaseLog.cs │ │ │ └── ErrorLog.cs │ │ ├── TemplateModels │ │ │ ├── CsAdvancedPatterns │ │ │ │ ├── AddressMf.cs │ │ │ │ ├── BuildingDetailMf.cs │ │ │ │ ├── BuildingMf.cs │ │ │ │ ├── CsAdvancedPatterns.Context.cs │ │ │ │ ├── CsAdvancedPatterns.Context.tt │ │ │ │ ├── CsAdvancedPatterns.cs │ │ │ │ ├── CsAdvancedPatterns.tt │ │ │ │ ├── CurrentEmployeeMf.cs │ │ │ │ ├── EF.Utility.CS.ttinclude │ │ │ │ ├── EmployeeMf.cs │ │ │ │ ├── MailRoomMf.cs │ │ │ │ ├── OfficeMf.cs │ │ │ │ ├── Partials │ │ │ │ │ ├── AddressMf.cs │ │ │ │ │ ├── AdvancedPatternsModelFirstContext.cs │ │ │ │ │ ├── BuildingMf.cs │ │ │ │ │ ├── CurrentEmployeeMf.cs │ │ │ │ │ ├── EmployeeMf.cs │ │ │ │ │ ├── OfficeMf.cs │ │ │ │ │ ├── PastEmployeeMf.cs │ │ │ │ │ └── SiteInfoMf.cs │ │ │ │ ├── PastEmployeeMf.cs │ │ │ │ ├── SiteInfoMf.cs │ │ │ │ ├── WhiteboardMf.cs │ │ │ │ └── WorkOrderMf.cs │ │ │ ├── CsMonsterModel │ │ │ │ ├── BackOrderLine2Mm.cs │ │ │ │ ├── BackOrderLineMm.cs │ │ │ │ ├── BarcodeDetailMm.cs │ │ │ │ ├── BarcodeMm.cs │ │ │ │ ├── ComplaintMm.cs │ │ │ │ ├── ComputerDetailMm.cs │ │ │ │ ├── ComputerMm.cs │ │ │ │ ├── ConcurrencyInfoMm.cs │ │ │ │ ├── ContactDetailsMm.cs │ │ │ │ ├── CsMonsterModel.Context.cs │ │ │ │ ├── CsMonsterModel.Context.tt │ │ │ │ ├── CsMonsterModel.cs │ │ │ │ ├── CsMonsterModel.tt │ │ │ │ ├── CustomerInfoMm.cs │ │ │ │ ├── DimensionsMm.cs │ │ │ │ ├── DiscontinuedProductMm.cs │ │ │ │ ├── DriverMm.cs │ │ │ │ ├── EF.Utility.CS.ttinclude │ │ │ │ ├── ExternalTypes │ │ │ │ │ ├── AuditInfoMm.cs │ │ │ │ │ ├── CustomerMm.cs │ │ │ │ │ ├── LicenseStateMm.cs │ │ │ │ │ ├── LoginMm.cs │ │ │ │ │ ├── PhoneMm.cs │ │ │ │ │ └── PhoneTypeMm.cs │ │ │ │ ├── IncorrectScanMm.cs │ │ │ │ ├── LastLoginMm.cs │ │ │ │ ├── LicenseMm.cs │ │ │ │ ├── MessageMm.cs │ │ │ │ ├── OrderLineMm.cs │ │ │ │ ├── OrderMm.cs │ │ │ │ ├── OrderNoteMm.cs │ │ │ │ ├── OrderQualityCheckMm.cs │ │ │ │ ├── PageViewMm.cs │ │ │ │ ├── PasswordResetMm.cs │ │ │ │ ├── ProductDetailMm.cs │ │ │ │ ├── ProductMm.cs │ │ │ │ ├── ProductPageViewMm.cs │ │ │ │ ├── ProductPhotoMm.cs │ │ │ │ ├── ProductReviewMm.cs │ │ │ │ ├── ProductWebFeatureMm.cs │ │ │ │ ├── RSATokenMm.cs │ │ │ │ ├── ResolutionMm.cs │ │ │ │ ├── SmartCardMm.cs │ │ │ │ ├── SupplierInfoMm.cs │ │ │ │ ├── SupplierLogoMm.cs │ │ │ │ ├── SupplierMm.cs │ │ │ │ └── SuspiciousActivityMm.cs │ │ │ ├── ProcessCsTemplate.bat │ │ │ ├── ProcessTemplates.bat │ │ │ ├── ProcessVbTemplate.bat │ │ │ └── Schemas │ │ │ │ ├── AdvancedPatterns.Designer.cs │ │ │ │ ├── AdvancedPatterns.edmx │ │ │ │ ├── MonsterModel.csdl │ │ │ │ ├── MonsterModel.msl │ │ │ │ └── MonsterModel.ssdl │ │ └── UnSpecifiedOrderingModel │ │ │ ├── CompositeKeyEntityWithNoOrdering.cs │ │ │ └── NoOrderingContext.cs │ ├── Update │ │ ├── GuidIdentityColumnUpdateTests.cs │ │ ├── TruncationTests.cs │ │ └── UpdateTests.cs │ ├── ViewGeneration │ │ ├── PregenContextEdmxViews.cs │ │ ├── PregenContextViews.cs │ │ ├── PregenObjectContextViews.cs │ │ ├── PregeneratedViewsTests.cs │ │ └── ViewGenerationTests.cs │ ├── WrappingProvider │ │ ├── LogItem.cs │ │ ├── WrappingAdoNetProvider.cs │ │ ├── WrappingCommand.cs │ │ ├── WrappingCommandDefinition.cs │ │ ├── WrappingConnection.cs │ │ ├── WrappingEfProvider.cs │ │ ├── WrappingProviderFactoryResolver.cs │ │ ├── WrappingProviderInvariantName.cs │ │ ├── WrappingProviderTests.cs │ │ ├── WrappingSqlGenerator.cs │ │ └── WrappingTransaction.cs │ └── xunit.console.dll.config ├── MicrosoftSqlProviderSmokeTest │ ├── MicrosoftSqlProviderSmokeTest.csproj │ └── SmokeTest.cs ├── UnitTests │ ├── App.config │ ├── AssemblyTests.cs │ ├── Core │ │ ├── Common │ │ │ ├── CommandTrees │ │ │ │ ├── BasicExpressionVisitorTests.cs │ │ │ │ ├── DbCommandTreeTests.cs │ │ │ │ ├── DbExpressionBuilderTests.cs │ │ │ │ ├── DbExpressionRebinderTests.cs │ │ │ │ ├── DbExpressionVisitorTests.cs │ │ │ │ ├── DefaultExpressionVisitorTests.cs │ │ │ │ ├── Internal │ │ │ │ │ └── ExpressionKeyGenTests.cs │ │ │ │ └── SpatialEdmFunctionsTests.cs │ │ │ ├── DbProviderServicesTests.cs │ │ │ ├── Internal │ │ │ │ └── Materialization │ │ │ │ │ ├── CodeGenEmitterTests.cs │ │ │ │ │ ├── ShaperTests.cs │ │ │ │ │ ├── TestHelpers │ │ │ │ │ └── MockHelper.cs │ │ │ │ │ └── TranslatorTests.cs │ │ │ └── Utils │ │ │ │ └── CommandHelperTests.cs │ │ ├── EntityClient │ │ │ ├── EntityCommandDefinitionTests.cs │ │ │ ├── EntityCommandTests.cs │ │ │ ├── EntityConnectionStringBuilderTests.cs │ │ │ ├── EntityConnectionTests.cs │ │ │ ├── EntityDataReaderTests.cs │ │ │ ├── EntityTransactionTests.cs │ │ │ ├── Internal │ │ │ │ └── DbConnectionOptionsTests.cs │ │ │ └── TestHelpers │ │ │ │ └── MockHelper.cs │ │ ├── EntityCommandCompilationExceptionTests.cs │ │ ├── EntityCommandExecutionExceptionTests.cs │ │ ├── EntityExceptionTests.cs │ │ ├── EntityKeyTests.cs │ │ ├── EntitySqlExceptionTests.cs │ │ ├── FieldNameLookupTests.cs │ │ ├── Mapping │ │ │ ├── AssociationSetMappingTests.cs │ │ │ ├── AssociationSetModificationFunctionMappingTests.cs │ │ │ ├── AssociationTypeMappingTests.cs │ │ │ ├── ColumnMappingBuilderTests.cs │ │ │ ├── ComplexPropertyMappingTests.cs │ │ │ ├── ComplexTypeMappingTests.cs │ │ │ ├── ConditionPropertyMappingTests.cs │ │ │ ├── EndPropertyMappingTests.cs │ │ │ ├── EntityContainerMappingTests.cs │ │ │ ├── EntitySetMappingTests.cs │ │ │ ├── EntityTypeMappingTests.cs │ │ │ ├── EntityTypeModificationFunctionMappingTests.cs │ │ │ ├── FunctionImportEntityTypeMappingConditionValueTests.cs │ │ │ ├── FunctionImportEntityTypeMappingTests.cs │ │ │ ├── FunctionImportMappingComposableTests.cs │ │ │ ├── FunctionImportMappingNonComposableTests.cs │ │ │ ├── FunctionImportMappingTests.cs │ │ │ ├── FunctionImportResultMappingTests.cs │ │ │ ├── IsNullConditionMappingTests.cs │ │ │ ├── MappingFragmentTests.cs │ │ │ ├── MappingItemTests.cs │ │ │ ├── MetadataMappingHasherVisitorTests.cs │ │ │ ├── MidificationFunctionMemberPathTests.cs │ │ │ ├── ModificationFunctionMappingTests.cs │ │ │ ├── ModificationFunctionParameterBindingTests.cs │ │ │ ├── ModificationFunctionResultBindingTests.cs │ │ │ ├── PropertyMappingTests.cs │ │ │ ├── ScalarPropertyMappingTests.cs │ │ │ ├── SetMappingTests.cs │ │ │ ├── StorageMappingItemCollectionTests.cs │ │ │ ├── TypeMappingTests.cs │ │ │ ├── Update │ │ │ │ └── Internal │ │ │ │ │ ├── DynamicUpdateCommandTests.cs │ │ │ │ │ ├── EntityAdapterTests.cs │ │ │ │ │ ├── FunctionUpdateCommandTests.cs │ │ │ │ │ ├── PropagatorTests.cs │ │ │ │ │ └── UpdateTranslatorTests.cs │ │ │ ├── ValueConditionMappingTests.cs │ │ │ └── ViewGeneration │ │ │ │ ├── Utils │ │ │ │ └── ExternalCallsTests.cs │ │ │ │ └── ViewgenContextTests.cs │ │ ├── Metadata │ │ │ └── Edm │ │ │ │ ├── AspProxyTests.cs │ │ │ │ ├── AssociationEndMemberTests.cs │ │ │ │ ├── AssociationSetTests.cs │ │ │ │ ├── AssociationTypeTests.cs │ │ │ │ ├── CodeFirstOSpaceLoaderTests.cs │ │ │ │ ├── CodeFirstOSpaceTypeFactoryTests.cs │ │ │ │ ├── ComplexTypeTests.cs │ │ │ │ ├── CsdlSerializerTests.cs │ │ │ │ ├── DataModelValidatorTests.cs │ │ │ │ ├── DbDatabaseMappingTests.cs │ │ │ │ ├── DocumentationTests.cs │ │ │ │ ├── EdmFunctionTests.cs │ │ │ │ ├── EdmItemCollectionTests.cs │ │ │ │ ├── EdmMemberTests.cs │ │ │ │ ├── EdmModelSemanticValidationRulesTests.cs │ │ │ │ ├── EdmModelSyntacticValidationRulesTests.cs │ │ │ │ ├── EdmModelTests.cs │ │ │ │ ├── EdmModelValidationContextTests.cs │ │ │ │ ├── EdmPropertyTests.cs │ │ │ │ ├── EdmSchemaErrorTests.cs │ │ │ │ ├── EdmSerializationVisitorTests.cs │ │ │ │ ├── EdmXmlSchemaWriterTests.cs │ │ │ │ ├── EntityContainerTests.cs │ │ │ │ ├── EntitySetBaseTests.cs │ │ │ │ ├── EntitySetTests.cs │ │ │ │ ├── EntityTypeBaseTests.cs │ │ │ │ ├── EntityTypeTests.cs │ │ │ │ ├── EnumMemberTests.cs │ │ │ │ ├── EnumTypeTests.cs │ │ │ │ ├── FacetValuesTests.cs │ │ │ │ ├── ForeignKeyBuilderTests.cs │ │ │ │ ├── FunctionParameterTests.cs │ │ │ │ ├── ItemCollectionTests.cs │ │ │ │ ├── MemberCollectionTests.cs │ │ │ │ ├── MetadataCacheTests.cs │ │ │ │ ├── MetadataCacheTests.csdl │ │ │ │ ├── MetadataCacheTests.msl │ │ │ │ ├── MetadataCacheTests.ssdl │ │ │ │ ├── MetadataCollectionTests.cs │ │ │ │ ├── MetadataItemTests.cs │ │ │ │ ├── MetadataOptimizationTests.cs │ │ │ │ ├── MetadataPropertyTests.cs │ │ │ │ ├── MetadataWorkspaceTests.cs │ │ │ │ ├── MslXmlSchemaWriterTests.cs │ │ │ │ ├── NavigationPropertyTests.cs │ │ │ │ ├── ObjectItemCollectionTests.cs │ │ │ │ ├── ObjectItemConventionAssemblyLoaderTests.cs │ │ │ │ ├── ReferentialConstraintTests.cs │ │ │ │ ├── RelationshipEndMemberTests.cs │ │ │ │ ├── RowTypeTests.cs │ │ │ │ ├── SsdlSerializerTests.cs │ │ │ │ ├── StoreItemCollectionTests.cs │ │ │ │ ├── StucturalTypeTests.cs │ │ │ │ ├── TestHelpers │ │ │ │ ├── FacetDescriptionHelpers.cs │ │ │ │ └── FacetValuesHelpers.cs │ │ │ │ └── TypeUsageTests.cs │ │ ├── Objects │ │ │ ├── DataClasses │ │ │ │ ├── EdmFunctionAttributeTests.cs │ │ │ │ ├── EntityCollectionTests.cs │ │ │ │ ├── EntityReferenceTests.cs │ │ │ │ ├── RelatedEndTests.cs │ │ │ │ ├── RelationshipManagerTests.cs │ │ │ │ └── TestHelpers │ │ │ │ │ └── MockHelper.cs │ │ │ ├── DelegateFactoryTests.cs │ │ │ ├── ELinq │ │ │ │ ├── ELinqQueryStateTests.cs │ │ │ │ ├── ExpressionConverterTests.cs │ │ │ │ ├── InitializerMetadataTests.cs │ │ │ │ ├── LinqExpressionNormalizerTests.cs │ │ │ │ ├── ObjectQueryProviderTests.cs │ │ │ │ ├── ReflectionUtilTests.cs │ │ │ │ └── TypeSystemTests.cs │ │ │ ├── EntityEntryTests.cs │ │ │ ├── EntityFunctionsTests.cs │ │ │ ├── ExecutionOptionsTests.cs │ │ │ ├── FieldDescriptorTests.cs │ │ │ ├── Internal │ │ │ │ ├── BaseProxyImplementorTests.cs │ │ │ │ ├── BufferedDataReaderTests.cs │ │ │ │ ├── DataContractImplementorTests.cs │ │ │ │ ├── EntityProxyFactoryTests.cs │ │ │ │ ├── EntityProxyTypeInfoTests.cs │ │ │ │ ├── EntityWrapperFactoryTests.cs │ │ │ │ ├── IPocoImplementorTests.cs │ │ │ │ ├── ObjectQueryExecutionPlanFactoryTests.cs │ │ │ │ ├── ObjectQueryExecutionPlanTests.cs │ │ │ │ ├── ObjectQueryStateTests.cs │ │ │ │ ├── PocoPropertyAccessorStrategyTests.cs │ │ │ │ ├── SerializableImplementorTests.cs │ │ │ │ ├── ShapedBufferedDataRecordTests.cs │ │ │ │ └── TestHelpers │ │ │ │ │ └── MockHelper.cs │ │ │ ├── ObjectContextTests.cs │ │ │ ├── ObjectParameterCollectionTests.cs │ │ │ ├── ObjectQueryTests.cs │ │ │ ├── ObjectResultTests.cs │ │ │ ├── ObjectViewTests.cs │ │ │ ├── ProxyDataContractResolverTests.cs │ │ │ └── TestHelpers │ │ │ │ └── MockHelper.cs │ │ ├── PropertyConstraintExceptionTests.cs │ │ ├── Query │ │ │ ├── InternalTrees │ │ │ │ └── VarVecTests.cs │ │ │ ├── PlanCompiler │ │ │ │ └── ColumnMapTranslatorTests.cs │ │ │ └── ResultAssembly │ │ │ │ ├── BridgeDataReaderFactoryTests.cs │ │ │ │ ├── BridgeDataReaderTests.cs │ │ │ │ └── BridgeDataRecordTests.cs │ │ └── SchemaObjectModel │ │ │ └── SchemaElementTests.cs │ ├── DataAnnotations │ │ ├── MaxLengthAttributeTests.cs │ │ ├── MinLengthAttributeTests.cs │ │ └── Schema │ │ │ ├── ColumnAttributeTests.cs │ │ │ ├── DatabaseGeneratedAttributeTests.cs │ │ │ ├── ForeignKeyAttributeTests.cs │ │ │ ├── IndexAttributeTests.cs │ │ │ ├── InversePropertyAttributeTests.cs │ │ │ └── TableAttributeTests.cs │ ├── DatabaseInitializerTests.cs │ ├── DatabaseTests.cs │ ├── DatabindingTests.cs │ ├── DbConfigurationTests.cs │ ├── DbConfigurationTypeAttributeTests.cs │ ├── DbContextTests.cs │ ├── DbContextTransactionTests.cs │ ├── DbFunctionAttributeTests.cs │ ├── DbFunctionsTests.cs │ ├── DbSetTests.cs │ ├── Edm │ │ └── EdmModelVisitorTests.cs │ ├── EdmxReaderTests.cs │ ├── Hierarchy │ │ └── HierarchyIdUnitTests.cs │ ├── IDbAsyncEnumerableExtensionsTests.cs │ ├── Infrastructure │ │ ├── Annotations │ │ │ ├── AnnotationCodeGeneratorTests.cs │ │ │ ├── CompatibilityResultTests.cs │ │ │ ├── IndexAnnotationSerializerTests.cs │ │ │ └── IndexAnnotationTests.cs │ │ ├── ConsolidatedIndexTests.cs │ │ ├── DbCollectionEntryTests.cs │ │ ├── DbCompiledModelTests.cs │ │ ├── DbComplexPropertyEntryTests.cs │ │ ├── DbConnectionFactoryTests.cs │ │ ├── DbConnectionInfoTests.cs │ │ ├── DbContextInfoTests.cs │ │ ├── DbEntityEntryTests.cs │ │ ├── DbExecutionStrategyTests.cs │ │ ├── DbLocalViewTests.cs │ │ ├── DbModelStoreTests.cs │ │ ├── DbModelTests.cs │ │ ├── DbPropertyEntryTests.cs │ │ ├── DbPropertyValuesTests.cs │ │ ├── DbProviderInfoTests.cs │ │ ├── DbQueryTests.cs │ │ ├── DbRawSqlQueryTests.cs │ │ ├── DbReferenceEntryTests.cs │ │ ├── DbSqlQueryTests.cs │ │ ├── DbUpdateConcurrencyExceptionTests.cs │ │ ├── DbUpdateExceptionTests.cs │ │ ├── DefaultDbModelStoreTests.cs │ │ ├── DefaultDbProviderFactoryServiceTests.cs │ │ ├── DefaultExecutionStrategyTests.cs │ │ ├── DefaultManifestTokenResolverTests.cs │ │ ├── DependencyResolution │ │ │ ├── AppConfigDependencyResolverTests.cs │ │ │ ├── CachingDependencyResolverTests.cs │ │ │ ├── ClrTypeAnnotationSerializerTests.cs │ │ │ ├── CompositeResolverTests.cs │ │ │ ├── DatabaseInitializerResolverTests.cs │ │ │ ├── DbConfigurationEventArgsTests.cs │ │ │ ├── DbConfigurationFinderTests.cs │ │ │ ├── DbConfigurationLoaderTests.cs │ │ │ ├── DbConfigurationManagerTests.cs │ │ │ ├── DbDependencyResolverExtensionsTests.cs │ │ │ ├── DefaultExecutionStrategyResolverTests.cs │ │ │ ├── DefaultInvariantNameResolverTests.cs │ │ │ ├── DefaultProviderFactoryResolverTests.cs │ │ │ ├── DefaultProviderServicesResolverTests.cs │ │ │ ├── ExecutionStrategyResolverTests.cs │ │ │ ├── InternalConfigurationTests.cs │ │ │ ├── InvariantNameResolverTests.cs │ │ │ ├── ProviderServicesFactoryTests.cs │ │ │ ├── ResolverChainTests.cs │ │ │ ├── RootDependencyResolverTests.cs │ │ │ ├── SingletonDependencyResolverTests.cs │ │ │ ├── TransactionContextInitializerResolverTests.cs │ │ │ ├── TransactionHandlerResolverTests.cs │ │ │ └── WrappingDependencyResolverTests.cs │ │ ├── Design │ │ │ ├── AppConfigReaderTests.cs │ │ │ ├── ExecutorTests.cs │ │ │ ├── ForwardingProxyTests.cs │ │ │ ├── HandlerBaseTests.cs │ │ │ └── WrappedHandlerTests.cs │ │ ├── ExecutionStrategyKeyTests.cs │ │ ├── Interception │ │ │ ├── BeginTransactionInterceptionContextTests.cs │ │ │ ├── CancelableDbCommandDispatcherTests.cs │ │ │ ├── DatabaseLogFormatterTests.cs │ │ │ ├── DatabaseLoggerTests.cs │ │ │ ├── DbCommandDispatcherTests.cs │ │ │ ├── DbCommandInterceptionContextTests.cs │ │ │ ├── DbCommandTreeDispatcherTests.cs │ │ │ ├── DbCommandTreeInterceptionContextTests.cs │ │ │ ├── DbConfigurationDispatcherTests.cs │ │ │ ├── DbConfigurationInterceptionContextTests.cs │ │ │ ├── DbConnectionDispatcherTests.cs │ │ │ ├── DbConnectionInterceptionContextTests.cs │ │ │ ├── DbConnectionPropertyInterceptionContextTests.cs │ │ │ ├── DbInterceptionContextTests.cs │ │ │ ├── DbTransactionDispatcherTests.cs │ │ │ ├── DbTransactionInterceptionContextTests.cs │ │ │ ├── DispatchersTests.cs │ │ │ ├── EnlistTransactionInterceptionContextTests.cs │ │ │ ├── EntityConnectionDispatcherTests.cs │ │ │ ├── InterceptionContextMutableDataTests.cs │ │ │ ├── InterceptionTests.cs │ │ │ └── InternalDispatcherTests.cs │ │ ├── MappingViews │ │ │ ├── DbMappingViewCacheTypeAttributeTests.cs │ │ │ ├── DbMappingViewTests.cs │ │ │ └── DefaultDbMappingViewCacheFactoryTests.cs │ │ ├── ModelNamespaceConventionTests.cs │ │ ├── Net40DefaultDbProviderFactoryServiceTests.cs │ │ ├── Pluralization │ │ │ ├── CustomPluralizationEntryTests.cs │ │ │ └── EnglishPluralizationServiceTests.cs │ │ ├── ProviderInvariantNameTests.cs │ │ ├── TestHelpers │ │ │ └── DbMemberEntryVerifier.cs │ │ └── Transactions │ │ │ ├── CommitFailedExceptionTests.cs │ │ │ ├── CommitFailureHandlerTests.cs │ │ │ ├── DefaultTransactionHandlerTests.cs │ │ │ ├── TransactionContextInitializerTests.cs │ │ │ └── TransactionRowTests.cs │ ├── Internal │ │ ├── AppConfigTests.cs │ │ ├── ClonedObjectContextTests.cs │ │ ├── CommandTracerTests.cs │ │ ├── ConfigFile │ │ │ ├── EntityFrameworkSectionTests.cs │ │ │ ├── InterceptorElementTests.cs │ │ │ ├── InterceptorsCollectionTests.cs │ │ │ ├── ParameterCollectionTests.cs │ │ │ ├── ParameterElementTests.cs │ │ │ ├── ProviderCollectionTests.cs │ │ │ └── ProviderElementTests.cs │ │ ├── ContextConfigTests.cs │ │ ├── DatabaseCreatorTests.cs │ │ ├── DatabaseTableCheckerTests.cs │ │ ├── DbHelpersTests.cs │ │ ├── DbSetDiscoveryServiceTests.cs │ │ ├── DefaultModelCacheKeyFactoryTests.cs │ │ ├── DefaultModelCacheKeyTests.cs │ │ ├── EagerInternalContextTests.cs │ │ ├── EdmMetadataRepositoryTests.cs │ │ ├── InitializerConfigTests.cs │ │ ├── InterceptableDbCommandTests.cs │ │ ├── InternalCollectionEntryTests.cs │ │ ├── InternalConnectionTests.cs │ │ ├── InternalContextTests.cs │ │ ├── InternalEntityEntryTests.cs │ │ ├── InternalEntityPropertyEntryTests.cs │ │ ├── InternalReferenceEntryTests.cs │ │ ├── InternalSqlNonSetQueryTests.cs │ │ ├── InternalSqlSetQueryTests.cs │ │ ├── LazyAsyncEnumeratorTests.cs │ │ ├── LazyEnumeratorTests.cs │ │ ├── LazyInternalContextTests.cs │ │ ├── Linq │ │ │ ├── DbQueryProviderTests.cs │ │ │ ├── InternalDbQueryTests.cs │ │ │ ├── InternalDbSetTests.cs │ │ │ ├── InternalSetTests.cs │ │ │ └── TestHelpers │ │ │ │ └── InternalSetForMock`.cs │ │ ├── ModelCompatibilityCheckerTests.cs │ │ ├── ModelHashCalculatorTests.cs │ │ ├── TestHelpers │ │ │ ├── InternalCollectionEntryForMock.cs │ │ │ ├── InternalContextForMock.cs │ │ │ ├── InternalContextForMockWithRealContext`.cs │ │ │ ├── InternalContextForMock`.cs │ │ │ ├── InternalEntityEntryForMock.cs │ │ │ ├── InternalReferenceEntryForMock.cs │ │ │ ├── MockHelper.cs │ │ │ ├── NavigationEntryMetadataForMock.cs │ │ │ ├── PropertyEntryMetadataForMock.cs │ │ │ └── TestInternalPropertyValues`.cs │ │ └── ThrowingMonitorTests.cs │ ├── Migrations │ │ ├── AnnotationValuesTests.cs │ │ ├── Builders │ │ │ ├── ColumnBuilderTests.cs │ │ │ ├── ParameterBuilderTests.cs │ │ │ └── TableBuilderTests.cs │ │ ├── DbMigrationTests.cs │ │ ├── DbMigrationsConfigurationTests.cs │ │ ├── DbMigrationsConfiguration`Tests.cs │ │ ├── DbMigratorTests.cs │ │ ├── DbSetMigrationsExtensionsTests.cs │ │ ├── Design │ │ │ ├── CSharpMigrationCodeGeneratorTests.cs │ │ │ ├── MigrationCodeGeneratorTests.cs │ │ │ └── VisualBasicMigrationCodeGeneratorTests.cs │ │ ├── Edm │ │ │ └── ModelCompressorTests.cs │ │ ├── History │ │ │ └── HistoryRepositoryTests.cs │ │ ├── Infrastructure │ │ │ ├── DynamicToFunctionModificationCommandConverterTests.cs │ │ │ ├── EdmModelDifferTests.cs │ │ │ ├── FunctionsModel.cs │ │ │ ├── MigrationAssemblyTests.cs │ │ │ ├── MigratorLoggingDecoratorTests.cs │ │ │ ├── MigratorScriptingDecoratorTests.cs │ │ │ └── ModificationCommandTreeGeneratorTests.cs │ │ ├── Model │ │ │ ├── AddColumnOperationTests.cs │ │ │ ├── AddForeignKeyOperationTests.cs │ │ │ ├── AddPrimaryKeyOperationTests.cs │ │ │ ├── AlterColumnOperationTests.cs │ │ │ ├── AlterProcedureOperationTests.cs │ │ │ ├── AlterTableOperationTests.cs │ │ │ ├── ColumnModelTests.cs │ │ │ ├── CreateIndexOperationTests.cs │ │ │ ├── CreateProcedureOperationTests.cs │ │ │ ├── CreateTableOperationTests.cs │ │ │ ├── DropColumnOperationTests.cs │ │ │ ├── DropForeignKeyOperationTests.cs │ │ │ ├── DropIndexOperationTests.cs │ │ │ ├── DropPrimaryKeyOperationTests.cs │ │ │ ├── DropProcedureOperationTests.cs │ │ │ ├── DropTableOperationTests.cs │ │ │ ├── HistoryOperationTests.cs │ │ │ ├── MoveProcedureOperationTests.cs │ │ │ ├── MoveTableOperationTests.cs │ │ │ ├── ParameterModelTests.cs │ │ │ ├── RenameColumnOperationTests.cs │ │ │ ├── RenameIndexOperationTests.cs │ │ │ ├── RenameProcedureOperationTests.cs │ │ │ ├── RenameTableOperationTests.cs │ │ │ ├── SqlOperationTests.cs │ │ │ └── UpdateDatabaseOperationTests.cs │ │ └── Utilities │ │ │ ├── ConfigurationFileUpdaterTests.cs │ │ │ ├── DatabaseCreatorTests.cs │ │ │ ├── EmptyContextTests.cs │ │ │ ├── IndentedTextWriterTests.cs │ │ │ ├── MigrationsConfigurationFinderTests.cs │ │ │ └── UtcNowGeneratorTests.cs │ ├── ModelConfiguration │ │ ├── ComplexTypeConfigurationTests.cs │ │ ├── Configuration │ │ │ ├── ConfigurationRegistrarTests.cs │ │ │ ├── ConfigurationTypeActivatorTests.cs │ │ │ ├── ConfigurationTypeFilterTests.cs │ │ │ ├── ConfigurationTypesFinderTests.cs │ │ │ ├── Conventions │ │ │ │ ├── PropertyConventionConfigurationTests.cs │ │ │ │ ├── PropertyConventionWithHavingConfigurationTests.cs │ │ │ │ ├── TypeConventionConfigurationTests.cs │ │ │ │ ├── TypeConventionOfTypeConfigurationTests.cs │ │ │ │ ├── TypeConventionOfTypeWithHavingConfigurationTests.cs │ │ │ │ └── TypeConventionWithHavingConfigurationTests.cs │ │ │ ├── ConventionsConfigurationTests.cs │ │ │ ├── ConventionsTypeActivatorTests.cs │ │ │ ├── ConventionsTypeFilterTests.cs │ │ │ ├── ConventionsTypesFinderTests.cs │ │ │ ├── Functions │ │ │ │ ├── AssociationModificationFunctionConfiguration`Tests.cs │ │ │ │ ├── ConventionDeleteModificationFunctionConfigurationTests.cs │ │ │ │ ├── ConventionInsertModificationFunctionConfigurationTests.cs │ │ │ │ ├── ConventionModificationFunctionsConfigurationTests.cs │ │ │ │ ├── ConventionUpdateModificationFunctionConfigurationTests.cs │ │ │ │ ├── DeleteModificationFunctionConfiguration`Tests.cs │ │ │ │ ├── InsertModificationFunctionConfiguration`Tests.cs │ │ │ │ ├── ManyToManyModificationFunctionConfiguration``Tests.cs │ │ │ │ ├── ManyToManyModificationFunctionsConfiguration``Tests.cs │ │ │ │ ├── ModificationFunctionConfigurationTests.cs │ │ │ │ ├── ModificationFunctionConfiguration`Tests.cs │ │ │ │ ├── ModificationFunctionsConfigurationTests.cs │ │ │ │ ├── ModificationFunctionsConfiguration`Tests.cs │ │ │ │ └── UpdateModificationFunctionConfiguration`Tests.cs │ │ │ ├── Mapping │ │ │ │ ├── Codeplex2465.cs │ │ │ │ └── EntityMappingConfigurationTests.cs │ │ │ ├── ModelConfigurationTests.cs │ │ │ ├── Properties │ │ │ │ ├── Navigation │ │ │ │ │ ├── ConventionNavigationPropertyConfigurationTests.cs │ │ │ │ │ ├── ForeignKeyConstraintConfigurationTests.cs │ │ │ │ │ ├── HasX │ │ │ │ │ │ ├── ManyNavigationPropertyConfigurationTests.cs │ │ │ │ │ │ ├── OptionalNavigationPropertyConfigurationTests.cs │ │ │ │ │ │ └── RequiredNavigationPropertyConfigurationTests.cs │ │ │ │ │ ├── NavigationPropertyConfigurationTests.cs │ │ │ │ │ └── WithX │ │ │ │ │ │ ├── CascadableNavigationPropertyConfigurationTests.cs │ │ │ │ │ │ ├── DependentNavigationPropertyConfigurationTests.cs │ │ │ │ │ │ ├── ForeignKeyAssociationMappingConfigurationTests.cs │ │ │ │ │ │ ├── ForeignKeyNavigationPropertyConfigurationTests.cs │ │ │ │ │ │ ├── ManyToManyAssociationMappingConfigurationTests.cs │ │ │ │ │ │ └── ManyToManyNavigationPropertyConfigurationTests.cs │ │ │ │ └── Primitive │ │ │ │ │ ├── BinaryPropertyConfigurationTests.cs │ │ │ │ │ ├── ConventionPrimitivePropertyConfigurationTests.cs │ │ │ │ │ ├── DateTimePropertyConfigurationTests.cs │ │ │ │ │ ├── DecimalPropertyConfigurationTests.cs │ │ │ │ │ ├── LengthPropertyConfigurationTests.cs │ │ │ │ │ ├── PrimitivePropertyConfigurationTests.cs │ │ │ │ │ ├── PropertyMappingConfigurationTests.cs │ │ │ │ │ └── StringPropertyConfigurationTests.cs │ │ │ ├── TphColumnFixerTests.cs │ │ │ └── Types │ │ │ │ ├── ComplexTypeConfigurationTests.cs │ │ │ │ ├── ConventionTypeConfigurationOfTypeTests.cs │ │ │ │ ├── ConventionTypeConfigurationTests.cs │ │ │ │ └── EntityTypeConfigurationTests.cs │ │ ├── ConventionTests.cs │ │ ├── Conventions │ │ │ ├── Configuration │ │ │ │ ├── Lightweight │ │ │ │ │ ├── PropertyConventionTests.cs │ │ │ │ │ ├── PropertyConventionWithHavingTests.cs │ │ │ │ │ ├── TypeConventionOfTypeTests.cs │ │ │ │ │ ├── TypeConventionOfTypeWithHavingTests.cs │ │ │ │ │ ├── TypeConventionTests.cs │ │ │ │ │ └── TypeConventionWithHavingTests.cs │ │ │ │ ├── Property │ │ │ │ │ ├── ColumnAttributeConventionTests.cs │ │ │ │ │ ├── ConcurrencyCheckAttributeConventionTests.cs │ │ │ │ │ ├── DatabaseGeneratedAttributeConventionTests.cs │ │ │ │ │ ├── ForeignKeyAttributeConventionTests.cs │ │ │ │ │ ├── InversePropertyAttributeConventionTests.cs │ │ │ │ │ ├── KeyAttributeConventionTests.cs │ │ │ │ │ ├── MaxLengthAttributeConventionTests.cs │ │ │ │ │ ├── NotMappedAttributeConventionTests.cs │ │ │ │ │ ├── RequiredNavigationPropertyAttributeConventionTests.cs │ │ │ │ │ ├── RequiredPrimitivePropertyAttributeConventionTests.cs │ │ │ │ │ ├── StringLengthAttributeConventionTests.cs │ │ │ │ │ └── TimestampAttributeConventionTests.cs │ │ │ │ └── Type │ │ │ │ │ ├── ComplexTypeAttributeConventionTests.cs │ │ │ │ │ ├── NotMappedTypeAttributeConventionTests.cs │ │ │ │ │ └── TableAttributeConventionTests.cs │ │ │ └── Edm │ │ │ │ ├── AssociationInverseDiscoveryConventionTests.cs │ │ │ │ ├── ComplexTypeDiscoveryConventionTests.cs │ │ │ │ ├── Db │ │ │ │ ├── ColumnOrderingConventionTests.cs │ │ │ │ ├── ForeignKeyIndexConventionTests.cs │ │ │ │ ├── Mapping │ │ │ │ │ └── ManyToManyCascadeDeleteConventionTests.cs │ │ │ │ └── PluralizingTableNameConventionTests.cs │ │ │ │ ├── DecimalPropertyConventionTests.cs │ │ │ │ ├── DeclaredPropertyOrderingConventionTests.cs │ │ │ │ ├── ForeignKeyAnnotationConventionTests.cs │ │ │ │ ├── ForeignKeyAssociationMultiplicityConventionTests.cs │ │ │ │ ├── ForeignKeyDiscoveryConventionBaseTests.cs │ │ │ │ ├── IdKeyDiscoveryConventionTests.cs │ │ │ │ ├── NavigationPropertyNameForeignKeyDiscoveryConventionTests.cs │ │ │ │ ├── OneToManyCascadeDeleteConventionTests.cs │ │ │ │ ├── OneToOneConstraintIntroductionConventionTests.cs │ │ │ │ ├── PluralizingEntitySetNameConventionTests.cs │ │ │ │ ├── PrimaryKeyNameForeignKeyDiscoveryConventionTests.cs │ │ │ │ ├── PropertyMaxLengthConventionTests.cs │ │ │ │ ├── SqlCePropertyMaxLengthConventionTests.cs │ │ │ │ ├── StoreGeneratedIdentityKeyConventionTests.cs │ │ │ │ └── TypeNameForeignKeyDiscoveryConventionTests.cs │ │ ├── DbModelBuilderTests.cs │ │ ├── Edm │ │ │ ├── AssociationTypeExtensionsTests.cs │ │ │ ├── Common │ │ │ │ ├── DataModelAnnotationExtensionsTests.cs │ │ │ │ └── INamedDataModelItemExtensionsTests.cs │ │ │ ├── ComplexTypeExtensionsTests.cs │ │ │ ├── Db │ │ │ │ ├── EdmModelExtensionsTests.cs │ │ │ │ ├── EntityTypeExtensionsTests.cs │ │ │ │ └── Mapping │ │ │ │ │ ├── DbDatabaseMappingExtensionsTests.cs │ │ │ │ │ ├── StorageAssociationSetMappingExtensionsTests.cs │ │ │ │ │ └── StorageEntityTypeMappingExtensionsTests.cs │ │ │ ├── EdmModelExtensionsTests.cs │ │ │ ├── EdmPropertyExtensionsTests.cs │ │ │ ├── EdmTypeExtensionsTests.cs │ │ │ ├── EntitySetExtensionsTests.cs │ │ │ ├── EntityTypeExtensionsTests.cs │ │ │ ├── EnumTypeExtensionsTests.cs │ │ │ ├── FunctionParameterExtensionsTests.cs │ │ │ ├── NavigationPropertyExtensionsTests.cs │ │ │ ├── RelationshipEndMemberExtensionsTests.cs │ │ │ ├── RelationshipMultiplicityExtensionsTests.cs │ │ │ ├── Serialization │ │ │ │ ├── EdmxSerializerTests.cs │ │ │ │ └── Xsd │ │ │ │ │ ├── Microsoft.Data.Entity.Design.Edmx_1.xsd │ │ │ │ │ ├── Microsoft.Data.Entity.Design.Edmx_2.xsd │ │ │ │ │ ├── Microsoft.Data.Entity.Design.Edmx_3.xsd │ │ │ │ │ ├── System.Data.Resources.AnnotationSchema.xsd │ │ │ │ │ ├── System.Data.Resources.CSDLSchema_1.xsd │ │ │ │ │ ├── System.Data.Resources.CSDLSchema_2.xsd │ │ │ │ │ ├── System.Data.Resources.CSDLSchema_3.xsd │ │ │ │ │ ├── System.Data.Resources.CSMSL_1.xsd │ │ │ │ │ ├── System.Data.Resources.CSMSL_2.xsd │ │ │ │ │ ├── System.Data.Resources.CSMSL_3.xsd │ │ │ │ │ ├── System.Data.Resources.CodeGenerationSchema.xsd │ │ │ │ │ ├── System.Data.Resources.EntityStoreSchemaGenerator.xsd │ │ │ │ │ ├── System.Data.Resources.SSDLSchema_1.xsd │ │ │ │ │ ├── System.Data.Resources.SSDLSchema_2.xsd │ │ │ │ │ └── System.Data.Resources.SSDLSchema_3.xsd │ │ │ └── Services │ │ │ │ ├── DatabaseMappingGeneratorTests.cs │ │ │ │ ├── FunctionParameterMappingGeneratorTests.cs │ │ │ │ ├── ModificationFunctionMappingGeneratorTests.cs │ │ │ │ ├── StructuralTypeMappingGeneratorTests.cs │ │ │ │ └── TableMappingGeneratorTests.cs │ │ ├── EntityTypeConfigurationTests.cs │ │ ├── Mappers │ │ │ ├── AttributeMapperTests.cs │ │ │ ├── NavigationPropertyMapperTests.cs │ │ │ ├── PropertyFilterTests.cs │ │ │ ├── PropertyMapperTests.cs │ │ │ └── TypeMapperTests.cs │ │ ├── ModelValidationExceptionTests.cs │ │ └── Utilities │ │ │ ├── AttributeProviderTests.cs │ │ │ └── PropertyPathTests.cs │ ├── MultiThreadingTests.cs │ ├── Properties │ │ ├── InternalsVisibleTo.cs │ │ ├── UnitTestResources.Designer.cs │ │ ├── UnitTestResources.resx │ │ └── XunitAttributes.cs │ ├── QueryableExtensionsTests.cs │ ├── Spatial │ │ ├── DbGeographyTests.cs │ │ ├── DbGeometryTests.cs │ │ ├── DbSpatialDataReaderTests.cs │ │ ├── DbSpatialServicesTests.cs │ │ ├── DefaultServicesTests.cs │ │ ├── SpatialHelpersTests.cs │ │ └── SpatialServicesLoaderTests.cs │ ├── SqlServer │ │ ├── DefaultSqlExecutionStrategyTests.cs │ │ ├── IDbSpatialValueTests.cs │ │ ├── SqlAzureExecutionStrategyTests.cs │ │ ├── SqlAzureRetriableExceptionDetectorTests.cs │ │ ├── SqlGen │ │ │ ├── DmlFunctionSqlGeneratorTests.cs │ │ │ ├── DmlSqlGeneratorTests.cs │ │ │ ├── SqlFunctionCallHandlerTests.cs │ │ │ ├── SqlGeneratorTests.cs │ │ │ └── SqlStringBuilderTests.cs │ │ ├── SqlProviderManifestTests.cs │ │ ├── SqlProviderServicesTests.cs │ │ ├── SqlServerMigrationSqlGeneratorTests.cs │ │ ├── SqlSpatialDataReaderTests.cs │ │ ├── SqlSpatialServicesTests.cs │ │ ├── SqlTypesAssemblyLoaderTests.cs │ │ ├── SqlVersionUtilsTests.cs │ │ └── Utilities │ │ │ ├── DbExpressionExtensionsTests.cs │ │ │ ├── EdmFunctionExtensionsTests.cs │ │ │ ├── FuncExtensionsTests.cs │ │ │ ├── IDictionaryExtensionsTests.cs │ │ │ ├── MetadataItemExtensionsTests.cs │ │ │ ├── PrimitiveTypeExtensionsTests.cs │ │ │ └── TypeUsageExtensionsTests.cs │ ├── SqlServerCompact │ │ ├── SqlCeMigrationSqlGeneratorTests.cs │ │ ├── SqlCeProviderServicesTests.cs │ │ └── SqlGen │ │ │ ├── DmlSqlGeneratorTests.cs │ │ │ ├── SqlGeneratorTests.cs │ │ │ └── SqlStringBuilderTests.cs │ ├── TestDataFiles │ │ ├── SqlOperation_Basic.sql │ │ └── SqlOperation_Batch.sql │ ├── TestHelpers │ │ ├── AppConfigTestBase.cs │ │ ├── ConfigurationExtensions.cs │ │ ├── DatabaseInitializerTracker.cs │ │ ├── DbContextMockHelper.cs │ │ ├── DbEnumeratorShim.cs │ │ ├── Fake │ │ │ ├── DerivedFakeWithProps.cs │ │ │ ├── FakeDerivedDbContext.cs │ │ │ ├── FakeDerivedEntity.cs │ │ │ ├── FakeDerivedObjectContext.cs │ │ │ ├── FakeEntity.cs │ │ │ ├── FakeSqlConnection.cs │ │ │ ├── FakeSqlGenerator.cs │ │ │ ├── FakeSqlProviderFactory.cs │ │ │ ├── FakeSqlProviderServices.cs │ │ │ └── FakeWithProps.cs │ │ ├── Mock │ │ │ ├── DbContextUsingMockInternalContext.cs │ │ │ ├── MockAssembly.cs │ │ │ ├── MockPropertyInfo.cs │ │ │ └── MockType.cs │ │ └── TestModelBuilder.cs │ ├── UnitTests.csproj │ ├── Utilities │ │ ├── AssemblyExtensionsTests.cs │ │ ├── ByteExtensionsTests.cs │ │ ├── DatabaseNameTests.cs │ │ ├── DbConnectionExtensionsTests.cs │ │ ├── DbContextExtensionsTests.cs │ │ ├── DbModelExtensionsTests.cs │ │ ├── DbProviderFactoryExtensionsTests.cs │ │ ├── DbProviderInfoExtensionsTests.cs │ │ ├── DbProviderManifestExtensionsTests.cs │ │ ├── DbProviderServicesExtensionsTests.cs │ │ ├── DynamicEqualityComparerLinqIntegrationTests.cs │ │ ├── DynamicEqualityComparerTests.cs │ │ ├── ExpressionExtensionsTests.cs │ │ ├── IEnumerableExtensionsTests.cs │ │ ├── MemberInfoExtensionsTests.cs │ │ ├── PropertyInfoExtensionsTests.cs │ │ ├── ProviderRowFinderTests.cs │ │ ├── SqlDataReaderWrapperTests.cs │ │ ├── StringExtensionsTests.cs │ │ ├── TaskExtensionsTests.cs │ │ ├── TaskHelperTests.cs │ │ ├── TypeExtensionsTests.cs │ │ ├── TypeFinderTests.cs │ │ ├── XContainerExtensionsTests.cs │ │ └── XDocumentExtensionsTests.cs │ ├── Validation │ │ ├── ComplexPropertyValidatorTests.cs │ │ ├── ComplexTypeValidatorTests.cs │ │ ├── DbEntityValidationExceptionTests.cs │ │ ├── DbEntityValidationResultTests.cs │ │ ├── DbUnexpectedValidationExceptionTests.cs │ │ ├── EntityValidatorBuilderTests.cs │ │ ├── EntityValidatorTests.cs │ │ ├── PropertyValidatorTests.cs │ │ ├── TestHelpers │ │ │ ├── EntityValidatorBuilderForMock.cs │ │ │ ├── MockHelper.cs │ │ │ ├── Model │ │ │ │ ├── AircraftInfo.cs │ │ │ │ ├── AirportDetails.cs │ │ │ │ ├── DepartureArrivalInfoWithNestedComplexType.cs │ │ │ │ ├── EntityWithOptionalNestedComplexType.cs │ │ │ │ ├── FlightSegmentWithNestedComplexTypes.cs │ │ │ │ ├── FlightSegmentWithNestedComplexTypesWithTypeLevelValidation.cs │ │ │ │ └── MostDerivedFlightSegmentWithNestedComplexTypes.cs │ │ │ ├── ValidationErrorHelper.cs │ │ │ └── ValidationProviderForMock.cs │ │ ├── ValidatableObjectValidatorTests.cs │ │ ├── ValidationAttributeValidatorTests.cs │ │ ├── ValidationContextTests.cs │ │ └── ValidationProviderTests.cs │ └── WriteEdmxTests.cs ├── VBTests │ ├── App.config │ ├── Properties │ │ └── XunitAttributes.vb │ ├── TemplateTests.vb │ ├── TranslatorTests.vb │ ├── VBTests.vbproj │ ├── VbAdvancedPatterns │ │ ├── AddressMf.vb │ │ ├── AdvancedPatternsModelFirstInitializer.vb │ │ ├── BuildingDetailMf.vb │ │ ├── BuildingMf.vb │ │ ├── CurrentEmployeeMf.vb │ │ ├── EmployeeMf.vb │ │ ├── MailRoomMf.vb │ │ ├── OfficeMf.vb │ │ ├── Partials │ │ │ ├── AddressMf.vb │ │ │ ├── AdvancedPatternsModelFirstContext.vb │ │ │ ├── BuildingMf.vb │ │ │ ├── CurrentEmployeeMf.vb │ │ │ ├── EmployeeMf.vb │ │ │ ├── OfficeMf.vb │ │ │ ├── PastEmployeeMf.vb │ │ │ └── SiteInfoMf.vb │ │ ├── PastEmployeeMf.vb │ │ ├── SiteInfoMf.vb │ │ ├── VbAdvancedPatterns.Context.tt │ │ ├── VbAdvancedPatterns.Context.vb │ │ ├── VbAdvancedPatterns.tt │ │ ├── VbAdvancedPatterns.vb │ │ ├── WhiteboardMf.vb │ │ └── WorkOrderMf.vb │ └── VbMonsterModel │ │ ├── BackOrderLine2Mm.vb │ │ ├── BackOrderLineMm.vb │ │ ├── BarcodeDetailMm.vb │ │ ├── BarcodeMm.vb │ │ ├── ComplaintMm.vb │ │ ├── ComputerDetailMm.vb │ │ ├── ComputerMm.vb │ │ ├── ConcurrencyInfoMm.vb │ │ ├── ContactDetailsMm.vb │ │ ├── CustomerInfoMm.vb │ │ ├── DimensionsMm.vb │ │ ├── DiscontinuedProductMm.vb │ │ ├── DriverMm.vb │ │ ├── ExternalTypes │ │ ├── AuditInfoMm.vb │ │ ├── CustomerMm.vb │ │ ├── LicenseStateMm.vb │ │ ├── LoginMm.vb │ │ ├── PhoneMm.vb │ │ └── PhoneTypeMm.vb │ │ ├── IncorrectScanMm.vb │ │ ├── LastLoginMm.vb │ │ ├── LicenseMm.vb │ │ ├── MessageMm.vb │ │ ├── OrderLineMm.vb │ │ ├── OrderMm.vb │ │ ├── OrderNoteMm.vb │ │ ├── OrderQualityCheckMm.vb │ │ ├── PageViewMm.vb │ │ ├── PasswordResetMm.vb │ │ ├── ProductDetailMm.vb │ │ ├── ProductMm.vb │ │ ├── ProductPageViewMm.vb │ │ ├── ProductPhotoMm.vb │ │ ├── ProductReviewMm.vb │ │ ├── ProductWebFeatureMm.vb │ │ ├── RSATokenMm.vb │ │ ├── ResolutionMm.vb │ │ ├── SmartCardMm.vb │ │ ├── SupplierInfoMm.vb │ │ ├── SupplierLogoMm.vb │ │ ├── SupplierMm.vb │ │ ├── SuspiciousActivityMm.vb │ │ ├── VbMonsterModel.Context.tt │ │ ├── VbMonsterModel.Context.vb │ │ ├── VbMonsterModel.tt │ │ └── VbMonsterModel.vb └── xunit.runner.json └── tools ├── CleanMSSQLLocalDB.cmd ├── DropAllDatabases.sql ├── DropAzureDatabases.ps1 ├── ShrinkLocalDBModel.cmd ├── UpdateProviderAgnosticTestsConfiguration.ps1 └── UpdateTestConnectionStrings.ps1 /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.config/guardian/.gdnbaselines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.config/guardian/.gdnbaselines -------------------------------------------------------------------------------- /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask_a_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.github/ISSUE_TEMPLATE/ask_a_question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/inter-branch-merge-flow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.github/workflows/inter-branch-merge-flow.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /EntityFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/EntityFramework.sln -------------------------------------------------------------------------------- /EntityFramework.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/EntityFramework.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/azure-pipelines-public.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /eng/Publishing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/Publishing.props -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/core-templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/core-templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/install-debs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/install-debs.py -------------------------------------------------------------------------------- /eng/common/cross/riscv64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/riscv64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/x64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/x64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/x86/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/cross/x86/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/dotnet.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/dotnet.cmd -------------------------------------------------------------------------------- /eng/common/dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/dotnet.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/dotnet.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/native/install-dependencies.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/redact-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/post-build/redact-logs.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdk-task.sh -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/vmr-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/steps/vmr-sync.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates/vmr-build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/templates/vmr-build-pr.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /eng/common/vmr-sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/vmr-sync.ps1 -------------------------------------------------------------------------------- /eng/common/vmr-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/common/vmr-sync.sh -------------------------------------------------------------------------------- /eng/sdl-tsa-vars.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/eng/sdl-tsa-vars.config -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /github-merge-flow.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/github-merge-flow.jsonc -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/global.json -------------------------------------------------------------------------------- /restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/restore.cmd -------------------------------------------------------------------------------- /restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/restore.sh -------------------------------------------------------------------------------- /src/Common/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Common/AssemblyExtensions.cs -------------------------------------------------------------------------------- /src/Common/ByteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Common/ByteExtensions.cs -------------------------------------------------------------------------------- /src/Common/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Common/Check.cs -------------------------------------------------------------------------------- /src/Common/DatabaseName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Common/DatabaseName.cs -------------------------------------------------------------------------------- /src/Common/DebugCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Common/DebugCheck.cs -------------------------------------------------------------------------------- /src/Common/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Common/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Common/MemberInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Common/MemberInfoExtensions.cs -------------------------------------------------------------------------------- /src/Common/PropertyInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Common/PropertyInfoExtensions.cs -------------------------------------------------------------------------------- /src/Common/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Common/StringExtensions.cs -------------------------------------------------------------------------------- /src/Common/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Common/TypeExtensions.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/EntityFramework.NuGet/EntityFramework6.psd1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.NuGet/EntityFramework6.psd1.in -------------------------------------------------------------------------------- /src/EntityFramework.NuGet/build/EntityFramework.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.NuGet/build/EntityFramework.props -------------------------------------------------------------------------------- /src/EntityFramework.NuGet/tools/EntityFramework6.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.NuGet/tools/EntityFramework6.psm1 -------------------------------------------------------------------------------- /src/EntityFramework.NuGet/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.NuGet/tools/init.ps1 -------------------------------------------------------------------------------- /src/EntityFramework.NuGet/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.NuGet/tools/install.ps1 -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/DbGeographyAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/DbGeographyAdapter.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/DbGeometryAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/DbGeometryAdapter.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/Expressions.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/IDbSpatialValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/IDbSpatialValue.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/ServerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/ServerType.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlDdlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlDdlBuilder.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlFunctions.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/BoolWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/BoolWrapper.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/ISqlFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/ISqlFragment.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/JoinSymbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/JoinSymbol.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/SkipClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/SkipClause.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/SqlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/SqlBuilder.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/SqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/SqlGenerator.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/SqlWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/SqlWriter.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/Symbol.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/SymbolPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/SymbolPair.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/SymbolTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/SymbolTable.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlGen/TopClause.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlGen/TopClause.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlProviderManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlProviderManifest.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlProviderServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlProviderServices.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlProviderUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlProviderUtilities.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlSpatialDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlSpatialDataReader.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlSpatialFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlSpatialFunctions.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlSpatialServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlSpatialServices.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlTypesAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlTypesAssembly.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlVersion.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServer/SqlVersionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServer/SqlVersionUtils.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServerCompact/ADP1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServerCompact/ADP1.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServerCompact/CommonUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServerCompact/CommonUtils.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServerCompact/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServerCompact/Helper.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServerCompact/SqlDdlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServerCompact/SqlDdlBuilder.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServerCompact/SqlGen/Symbol.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServerCompact/SqlGen/Symbol.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServerCompact/TypeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServerCompact/TypeHelpers.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServerCompact/TypeSemantics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework.SqlServerCompact/TypeSemantics.cs -------------------------------------------------------------------------------- /src/EntityFramework.SqlServerCompact/readme.md: -------------------------------------------------------------------------------- 1 | Allows SQL Server Compact 4.0 to be used with Entity Framework. 2 | -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/DataRecordInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/DataRecordInfo.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/DbProviderManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/DbProviderManifest.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/DbProviderServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/DbProviderServices.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/EntityRecordInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/EntityRecordInfo.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/EntitySql/CqlLexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/EntitySql/CqlLexer.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/EntitySql/CqlLexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/EntitySql/CqlLexer.l -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/EntitySql/CqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/EntitySql/CqlQuery.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/EntitySql/Disposer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/EntitySql/Disposer.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/EntitySql/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/EntitySql/Pair.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/EntitySql/Scope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/EntitySql/Scope.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/EntitySql/y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/EntitySql/y -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/EntityUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/EntityUtil.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/FieldMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/FieldMetadata.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/FieldNameLookup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/FieldNameLookup.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/TypeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/TypeHelpers.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/Utils/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/Utils/Helpers.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/Utils/InternalBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/Utils/InternalBase.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/Utils/KeyToListMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/Utils/KeyToListMap.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/Utils/Memoizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/Utils/Memoizer.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/Utils/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/Utils/Pair.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/Utils/Set.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/Utils/Set.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/Utils/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/Utils/StringUtil.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/Utils/TreePrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/Utils/TreePrinter.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Common/internal/DbTypeMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Common/internal/DbTypeMap.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/EntityException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/EntityException.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/EntityKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/EntityKey.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/EntityKeyMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/EntityKeyMember.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/EntitySqlException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/EntitySqlException.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/IEntityStateEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/IEntityStateEntry.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/IEntityStateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/IEntityStateManager.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/IExtendedDataRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/IExtendedDataRecord.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/InternalMappingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/InternalMappingException.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/EntitySetMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/EntitySetMapping.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/EntityTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/EntityTypeMapping.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/LineInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/LineInfo.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/MappingBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/MappingBase.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/MappingErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/MappingErrorCode.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/MappingFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/MappingFragment.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/MappingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/MappingItem.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/MappingItemLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/MappingItemLoader.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/MemberMappingKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/MemberMappingKind.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/MslConstructs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/MslConstructs.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/ObjectTypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/ObjectTypeMapping.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/PropertyMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/PropertyMapping.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/StringHashBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/StringHashBuilder.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/TypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/TypeMapping.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/ValueCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/ValueCondition.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Mapping/ViewValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Mapping/ViewValidator.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/MappingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/MappingException.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/AspProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/AspProxy.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/ClrEnumType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/ClrEnumType.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/ComplexType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/ComplexType.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/Converter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/Converter.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/DataSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/DataSpace.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EdmConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EdmConstants.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EdmError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EdmError.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EdmFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EdmFunction.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EdmItemError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EdmItemError.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EdmMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EdmMember.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EdmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EdmModel.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EdmProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EdmProperty.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EdmType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EdmType.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EdmValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EdmValidator.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EntitySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EntitySet.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EntityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EntityType.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EnumMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EnumMember.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/EnumType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/EnumType.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/Facet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/Facet.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/FacetValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/FacetValues.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/GlobalItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/GlobalItem.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/Helper.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/MetadataItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/MetadataItem.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/ObjectHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/ObjectHelper.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/Perspective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/Perspective.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/PropertyKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/PropertyKind.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/RefType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/RefType.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/RowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/RowType.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/SimpleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/SimpleType.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/TypeUsage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/TypeUsage.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/XmlConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/XmlConstants.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/safelink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/safelink.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Metadata/Edm/util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Metadata/Edm/util.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/MetadataException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/MetadataException.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/ObjectNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/ObjectNotFoundException.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/CompiledQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/CompiledQuery.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/DelegateFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/DelegateFactory.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ELinq/Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ELinq/Binding.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ELinq/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ELinq/Error.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ELinq/Funcletizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ELinq/Funcletizer.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ELinq/Translator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ELinq/Translator.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ELinq/TypeSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ELinq/TypeSystem.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/EntityEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/EntityEntry.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/EntityFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/EntityFunctions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ExecutionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ExecutionOptions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/FieldDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/FieldDescriptor.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/IObjectSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/IObjectSet.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/IObjectView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/IObjectView.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/IObjectViewData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/IObjectViewData.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/IntBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/IntBox.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/MergeOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/MergeOption.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ObjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ObjectContext.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ObjectParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ObjectParameter.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ObjectQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ObjectQuery.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ObjectQuery`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ObjectQuery`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ObjectResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ObjectResult.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ObjectResult`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ObjectResult`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ObjectSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ObjectSet.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ObjectStateEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ObjectStateEntry.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ObjectView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ObjectView.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/ObjectViewFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/ObjectViewFactory.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/RefreshMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/RefreshMode.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/RelationshipEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/RelationshipEntry.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/SaveOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/SaveOptions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/Span.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/Span.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/SpanIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/SpanIndex.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Objects/StateManagerValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Objects/StateManagerValue.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Query/InternalTrees/Dump.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Query/InternalTrees/Dump.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Query/InternalTrees/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Query/InternalTrees/Node.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Query/InternalTrees/Op.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Query/InternalTrees/Op.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Query/InternalTrees/RefOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Query/InternalTrees/RefOp.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Query/InternalTrees/RelOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Query/InternalTrees/RelOp.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Query/InternalTrees/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Query/InternalTrees/Rule.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Query/InternalTrees/SetOp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Query/InternalTrees/SetOp.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Query/InternalTrees/Table.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Query/InternalTrees/Table.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/Query/InternalTrees/Var.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/Query/InternalTrees/Var.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/SchemaObjectModel/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/SchemaObjectModel/Action.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/SchemaObjectModel/Schema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/SchemaObjectModel/Schema.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/SchemaObjectModel/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/SchemaObjectModel/Utils.cs -------------------------------------------------------------------------------- /src/EntityFramework/Core/UpdateException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Core/UpdateException.cs -------------------------------------------------------------------------------- /src/EntityFramework/CreateDatabaseIfNotExists`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/CreateDatabaseIfNotExists`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Database.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbConfiguration.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbConfigurationTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbConfigurationTypeAttribute.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbContext.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbContextTransaction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbContextTransaction.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbFunctionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbFunctionAttribute.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbFunctions.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbModelBuilder.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbModelBuilderVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbModelBuilderVersion.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbModelBuilderVersionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbModelBuilderVersionAttribute.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbSet.cs -------------------------------------------------------------------------------- /src/EntityFramework/DbSet`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DbSet`.cs -------------------------------------------------------------------------------- /src/EntityFramework/DropCreateDatabaseAlways`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/DropCreateDatabaseAlways`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Edm/EdmModelVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Edm/EdmModelVisitor.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/EntityFramework.csproj -------------------------------------------------------------------------------- /src/EntityFramework/EntityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/EntityState.cs -------------------------------------------------------------------------------- /src/EntityFramework/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Hierarchy/DbHierarchyServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Hierarchy/DbHierarchyServices.cs -------------------------------------------------------------------------------- /src/EntityFramework/Hierarchy/HierarchyId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Hierarchy/HierarchyId.cs -------------------------------------------------------------------------------- /src/EntityFramework/IDatabaseInitializer`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/IDatabaseInitializer`.cs -------------------------------------------------------------------------------- /src/EntityFramework/IDbSet`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/IDbSet`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbChangeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbChangeTracker.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbCompiledModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbCompiledModel.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbContextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbContextInfo.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbEntityEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbEntityEntry.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbEntityEntry`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbEntityEntry`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbMemberEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbMemberEntry.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbMemberEntry`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbMemberEntry`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbModel.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbModelStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbModelStore.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbPropertyEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbPropertyEntry.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbProviderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbProviderInfo.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbQuery.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbQuery`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbQuery`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbRawSqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbRawSqlQuery.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbRawSqlQuery`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbRawSqlQuery`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbSqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbSqlQuery.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/DbSqlQuery`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/DbSqlQuery`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/Design/Executor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/Design/Executor.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/Design/Reporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/Design/Reporter.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/EdmMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/EdmMetadata.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/EdmxReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/EdmxReader.cs -------------------------------------------------------------------------------- /src/EntityFramework/Infrastructure/EdmxWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Infrastructure/EdmxWriter.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/AppConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/AppConfig.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/ClonedObjectContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/ClonedObjectContext.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/CommandTracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/CommandTracer.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/ContextConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/ContextConfig.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/DatabaseCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/DatabaseCreator.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/DatabaseOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/DatabaseOperations.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/DatabaseTableChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/DatabaseTableChecker.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/DbHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/DbHelpers.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/DbLocalView`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/DbLocalView`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/DbSetDiscoveryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/DbSetDiscoveryService.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/DefaultModelCacheKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/DefaultModelCacheKey.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/EagerInternalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/EagerInternalContext.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/EdmMetadataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/EdmMetadataContext.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/EdmMetadataRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/EdmMetadataRepository.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/EntitySetTypePair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/EntitySetTypePair.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/IDbEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/IDbEnumerator.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/IInternalConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/IInternalConnection.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/InitializerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/InitializerConfig.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/InitializerLockPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/InitializerLockPair.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/InternalConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/InternalConnection.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/InternalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/InternalContext.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/InternalSqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/InternalSqlQuery.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/InternalSqlSetQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/InternalSqlSetQuery.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/LazyAsyncEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/LazyAsyncEnumerator.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/LazyEnumerator`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/LazyEnumerator`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/LazyInternalContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/LazyInternalContext.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Linq/DbQueryProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Linq/DbQueryProvider.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Linq/DbQueryVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Linq/DbQueryVisitor.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Linq/IInternalQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Linq/IInternalQuery.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Linq/IInternalQuery`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Linq/IInternalQuery`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Linq/IInternalSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Linq/IInternalSet.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Linq/IInternalSet`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Linq/IInternalSet`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Linq/InternalDbQuery`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Linq/InternalDbQuery`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Linq/InternalDbSet`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Linq/InternalDbSet`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Linq/InternalQuery`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Linq/InternalQuery`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Linq/InternalSet`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Linq/InternalSet`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/ModelHashCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/ModelHashCalculator.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/QueryCacheConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/QueryCacheConfig.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/RepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/RepositoryBase.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/RetryAction`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/RetryAction`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/RetryLazy`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/RetryLazy`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/SortableBindingList`.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/SortableBindingList`.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/ThrowingMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/ThrowingMonitor.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/Validation/IValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/Validation/IValidator.cs -------------------------------------------------------------------------------- /src/EntityFramework/Internal/WrappedEntityKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Internal/WrappedEntityKey.cs -------------------------------------------------------------------------------- /src/EntityFramework/Migrations/DbMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Migrations/DbMigration.cs -------------------------------------------------------------------------------- /src/EntityFramework/Migrations/DbMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Migrations/DbMigrator.cs -------------------------------------------------------------------------------- /src/EntityFramework/Migrations/Edm/EdmXNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Migrations/Edm/EdmXNames.cs -------------------------------------------------------------------------------- /src/EntityFramework/Migrations/Edm/ModelCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Migrations/Edm/ModelCompressor.cs -------------------------------------------------------------------------------- /src/EntityFramework/Migrations/History/HistoryRow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Migrations/History/HistoryRow.cs -------------------------------------------------------------------------------- /src/EntityFramework/Migrations/Model/ColumnModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Migrations/Model/ColumnModel.cs -------------------------------------------------------------------------------- /src/EntityFramework/Migrations/Model/PropertyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Migrations/Model/PropertyModel.cs -------------------------------------------------------------------------------- /src/EntityFramework/Migrations/Model/SqlOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Migrations/Model/SqlOperation.cs -------------------------------------------------------------------------------- /src/EntityFramework/NullDatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/NullDatabaseInitializer.cs -------------------------------------------------------------------------------- /src/EntityFramework/ObservableCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/ObservableCollectionExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/EntityFramework/Properties/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Properties/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /src/EntityFramework/Properties/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Properties/Resources.cs -------------------------------------------------------------------------------- /src/EntityFramework/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Properties/Resources.resx -------------------------------------------------------------------------------- /src/EntityFramework/Properties/Resources.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Properties/Resources.tt -------------------------------------------------------------------------------- /src/EntityFramework/QueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/QueryableExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Spatial/DbGeography.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Spatial/DbGeography.cs -------------------------------------------------------------------------------- /src/EntityFramework/Spatial/DbGeometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Spatial/DbGeometry.cs -------------------------------------------------------------------------------- /src/EntityFramework/Spatial/DbSpatialDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Spatial/DbSpatialDataReader.cs -------------------------------------------------------------------------------- /src/EntityFramework/Spatial/DbSpatialServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Spatial/DbSpatialServices.cs -------------------------------------------------------------------------------- /src/EntityFramework/Spatial/DefaultSpatialServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Spatial/DefaultSpatialServices.cs -------------------------------------------------------------------------------- /src/EntityFramework/Spatial/SpatialHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Spatial/SpatialHelpers.cs -------------------------------------------------------------------------------- /src/EntityFramework/Spatial/SpatialServicesLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Spatial/SpatialServicesLoader.cs -------------------------------------------------------------------------------- /src/EntityFramework/TransactionalBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/TransactionalBehavior.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/BoolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/BoolExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/DbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/DbContextExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/DbModelExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/DbModelExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/HashSetExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/HashSetExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/ProviderRowFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/ProviderRowFinder.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/TaskExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/TaskHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/TaskHelper.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/TypeFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/TypeFinder.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/XContainerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/XContainerExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Utilities/XDocumentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Utilities/XDocumentExtensions.cs -------------------------------------------------------------------------------- /src/EntityFramework/Validation/DbValidationError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/EntityFramework/Validation/DbValidationError.cs -------------------------------------------------------------------------------- /src/Microsoft.Data.Entity.Build.Tasks/EntityClean.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Microsoft.Data.Entity.Build.Tasks/EntityClean.cs -------------------------------------------------------------------------------- /src/Microsoft.Data.Entity.Build.Tasks/EntityDeploy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Microsoft.Data.Entity.Build.Tasks/EntityDeploy.cs -------------------------------------------------------------------------------- /src/Microsoft.Data.Entity.Build.Tasks/XmlConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Microsoft.Data.Entity.Build.Tasks/XmlConstants.cs -------------------------------------------------------------------------------- /src/Microsoft.EntityFramework.SqlServer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/Microsoft.EntityFramework.SqlServer/readme.md -------------------------------------------------------------------------------- /src/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /src/SharedAssemblyVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/SharedAssemblyVersionInfo.cs -------------------------------------------------------------------------------- /src/ef6/AnsiConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/AnsiConsole.cs -------------------------------------------------------------------------------- /src/ef6/AnsiConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/AnsiConstants.cs -------------------------------------------------------------------------------- /src/ef6/AnsiTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/AnsiTextWriter.cs -------------------------------------------------------------------------------- /src/ef6/AppDomainExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/AppDomainExecutor.cs -------------------------------------------------------------------------------- /src/ef6/CommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/CommandException.cs -------------------------------------------------------------------------------- /src/ef6/CommandLineUtils/CommandArgument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/CommandLineUtils/CommandArgument.cs -------------------------------------------------------------------------------- /src/ef6/CommandLineUtils/CommandLineApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/CommandLineUtils/CommandLineApplication.cs -------------------------------------------------------------------------------- /src/ef6/CommandLineUtils/CommandOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/CommandLineUtils/CommandOption.cs -------------------------------------------------------------------------------- /src/ef6/CommandLineUtils/CommandOptionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/CommandLineUtils/CommandOptionType.cs -------------------------------------------------------------------------------- /src/ef6/CommandLineUtils/CommandParsingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/CommandLineUtils/CommandParsingException.cs -------------------------------------------------------------------------------- /src/ef6/Commands/CommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/CommandBase.cs -------------------------------------------------------------------------------- /src/ef6/Commands/DatabaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/DatabaseCommand.cs -------------------------------------------------------------------------------- /src/ef6/Commands/DatabaseUpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/DatabaseUpdateCommand.cs -------------------------------------------------------------------------------- /src/ef6/Commands/EFCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/EFCommandBase.cs -------------------------------------------------------------------------------- /src/ef6/Commands/HelpCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/HelpCommandBase.cs -------------------------------------------------------------------------------- /src/ef6/Commands/MigrationsAddCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/MigrationsAddCommand.cs -------------------------------------------------------------------------------- /src/ef6/Commands/MigrationsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/MigrationsCommand.cs -------------------------------------------------------------------------------- /src/ef6/Commands/MigrationsCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/MigrationsCommandBase.cs -------------------------------------------------------------------------------- /src/ef6/Commands/MigrationsEnableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/MigrationsEnableCommand.cs -------------------------------------------------------------------------------- /src/ef6/Commands/MigrationsListCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/MigrationsListCommand.cs -------------------------------------------------------------------------------- /src/ef6/Commands/ProjectCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/ProjectCommandBase.cs -------------------------------------------------------------------------------- /src/ef6/Commands/RootCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Commands/RootCommand.cs -------------------------------------------------------------------------------- /src/ef6/ExecutorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/ExecutorBase.cs -------------------------------------------------------------------------------- /src/ef6/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/ef6/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Json.cs -------------------------------------------------------------------------------- /src/ef6/Migrations/Design/ScaffoldedMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Migrations/Design/ScaffoldedMigration.cs -------------------------------------------------------------------------------- /src/ef6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Program.cs -------------------------------------------------------------------------------- /src/ef6/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/ef6/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Properties/Resources.resx -------------------------------------------------------------------------------- /src/ef6/ReflectionExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/ReflectionExecutor.cs -------------------------------------------------------------------------------- /src/ef6/Reporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Reporter.cs -------------------------------------------------------------------------------- /src/ef6/ResXResourceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/ResXResourceWriter.cs -------------------------------------------------------------------------------- /src/ef6/Templates/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Templates/Configuration.cs -------------------------------------------------------------------------------- /src/ef6/Templates/Configuration.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Templates/Configuration.vb -------------------------------------------------------------------------------- /src/ef6/Utilities/DebugCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Utilities/DebugCheck.cs -------------------------------------------------------------------------------- /src/ef6/Utilities/TemplateProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/Utilities/TemplateProcessor.cs -------------------------------------------------------------------------------- /src/ef6/WrappedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/WrappedException.cs -------------------------------------------------------------------------------- /src/ef6/ef6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/src/ef6/ef6.csproj -------------------------------------------------------------------------------- /startvs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/startvs.cmd -------------------------------------------------------------------------------- /test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test.cmd -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test.sh -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/Directory.Build.targets -------------------------------------------------------------------------------- /test/FunctionalTests.ProviderAgnostic/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests.ProviderAgnostic/App.config -------------------------------------------------------------------------------- /test/FunctionalTests.Transitional/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests.Transitional/App.config -------------------------------------------------------------------------------- /test/FunctionalTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/App.config -------------------------------------------------------------------------------- /test/FunctionalTests/CodeFirst/CodePlex2169.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/CodeFirst/CodePlex2169.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CodeFirst/QueryCachingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/CodeFirst/QueryCachingTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/EntityClient/AsyncScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/EntityClient/AsyncScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/FunctionalTests.csproj -------------------------------------------------------------------------------- /test/FunctionalTests/Interception/BlogContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Interception/BlogContext.cs -------------------------------------------------------------------------------- /test/FunctionalTests/MetaTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/MetaTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Metadata/MetadataCachingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Metadata/MetadataCachingTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Metadata/MetadataEnumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Metadata/MetadataEnumTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Metadata/MetadataSpatialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Metadata/MetadataSpatialTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Migrations/AddColumnScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Migrations/AddColumnScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Migrations/CustomSqlScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Migrations/CustomSqlScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Migrations/DropIndexScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Migrations/DropIndexScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Migrations/LoggingScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Migrations/LoggingScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Migrations/MappingScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Migrations/MappingScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Migrations/SchemaScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Migrations/SchemaScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Migrations/ScriptingScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Migrations/ScriptingScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Migrations/SeedingScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Migrations/SeedingScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Migrations/SpatialScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Migrations/SpatialScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Migrations/UpgradeScenarios.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Migrations/UpgradeScenarios.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Objects/LazyLoadingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Objects/LazyLoadingTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Objects/TransactionsModel.csdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Objects/TransactionsModel.csdl -------------------------------------------------------------------------------- /test/FunctionalTests/Objects/TransactionsModel.msl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Objects/TransactionsModel.msl -------------------------------------------------------------------------------- /test/FunctionalTests/Objects/TransactionsModel.ssdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Objects/TransactionsModel.ssdl -------------------------------------------------------------------------------- /test/FunctionalTests/Objects/TransactionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Objects/TransactionsTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/PlanCompiler/LinqGroupByTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/PlanCompiler/LinqGroupByTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/DatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/DatabaseTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/DbModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/DbModelTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/DbSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/DbSetTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/DeadlockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/DeadlockTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/DisposeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/DisposeTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/FindTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/FindTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/IncludeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/IncludeTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/LinqTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/LinqTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/SpatialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/SpatialTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/TemplateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/TemplateTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/TimeoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/TimeoutTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/ProductivityApi/enumtests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/ProductivityApi/enumtests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Properties/XunitAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Properties/XunitAttributes.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/ApplyOpRulesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/ApplyOpRulesTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/Bug2612.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/Bug2612.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/Bug952621.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/Bug952621.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/ComparisonTestst.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/ComparisonTestst.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/FilterOpRulesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/FilterOpRulesTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/FunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/FunctionTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/GroupAggregateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/GroupAggregateTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/JoinEliminationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/JoinEliminationTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/NullSemanticsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/NullSemanticsTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/ProductModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/ProductModel.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/QueryEnumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/QueryEnumTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/QueryTestHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/QueryTestHelpers.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/SpatialTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/SpatialTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Query/SqlGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Query/SqlGeneratorTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/SqlClient/DatabaseExistsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/SqlClient/DatabaseExistsTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/SqlServerCompact/CodePlex2197.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/SqlServerCompact/CodePlex2197.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestDoubles/InMemoryDbSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestDoubles/InMemoryDbSet.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestDoubles/InMemorySqlQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestDoubles/InMemorySqlQuery.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestHelpers/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestHelpers/ListExtensions.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestHelpers/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestHelpers/StringExtensions.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestModels/FantasyModel/City.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestModels/FantasyModel/City.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestModels/FantasyModel/Npc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestModels/FantasyModel/Npc.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestModels/FantasyModel/Perk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestModels/FantasyModel/Perk.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestModels/FantasyModel/Race.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestModels/FantasyModel/Race.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestModels/FantasyModel/Skill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestModels/FantasyModel/Skill.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestModels/FantasyModel/Spell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestModels/FantasyModel/Spell.cs -------------------------------------------------------------------------------- /test/FunctionalTests/TestModels/FantasyModel/Tower.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/TestModels/FantasyModel/Tower.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Update/TruncationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Update/TruncationTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Update/UpdateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/Update/UpdateTests.cs -------------------------------------------------------------------------------- /test/FunctionalTests/WrappingProvider/LogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/WrappingProvider/LogItem.cs -------------------------------------------------------------------------------- /test/FunctionalTests/xunit.console.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/FunctionalTests/xunit.console.dll.config -------------------------------------------------------------------------------- /test/MicrosoftSqlProviderSmokeTest/SmokeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/MicrosoftSqlProviderSmokeTest/SmokeTest.cs -------------------------------------------------------------------------------- /test/UnitTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/App.config -------------------------------------------------------------------------------- /test/UnitTests/AssemblyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/AssemblyTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Common/DbProviderServicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Common/DbProviderServicesTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/EntityExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/EntityExceptionTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/EntityKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/EntityKeyTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/EntitySqlExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/EntitySqlExceptionTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/FieldNameLookupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/FieldNameLookupTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Mapping/EntitySetMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Mapping/EntitySetMappingTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Mapping/EntityTypeMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Mapping/EntityTypeMappingTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Mapping/MappingFragmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Mapping/MappingFragmentTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Mapping/MappingItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Mapping/MappingItemTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Mapping/PropertyMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Mapping/PropertyMappingTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Mapping/SetMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Mapping/SetMappingTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Mapping/TypeMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Mapping/TypeMappingTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/AspProxyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/AspProxyTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/ComplexTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/ComplexTypeTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/EdmFunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/EdmFunctionTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/EdmMemberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/EdmMemberTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/EdmModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/EdmModelTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/EdmPropertyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/EdmPropertyTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/EntitySetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/EntitySetTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/EntityTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/EntityTypeTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/EnumMemberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/EnumMemberTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/EnumTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/EnumTypeTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/FacetValuesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/FacetValuesTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/MetadataItemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/MetadataItemTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/RowTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/RowTypeTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Metadata/Edm/TypeUsageTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Metadata/Edm/TypeUsageTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/DelegateFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/DelegateFactoryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/ELinq/TypeSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/ELinq/TypeSystemTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/EntityEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/EntityEntryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/EntityFunctionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/EntityFunctionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/ExecutionOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/ExecutionOptionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/FieldDescriptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/FieldDescriptorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/ObjectContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/ObjectContextTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/ObjectQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/ObjectQueryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/ObjectResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/ObjectResultTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/ObjectViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/ObjectViewTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Core/Objects/TestHelpers/MockHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Core/Objects/TestHelpers/MockHelper.cs -------------------------------------------------------------------------------- /test/UnitTests/DatabaseInitializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/DatabaseInitializerTests.cs -------------------------------------------------------------------------------- /test/UnitTests/DatabaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/DatabaseTests.cs -------------------------------------------------------------------------------- /test/UnitTests/DatabindingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/DatabindingTests.cs -------------------------------------------------------------------------------- /test/UnitTests/DbConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/DbConfigurationTests.cs -------------------------------------------------------------------------------- /test/UnitTests/DbConfigurationTypeAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/DbConfigurationTypeAttributeTests.cs -------------------------------------------------------------------------------- /test/UnitTests/DbContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/DbContextTests.cs -------------------------------------------------------------------------------- /test/UnitTests/DbContextTransactionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/DbContextTransactionTests.cs -------------------------------------------------------------------------------- /test/UnitTests/DbFunctionAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/DbFunctionAttributeTests.cs -------------------------------------------------------------------------------- /test/UnitTests/DbFunctionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/DbFunctionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/DbSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/DbSetTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Edm/EdmModelVisitorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Edm/EdmModelVisitorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/EdmxReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/EdmxReaderTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Hierarchy/HierarchyIdUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Hierarchy/HierarchyIdUnitTests.cs -------------------------------------------------------------------------------- /test/UnitTests/IDbAsyncEnumerableExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/IDbAsyncEnumerableExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbCompiledModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbCompiledModelTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbContextInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbContextInfoTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbEntityEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbEntityEntryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbLocalViewTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbLocalViewTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbModelStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbModelStoreTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbModelTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbPropertyEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbPropertyEntryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbProviderInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbProviderInfoTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbQueryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbRawSqlQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbRawSqlQueryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/DbSqlQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/DbSqlQueryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Infrastructure/Design/ExecutorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Infrastructure/Design/ExecutorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/AppConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/AppConfigTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/ClonedObjectContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/ClonedObjectContextTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/CommandTracerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/CommandTracerTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/ContextConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/ContextConfigTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/DatabaseCreatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/DatabaseCreatorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/DatabaseTableCheckerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/DatabaseTableCheckerTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/DbHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/DbHelpersTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/DbSetDiscoveryServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/DbSetDiscoveryServiceTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/DefaultModelCacheKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/DefaultModelCacheKeyTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/EagerInternalContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/EagerInternalContextTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/EdmMetadataRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/EdmMetadataRepositoryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/InitializerConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/InitializerConfigTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/InternalConnectionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/InternalConnectionTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/InternalContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/InternalContextTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/InternalEntityEntryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/InternalEntityEntryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/InternalSqlSetQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/InternalSqlSetQueryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/LazyAsyncEnumeratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/LazyAsyncEnumeratorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/LazyEnumeratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/LazyEnumeratorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/LazyInternalContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/LazyInternalContextTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/Linq/DbQueryProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/Linq/DbQueryProviderTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/Linq/InternalDbQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/Linq/InternalDbQueryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/Linq/InternalDbSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/Linq/InternalDbSetTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/Linq/InternalSetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/Linq/InternalSetTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/ModelHashCalculatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/ModelHashCalculatorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/TestHelpers/MockHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/TestHelpers/MockHelper.cs -------------------------------------------------------------------------------- /test/UnitTests/Internal/ThrowingMonitorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Internal/ThrowingMonitorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Migrations/AnnotationValuesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Migrations/AnnotationValuesTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Migrations/DbMigrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Migrations/DbMigrationTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Migrations/DbMigratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Migrations/DbMigratorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Migrations/Edm/ModelCompressorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Migrations/Edm/ModelCompressorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Migrations/Model/ColumnModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Migrations/Model/ColumnModelTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Migrations/Model/SqlOperationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Migrations/Model/SqlOperationTests.cs -------------------------------------------------------------------------------- /test/UnitTests/ModelConfiguration/ConventionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/ModelConfiguration/ConventionTests.cs -------------------------------------------------------------------------------- /test/UnitTests/MultiThreadingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/MultiThreadingTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Properties/InternalsVisibleTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Properties/InternalsVisibleTo.cs -------------------------------------------------------------------------------- /test/UnitTests/Properties/UnitTestResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Properties/UnitTestResources.resx -------------------------------------------------------------------------------- /test/UnitTests/Properties/XunitAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Properties/XunitAttributes.cs -------------------------------------------------------------------------------- /test/UnitTests/QueryableExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/QueryableExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Spatial/DbGeographyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Spatial/DbGeographyTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Spatial/DbGeometryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Spatial/DbGeometryTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Spatial/DbSpatialDataReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Spatial/DbSpatialDataReaderTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Spatial/DbSpatialServicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Spatial/DbSpatialServicesTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Spatial/DefaultServicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Spatial/DefaultServicesTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Spatial/SpatialHelpersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Spatial/SpatialHelpersTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Spatial/SpatialServicesLoaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Spatial/SpatialServicesLoaderTests.cs -------------------------------------------------------------------------------- /test/UnitTests/SqlServer/IDbSpatialValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/SqlServer/IDbSpatialValueTests.cs -------------------------------------------------------------------------------- /test/UnitTests/SqlServer/SqlGen/SqlGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/SqlServer/SqlGen/SqlGeneratorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/SqlServer/SqlProviderManifestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/SqlServer/SqlProviderManifestTests.cs -------------------------------------------------------------------------------- /test/UnitTests/SqlServer/SqlProviderServicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/SqlServer/SqlProviderServicesTests.cs -------------------------------------------------------------------------------- /test/UnitTests/SqlServer/SqlSpatialDataReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/SqlServer/SqlSpatialDataReaderTests.cs -------------------------------------------------------------------------------- /test/UnitTests/SqlServer/SqlSpatialServicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/SqlServer/SqlSpatialServicesTests.cs -------------------------------------------------------------------------------- /test/UnitTests/SqlServer/SqlVersionUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/SqlServer/SqlVersionUtilsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/TestDataFiles/SqlOperation_Basic.sql: -------------------------------------------------------------------------------- 1 | insert into foo -------------------------------------------------------------------------------- /test/UnitTests/TestDataFiles/SqlOperation_Batch.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestDataFiles/SqlOperation_Batch.sql -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/AppConfigTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/AppConfigTestBase.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/DbContextMockHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/DbContextMockHelper.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/DbEnumeratorShim.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/DbEnumeratorShim.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/Fake/FakeDerivedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/Fake/FakeDerivedEntity.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/Fake/FakeEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/Fake/FakeEntity.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/Fake/FakeSqlConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/Fake/FakeSqlConnection.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/Fake/FakeSqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/Fake/FakeSqlGenerator.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/Fake/FakeWithProps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/Fake/FakeWithProps.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/Mock/MockAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/Mock/MockAssembly.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/Mock/MockPropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/Mock/MockPropertyInfo.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/Mock/MockType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/Mock/MockType.cs -------------------------------------------------------------------------------- /test/UnitTests/TestHelpers/TestModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/TestHelpers/TestModelBuilder.cs -------------------------------------------------------------------------------- /test/UnitTests/UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/UnitTests.csproj -------------------------------------------------------------------------------- /test/UnitTests/Utilities/AssemblyExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/AssemblyExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/ByteExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/ByteExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/DatabaseNameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/DatabaseNameTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/DbContextExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/DbContextExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/DbModelExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/DbModelExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/ExpressionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/ExpressionExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/MemberInfoExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/MemberInfoExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/ProviderRowFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/ProviderRowFinderTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/SqlDataReaderWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/SqlDataReaderWrapperTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/StringExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/TaskExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/TaskExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/TaskHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/TaskHelperTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/TypeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/TypeExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/TypeFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/TypeFinderTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/XContainerExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/XContainerExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Utilities/XDocumentExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Utilities/XDocumentExtensionsTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Validation/EntityValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Validation/EntityValidatorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Validation/PropertyValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Validation/PropertyValidatorTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Validation/TestHelpers/MockHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Validation/TestHelpers/MockHelper.cs -------------------------------------------------------------------------------- /test/UnitTests/Validation/ValidationContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Validation/ValidationContextTests.cs -------------------------------------------------------------------------------- /test/UnitTests/Validation/ValidationProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/Validation/ValidationProviderTests.cs -------------------------------------------------------------------------------- /test/UnitTests/WriteEdmxTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/UnitTests/WriteEdmxTests.cs -------------------------------------------------------------------------------- /test/VBTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/App.config -------------------------------------------------------------------------------- /test/VBTests/Properties/XunitAttributes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/Properties/XunitAttributes.vb -------------------------------------------------------------------------------- /test/VBTests/TemplateTests.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/TemplateTests.vb -------------------------------------------------------------------------------- /test/VBTests/TranslatorTests.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/TranslatorTests.vb -------------------------------------------------------------------------------- /test/VBTests/VBTests.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VBTests.vbproj -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/AddressMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/AddressMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/BuildingDetailMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/BuildingDetailMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/BuildingMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/BuildingMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/CurrentEmployeeMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/CurrentEmployeeMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/EmployeeMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/EmployeeMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/MailRoomMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/MailRoomMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/OfficeMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/OfficeMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/Partials/AddressMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/Partials/AddressMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/Partials/OfficeMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/Partials/OfficeMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/PastEmployeeMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/PastEmployeeMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/SiteInfoMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/SiteInfoMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/VbAdvancedPatterns.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/VbAdvancedPatterns.tt -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/VbAdvancedPatterns.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/VbAdvancedPatterns.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/WhiteboardMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/WhiteboardMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbAdvancedPatterns/WorkOrderMf.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbAdvancedPatterns/WorkOrderMf.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/BackOrderLine2Mm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/BackOrderLine2Mm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/BackOrderLineMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/BackOrderLineMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/BarcodeDetailMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/BarcodeDetailMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/BarcodeMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/BarcodeMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ComplaintMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ComplaintMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ComputerDetailMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ComputerDetailMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ComputerMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ComputerMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ConcurrencyInfoMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ConcurrencyInfoMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ContactDetailsMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ContactDetailsMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/CustomerInfoMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/CustomerInfoMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/DimensionsMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/DimensionsMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/DiscontinuedProductMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/DiscontinuedProductMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/DriverMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/DriverMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ExternalTypes/LoginMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ExternalTypes/LoginMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ExternalTypes/PhoneMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ExternalTypes/PhoneMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/IncorrectScanMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/IncorrectScanMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/LastLoginMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/LastLoginMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/LicenseMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/LicenseMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/MessageMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/MessageMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/OrderLineMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/OrderLineMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/OrderMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/OrderMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/OrderNoteMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/OrderNoteMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/OrderQualityCheckMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/OrderQualityCheckMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/PageViewMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/PageViewMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/PasswordResetMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/PasswordResetMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ProductDetailMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ProductDetailMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ProductMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ProductMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ProductPageViewMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ProductPageViewMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ProductPhotoMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ProductPhotoMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ProductReviewMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ProductReviewMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ProductWebFeatureMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ProductWebFeatureMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/RSATokenMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/RSATokenMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/ResolutionMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/ResolutionMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/SmartCardMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/SmartCardMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/SupplierInfoMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/SupplierInfoMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/SupplierLogoMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/SupplierLogoMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/SupplierMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/SupplierMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/SuspiciousActivityMm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/SuspiciousActivityMm.vb -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/VbMonsterModel.Context.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/VbMonsterModel.Context.tt -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/VbMonsterModel.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/VbMonsterModel.tt -------------------------------------------------------------------------------- /test/VBTests/VbMonsterModel/VbMonsterModel.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/VBTests/VbMonsterModel/VbMonsterModel.vb -------------------------------------------------------------------------------- /test/xunit.runner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/test/xunit.runner.json -------------------------------------------------------------------------------- /tools/CleanMSSQLLocalDB.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/tools/CleanMSSQLLocalDB.cmd -------------------------------------------------------------------------------- /tools/DropAllDatabases.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/tools/DropAllDatabases.sql -------------------------------------------------------------------------------- /tools/DropAzureDatabases.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/tools/DropAzureDatabases.ps1 -------------------------------------------------------------------------------- /tools/ShrinkLocalDBModel.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/tools/ShrinkLocalDBModel.cmd -------------------------------------------------------------------------------- /tools/UpdateProviderAgnosticTestsConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/tools/UpdateProviderAgnosticTestsConfiguration.ps1 -------------------------------------------------------------------------------- /tools/UpdateTestConnectionStrings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/ef6/HEAD/tools/UpdateTestConnectionStrings.ps1 --------------------------------------------------------------------------------