From 9f01dcefa8a3d92eaec9d0831bb0c049b8a215d6 Mon Sep 17 00:00:00 2001 From: Adam Hopkins <127156771+simpat-adam@users.noreply.github.com> Date: Wed, 8 Nov 2023 19:39:20 -0600 Subject: [PATCH] [ODS-5418] Remove DescriptorIds from descriptor resource payloads (#868) Co-authored-by: Geoffrey McElhanon --- .../Container/Modules/ApplicationModule.cs | 6 + .../Extensions/ResourceExtensions.cs | 4 +- .../IDomainModelDefinitionsTransformer.cs | 3 +- .../Transformers/PriorDescriptorIdRemover.cs | 40 + .../Models/Domain/DomainModelProvider.cs | 1 + .../Models/Resource/ResourceProperty.cs | 9 + .../Conventions/ExtensionsConventionsTests.cs | 1 + .../Models/Domain/DomainModelTests.cs | 1 + .../Models/Resource/FilterContextTests.cs | 1 + ...ofileResourceMembersFilterProviderTests.cs | 1 + .../Resource/ProfileResourceModelTests.cs | 1 + .../Models/Resource/ResourceTests.cs | 1 + .../SchemaNameMapProviderTests.cs | 1 + .../DomainModelDefinitionsProviderHelper.cs | 1 + ...ls_Entities_Entities.generated.approved.cs | 15 - ...ces_EntityInterfaces.generated.approved.cs | 15 - ...Mappers_EntityMapper.generated.approved.cs | 39 +- ..._Resources_Resources.generated.approved.cs | 27 +- ...ls_Entities_Entities.generated.approved.cs | 20 - ...ces_EntityInterfaces.generated.approved.cs | 20 - ...Mappers_EntityMapper.generated.approved.cs | 52 +- ..._Resources_Resources.generated.approved.cs | 36 +- ...ls_Entities_Entities.generated.approved.cs | 90 - ...ces_EntityInterfaces.generated.approved.cs | 90 - ...Mappers_EntityMapper.generated.approved.cs | 234 +- ..._Resources_Resources.generated.approved.cs | 162 +- ...tityOrmMappings.generated.hbm.approved.xml | 1 - ...pingsForQueries.generated.hbm.approved.xml | 1 - ...tityOrmMappings.generated.hbm.approved.xml | 1 - ...pingsForQueries.generated.hbm.approved.xml | 1 - ...ls_Entities_Entities.generated.approved.cs | 946 ----- ...s_EntitiesForQueries.generated.approved.cs | 1 - ...ces_EntityInterfaces.generated.approved.cs | 951 ----- ...Mappers_EntityMapper.generated.approved.cs | 3047 ++++----------- ..._Resources_Resources.generated.approved.cs | 1701 +------- ...ls_Entities_Entities.generated.approved.cs | 15 - ...ces_EntityInterfaces.generated.approved.cs | 15 - ...Mappers_EntityMapper.generated.approved.cs | 39 +- ..._Resources_Resources.generated.approved.cs | 27 +- ...ls_Entities_Entities.generated.approved.cs | 20 - ...ces_EntityInterfaces.generated.approved.cs | 20 - ...Mappers_EntityMapper.generated.approved.cs | 52 +- ..._Resources_Resources.generated.approved.cs | 36 +- ...ls_Entities_Entities.generated.approved.cs | 90 - ...ces_EntityInterfaces.generated.approved.cs | 90 - ...Mappers_EntityMapper.generated.approved.cs | 234 +- ..._Resources_Resources.generated.approved.cs | 162 +- ...tityOrmMappings.generated.hbm.approved.xml | 1 - ...pingsForQueries.generated.hbm.approved.xml | 1 - ...tityOrmMappings.generated.hbm.approved.xml | 1 - ...pingsForQueries.generated.hbm.approved.xml | 1 - ...ls_Entities_Entities.generated.approved.cs | 996 ----- ...s_EntitiesForQueries.generated.approved.cs | 1 - ...ces_EntityInterfaces.generated.approved.cs | 1001 ----- ...Mappers_EntityMapper.generated.approved.cs | 3475 ++++------------- ..._Resources_Resources.generated.approved.cs | 1791 +-------- .../Generators/EntityMapper.cs | 1 + .../Generators/Resources/PropertyData.cs | 1 + .../Mustache/EntityMapper.mustache | 10 +- .../Mustache/Resources.mustache | 2 +- .../Impl/TemplateContextProvider.cs | 8 +- 61 files changed, 2139 insertions(+), 13472 deletions(-) rename Application/EdFi.Ods.Common/Models/{ => Definitions/Transformers}/IDomainModelDefinitionsTransformer.cs (86%) create mode 100644 Application/EdFi.Ods.Common/Models/Definitions/Transformers/PriorDescriptorIdRemover.cs diff --git a/Application/EdFi.Ods.Api/Container/Modules/ApplicationModule.cs b/Application/EdFi.Ods.Api/Container/Modules/ApplicationModule.cs index b4cb2cd6ae..398fee6a93 100644 --- a/Application/EdFi.Ods.Api/Container/Modules/ApplicationModule.cs +++ b/Application/EdFi.Ods.Api/Container/Modules/ApplicationModule.cs @@ -40,6 +40,7 @@ using EdFi.Ods.Common.IO; using EdFi.Ods.Common.Logging; using EdFi.Ods.Common.Models; +using EdFi.Ods.Common.Models.Definitions.Transformers; using EdFi.Ods.Common.Models.Domain; using EdFi.Ods.Common.Models.Resource; using EdFi.Ods.Common.Providers; @@ -114,6 +115,11 @@ protected override void Load(ContainerBuilder builder) .As() .SingleInstance(); + // Domain model transformers + builder.RegisterType() + .As() + .SingleInstance(); + // Schemas builder.Register(c => c.Resolve().GetDomainModel().Schemas.ToArray()) .As() diff --git a/Application/EdFi.Ods.Common/Extensions/ResourceExtensions.cs b/Application/EdFi.Ods.Common/Extensions/ResourceExtensions.cs index 45b06ff99d..1fc97c6727 100644 --- a/Application/EdFi.Ods.Common/Extensions/ResourceExtensions.cs +++ b/Application/EdFi.Ods.Common/Extensions/ResourceExtensions.cs @@ -99,7 +99,9 @@ public static IEnumerable NonReferencedProperties(this Resourc .ToHashSet(); return resourceClassBase.AllProperties - .Where(p => (p.IsUnified() && p.IsLocallyDefined && !p.PropertyType.IsNullable) || !propertiesOfReferences.Contains(p.PropertyName)); + .Where(p => (p.IsUnified() && p.IsLocallyDefined && !p.PropertyType.IsNullable) + || !propertiesOfReferences.Contains(p.PropertyName)) + .Where(p => !p.JsonIgnore); } /// diff --git a/Application/EdFi.Ods.Common/Models/IDomainModelDefinitionsTransformer.cs b/Application/EdFi.Ods.Common/Models/Definitions/Transformers/IDomainModelDefinitionsTransformer.cs similarity index 86% rename from Application/EdFi.Ods.Common/Models/IDomainModelDefinitionsTransformer.cs rename to Application/EdFi.Ods.Common/Models/Definitions/Transformers/IDomainModelDefinitionsTransformer.cs index 76319c07aa..73e116be1f 100644 --- a/Application/EdFi.Ods.Common/Models/IDomainModelDefinitionsTransformer.cs +++ b/Application/EdFi.Ods.Common/Models/Definitions/Transformers/IDomainModelDefinitionsTransformer.cs @@ -4,9 +4,8 @@ // See the LICENSE and NOTICES files in the project root for more information. using System.Collections.Generic; -using EdFi.Ods.Common.Models.Definitions; -namespace EdFi.Ods.Common.Models +namespace EdFi.Ods.Common.Models.Definitions.Transformers { public interface IDomainModelDefinitionsTransformer { diff --git a/Application/EdFi.Ods.Common/Models/Definitions/Transformers/PriorDescriptorIdRemover.cs b/Application/EdFi.Ods.Common/Models/Definitions/Transformers/PriorDescriptorIdRemover.cs new file mode 100644 index 0000000000..1f35874991 --- /dev/null +++ b/Application/EdFi.Ods.Common/Models/Definitions/Transformers/PriorDescriptorIdRemover.cs @@ -0,0 +1,40 @@ +// SPDX-License-Identifier: Apache-2.0 +// Licensed to the Ed-Fi Alliance under one or more agreements. +// The Ed-Fi Alliance licenses this file to you under the Apache License, Version 2.0. +// See the LICENSE and NOTICES files in the project root for more information. + +using System.Collections.Generic; +using System.Linq; +using EdFi.Ods.Common.Conventions; +using EdFi.Ods.Common.Models.Domain; + +namespace EdFi.Ods.Common.Models.Definitions.Transformers; + +/// +/// Implements a transformer that removes the PriorDescriptorId property from the edfi.Descriptor entity's definition +/// to prevent any artifacts from being generated or rendered for it. This class should be removed once the property +/// has been removed from the source ApiModel.json file generated by MetaEd. +/// +public class PriorDescriptorIdRemover : IDomainModelDefinitionsTransformer +{ + public IEnumerable TransformDefinitions(IEnumerable definitions) + { + foreach (DomainModelDefinitions domainModelDefinitions in definitions) + { + // Look for the edfi.Descriptor entity definition + var entityDefinition = domainModelDefinitions.EntityDefinitions?.FirstOrDefault( + ed => new FullName(ed.Schema, ed.Name) == EdFiConventions.DescriptorFullName); + + if (entityDefinition != null) + { + // Remove the PriorDescriptorId property + entityDefinition.LocallyDefinedProperties = + entityDefinition.LocallyDefinedProperties + .Where(p => p.PropertyName != "PriorDescriptorId") + .ToArray(); + } + + yield return domainModelDefinitions; + } + } +} diff --git a/Application/EdFi.Ods.Common/Models/Domain/DomainModelProvider.cs b/Application/EdFi.Ods.Common/Models/Domain/DomainModelProvider.cs index fd8525d13b..34b638a085 100644 --- a/Application/EdFi.Ods.Common/Models/Domain/DomainModelProvider.cs +++ b/Application/EdFi.Ods.Common/Models/Domain/DomainModelProvider.cs @@ -7,6 +7,7 @@ using System.Collections.Generic; using System.Linq; using EdFi.Ods.Common.Models.Definitions; +using EdFi.Ods.Common.Models.Definitions.Transformers; namespace EdFi.Ods.Common.Models.Domain { diff --git a/Application/EdFi.Ods.Common/Models/Resource/ResourceProperty.cs b/Application/EdFi.Ods.Common/Models/Resource/ResourceProperty.cs index 5931f5815d..944c51c488 100644 --- a/Application/EdFi.Ods.Common/Models/Resource/ResourceProperty.cs +++ b/Application/EdFi.Ods.Common/Models/Resource/ResourceProperty.cs @@ -73,6 +73,9 @@ public ResourceProperty(ResourceMemberBase containingMember, ResourceClassBase r && entityProperty.Entity.IsPersonEntity() && UniqueIdConventions.IsUniqueId(entityProperty.PropertyName, entityProperty.Entity.Name)); + // Concrete DescriptorId properties should not be exposed over JSON or API metadata + JsonIgnore = entityProperty.Entity.IsDescriptorEntity && entityProperty.IsIdentifying; + IsLocallyDefined = entityProperty.IsLocallyDefined; IsServerAssigned = entityProperty.IsServerAssigned; @@ -276,6 +279,12 @@ private bool IsUsiWithTransformedResourcePropertyName(EntityProperty property) && property.DefiningProperty.Entity.IsPersonEntity(); } + /// + /// Indicates whether the property should be excluded from the JSON representation of the resource + /// and corresponding Open API metadata. + /// + public bool JsonIgnore { get; } + /// public override string JsonPath { diff --git a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Conventions/ExtensionsConventionsTests.cs b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Conventions/ExtensionsConventionsTests.cs index d2b04b9b30..ab0bf8fc27 100644 --- a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Conventions/ExtensionsConventionsTests.cs +++ b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Conventions/ExtensionsConventionsTests.cs @@ -10,6 +10,7 @@ using EdFi.Ods.Common; using EdFi.Ods.Common.Conventions; using EdFi.Ods.Common.Models; +using EdFi.Ods.Common.Models.Definitions.Transformers; using EdFi.Ods.Common.Models.Domain; using EdFi.Ods.Tests.TestExtension; using EdFi.TestFixture; diff --git a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Domain/DomainModelTests.cs b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Domain/DomainModelTests.cs index b3b0738ded..393a058bb9 100644 --- a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Domain/DomainModelTests.cs +++ b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Domain/DomainModelTests.cs @@ -8,6 +8,7 @@ using System.Linq; using EdFi.Ods.Common.Models; using EdFi.Ods.Common.Models.Definitions; +using EdFi.Ods.Common.Models.Definitions.Transformers; using EdFi.Ods.Common.Models.Domain; using EdFi.Ods.Tests.TestExtension; using EdFi.TestFixture; diff --git a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/FilterContextTests.cs b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/FilterContextTests.cs index 6940373a3b..97c02d04be 100644 --- a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/FilterContextTests.cs +++ b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/FilterContextTests.cs @@ -14,6 +14,7 @@ using EdFi.Ods.Common.Extensions; using EdFi.Ods.Common.Models; using EdFi.Ods.Common.Models.Definitions; +using EdFi.Ods.Common.Models.Definitions.Transformers; using EdFi.Ods.Common.Models.Domain; using EdFi.Ods.Common.Models.Resource; using EdFi.TestFixture; diff --git a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ProfileResourceMembersFilterProviderTests.cs b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ProfileResourceMembersFilterProviderTests.cs index b6c13d80b4..43861dd4ec 100644 --- a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ProfileResourceMembersFilterProviderTests.cs +++ b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ProfileResourceMembersFilterProviderTests.cs @@ -11,6 +11,7 @@ using System.Xml.Linq; using EdFi.Ods.Common.Models; using EdFi.Ods.Common.Models.Definitions; +using EdFi.Ods.Common.Models.Definitions.Transformers; using EdFi.Ods.Common.Models.Domain; using EdFi.Ods.Common.Models.Resource; using EdFi.Ods.Common.Models.Validation; diff --git a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ProfileResourceModelTests.cs b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ProfileResourceModelTests.cs index e670de29da..12ae91a8f5 100644 --- a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ProfileResourceModelTests.cs +++ b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ProfileResourceModelTests.cs @@ -11,6 +11,7 @@ using System.Xml.Linq; using EdFi.Ods.Common.Models; using EdFi.Ods.Common.Models.Definitions; +using EdFi.Ods.Common.Models.Definitions.Transformers; using EdFi.Ods.Common.Models.Domain; using EdFi.Ods.Common.Models.Resource; using EdFi.Ods.Common.Models.Validation; diff --git a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ResourceTests.cs b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ResourceTests.cs index 4e33207bed..3090cb1fc4 100644 --- a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ResourceTests.cs +++ b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/Models/Resource/ResourceTests.cs @@ -10,6 +10,7 @@ using EdFi.Ods.Common.Conventions; using EdFi.Ods.Common.Models; using EdFi.Ods.Common.Models.Definitions; +using EdFi.Ods.Common.Models.Definitions.Transformers; using EdFi.Ods.Common.Models.Domain; using EdFi.Ods.Common.Models.Resource; using EdFi.TestFixture; diff --git a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/SchemaNameMapProviderTests.cs b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/SchemaNameMapProviderTests.cs index 0d8211d44b..d1a777c8a4 100644 --- a/Application/EdFi.Ods.Tests/EdFi.Ods.Common/SchemaNameMapProviderTests.cs +++ b/Application/EdFi.Ods.Tests/EdFi.Ods.Common/SchemaNameMapProviderTests.cs @@ -7,6 +7,7 @@ using EdFi.Ods.Common; using EdFi.Ods.Common.Models; using EdFi.Ods.Common.Models.Definitions; +using EdFi.Ods.Common.Models.Definitions.Transformers; using EdFi.Ods.Common.Models.Domain; using EdFi.Ods.Tests._Extensions; using EdFi.TestFixture; diff --git a/Application/Test.Common/DomainModelDefinitionsProviderHelper.cs b/Application/Test.Common/DomainModelDefinitionsProviderHelper.cs index 106940e650..bd8b55c879 100644 --- a/Application/Test.Common/DomainModelDefinitionsProviderHelper.cs +++ b/Application/Test.Common/DomainModelDefinitionsProviderHelper.cs @@ -9,6 +9,7 @@ using EdFi.Ods.Common; using EdFi.Ods.Common.Models; using EdFi.Ods.Common.Models.Definitions; +using EdFi.Ods.Common.Models.Definitions.Transformers; using EdFi.Ods.Common.Models.Domain; using EdFi.Ods.Common.Models.Resource; using EdFi.Ods.Features.OpenApiMetadata.Dtos; diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs index b2900e35de..5e6bb51028 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs @@ -77,11 +77,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -2060,11 +2055,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -2244,11 +2234,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs index 0d42feccbb..e120b44c57 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs @@ -43,7 +43,6 @@ public ArtMediumDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -52,7 +51,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -61,7 +59,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -78,8 +75,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -575,7 +570,6 @@ public FavoriteBookCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -584,7 +578,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -593,7 +586,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -610,8 +602,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -651,7 +641,6 @@ public MembershipTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -660,7 +649,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -669,7 +657,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -686,8 +673,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs index bec5a0c5cd..77ff741aa6 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs @@ -32,7 +32,8 @@ public static bool SynchronizeTo(this IArtMediumDescriptor source, IArtMediumDes // Detect primary key changes if ( - (target.ArtMediumDescriptorId != source.ArtMediumDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ArtMediumDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77,13 +78,6 @@ public static bool SynchronizeTo(this IArtMediumDescriptor source, IArtMediumDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -131,9 +125,6 @@ public static void MapTo(this IArtMediumDescriptor source, IArtMediumDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -965,7 +956,8 @@ public static bool SynchronizeTo(this IFavoriteBookCategoryDescriptor source, IF // Detect primary key changes if ( - (target.FavoriteBookCategoryDescriptorId != source.FavoriteBookCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on FavoriteBookCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1010,13 +1002,6 @@ public static bool SynchronizeTo(this IFavoriteBookCategoryDescriptor source, IF isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1064,9 +1049,6 @@ public static void MapTo(this IFavoriteBookCategoryDescriptor source, IFavoriteB if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1126,7 +1108,8 @@ public static bool SynchronizeTo(this IMembershipTypeDescriptor source, IMembers // Detect primary key changes if ( - (target.MembershipTypeDescriptorId != source.MembershipTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MembershipTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1171,13 +1154,6 @@ public static bool SynchronizeTo(this IMembershipTypeDescriptor source, IMembers isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1225,9 +1201,6 @@ public static void MapTo(this IMembershipTypeDescriptor source, IMembershipTypeD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Resources_Resources.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Resources_Resources.generated.approved.cs index b92aa3454d..b259fed1a1 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Resources_Resources.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_4.0.0_Resources_Resources.generated.approved.cs @@ -69,7 +69,7 @@ public class ArtMediumDescriptor : Entities.Common.Sample.IArtMediumDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="artMediumDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ArtMediumDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -164,13 +164,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -2811,7 +2804,7 @@ public class FavoriteBookCategoryDescriptor : Entities.Common.Sample.IFavoriteBo /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="favoriteBookCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int FavoriteBookCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -2906,13 +2899,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -3082,7 +3068,7 @@ public class MembershipTypeDescriptor : Entities.Common.Sample.IMembershipTypeDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="membershipTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MembershipTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -3177,13 +3163,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs index fc8f880698..6ac1e22a74 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs @@ -77,11 +77,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -261,11 +256,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -745,11 +735,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -1339,11 +1324,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs index 6b6f4f44dd..dd237965d9 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs @@ -43,7 +43,6 @@ public InstitutionControlDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -52,7 +51,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -61,7 +59,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -78,8 +75,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -119,7 +114,6 @@ public InstitutionLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -128,7 +122,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -137,7 +130,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -154,8 +146,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -254,7 +244,6 @@ public SpecialEducationGraduationStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -263,7 +252,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -272,7 +260,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -289,8 +276,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -432,7 +417,6 @@ public SubmissionCertificationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -441,7 +425,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -450,7 +433,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -467,8 +449,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs index 6b2370c2bf..b34705e9e7 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs @@ -32,7 +32,8 @@ public static bool SynchronizeTo(this IInstitutionControlDescriptor source, IIns // Detect primary key changes if ( - (target.InstitutionControlDescriptorId != source.InstitutionControlDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InstitutionControlDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77,13 +78,6 @@ public static bool SynchronizeTo(this IInstitutionControlDescriptor source, IIns isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -131,9 +125,6 @@ public static void MapTo(this IInstitutionControlDescriptor source, IInstitution if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -193,7 +184,8 @@ public static bool SynchronizeTo(this IInstitutionLevelDescriptor source, IInsti // Detect primary key changes if ( - (target.InstitutionLevelDescriptorId != source.InstitutionLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InstitutionLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -238,13 +230,6 @@ public static bool SynchronizeTo(this IInstitutionLevelDescriptor source, IInsti isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -292,9 +277,6 @@ public static void MapTo(this IInstitutionLevelDescriptor source, IInstitutionLe if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -468,7 +450,8 @@ public static bool SynchronizeTo(this ISpecialEducationGraduationStatusDescripto // Detect primary key changes if ( - (target.SpecialEducationGraduationStatusDescriptorId != source.SpecialEducationGraduationStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SpecialEducationGraduationStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -513,13 +496,6 @@ public static bool SynchronizeTo(this ISpecialEducationGraduationStatusDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -567,9 +543,6 @@ public static void MapTo(this ISpecialEducationGraduationStatusDescriptor source if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -801,7 +774,8 @@ public static bool SynchronizeTo(this ISubmissionCertificationDescriptor source, // Detect primary key changes if ( - (target.SubmissionCertificationDescriptorId != source.SubmissionCertificationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SubmissionCertificationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -846,13 +820,6 @@ public static bool SynchronizeTo(this ISubmissionCertificationDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -900,9 +867,6 @@ public static void MapTo(this ISubmissionCertificationDescriptor source, ISubmis if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Resources_Resources.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Resources_Resources.generated.approved.cs index 44fd79b3b9..253d6cc346 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Resources_Resources.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_4.0.0_Resources_Resources.generated.approved.cs @@ -69,7 +69,7 @@ public class InstitutionControlDescriptor : Entities.Common.SampleStudentTranscr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="institutionControlDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InstitutionControlDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -164,13 +164,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -340,7 +333,7 @@ public class InstitutionLevelDescriptor : Entities.Common.SampleStudentTranscrip /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="institutionLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InstitutionLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -435,13 +428,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -958,7 +944,7 @@ public class SpecialEducationGraduationStatusDescriptor : Entities.Common.Sample /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="specialEducationGraduationStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SpecialEducationGraduationStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -1053,13 +1039,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -1745,7 +1724,7 @@ public class SubmissionCertificationDescriptor : Entities.Common.SampleStudentTr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="submissionCertificationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SubmissionCertificationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -1840,13 +1819,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs index 922ece15c3..863a1929d0 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Entities_Entities.generated.approved.cs @@ -77,11 +77,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -261,11 +256,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -4878,11 +4868,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -5062,11 +5047,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -5888,11 +5868,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -6643,11 +6618,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -6827,11 +6797,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -7011,11 +6976,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -9312,11 +9272,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -10929,11 +10884,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -12438,11 +12388,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -12622,11 +12567,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -12806,11 +12746,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13361,11 +13296,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13545,11 +13475,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -15951,11 +15876,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -16135,11 +16055,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -16751,11 +16666,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs index ab3a1e0e37..3e15955b48 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs @@ -43,7 +43,6 @@ public AccreditationStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -52,7 +51,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -61,7 +59,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -78,8 +75,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -119,7 +114,6 @@ public AidTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -128,7 +122,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -137,7 +130,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -154,8 +146,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1332,7 +1322,6 @@ public CertificationRouteDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1341,7 +1330,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1350,7 +1338,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1367,8 +1354,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1408,7 +1393,6 @@ public CoteachingStyleObservedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1417,7 +1401,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1426,7 +1409,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1443,8 +1425,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1584,7 +1564,6 @@ public CredentialStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1593,7 +1572,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1602,7 +1580,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1619,8 +1596,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1822,7 +1797,6 @@ public EducatorRoleDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1831,7 +1805,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1840,7 +1813,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1857,8 +1829,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1898,7 +1868,6 @@ public EnglishLanguageExamDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1907,7 +1876,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1916,7 +1884,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1933,8 +1900,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1974,7 +1939,6 @@ public EPPProgramPathwayDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1983,7 +1947,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1992,7 +1955,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2009,8 +1971,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2397,7 +2357,6 @@ public EvaluationElementRatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2406,7 +2365,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2415,7 +2373,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2432,8 +2389,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2812,7 +2767,6 @@ public EvaluationPeriodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2821,7 +2775,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2830,7 +2783,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2847,8 +2799,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3062,7 +3012,6 @@ public EvaluationRatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3071,7 +3020,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3080,7 +3028,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3097,8 +3044,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3308,7 +3253,6 @@ public EvaluationRatingStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3317,7 +3261,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3326,7 +3269,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3343,8 +3285,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3384,7 +3324,6 @@ public EvaluationTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3393,7 +3332,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3402,7 +3340,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3419,8 +3356,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3531,7 +3466,6 @@ public GenderDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3540,7 +3474,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3549,7 +3482,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3566,8 +3498,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3607,7 +3537,6 @@ public ObjectiveRatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3616,7 +3545,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3625,7 +3553,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3642,8 +3569,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3990,7 +3915,6 @@ public PerformanceEvaluationRatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3999,7 +3923,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4008,7 +3931,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4025,8 +3947,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4236,7 +4156,6 @@ public PerformanceEvaluationTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4245,7 +4164,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4254,7 +4172,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4271,8 +4188,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4391,7 +4306,6 @@ public RubricRatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4400,7 +4314,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4409,7 +4322,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4426,8 +4338,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs index f1f3c2e948..ffc7c35e52 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs @@ -32,7 +32,8 @@ public static bool SynchronizeTo(this IAccreditationStatusDescriptor source, IAc // Detect primary key changes if ( - (target.AccreditationStatusDescriptorId != source.AccreditationStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AccreditationStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77,13 +78,6 @@ public static bool SynchronizeTo(this IAccreditationStatusDescriptor source, IAc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -131,9 +125,6 @@ public static void MapTo(this IAccreditationStatusDescriptor source, IAccreditat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -193,7 +184,8 @@ public static bool SynchronizeTo(this IAidTypeDescriptor source, IAidTypeDescrip // Detect primary key changes if ( - (target.AidTypeDescriptorId != source.AidTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AidTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -238,13 +230,6 @@ public static bool SynchronizeTo(this IAidTypeDescriptor source, IAidTypeDescrip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -292,9 +277,6 @@ public static void MapTo(this IAidTypeDescriptor source, IAidTypeDescriptor targ if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -2219,7 +2201,8 @@ public static bool SynchronizeTo(this ICertificationRouteDescriptor source, ICer // Detect primary key changes if ( - (target.CertificationRouteDescriptorId != source.CertificationRouteDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CertificationRouteDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -2264,13 +2247,6 @@ public static bool SynchronizeTo(this ICertificationRouteDescriptor source, ICer isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -2318,9 +2294,6 @@ public static void MapTo(this ICertificationRouteDescriptor source, ICertificati if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -2380,7 +2353,8 @@ public static bool SynchronizeTo(this ICoteachingStyleObservedDescriptor source, // Detect primary key changes if ( - (target.CoteachingStyleObservedDescriptorId != source.CoteachingStyleObservedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CoteachingStyleObservedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -2425,13 +2399,6 @@ public static bool SynchronizeTo(this ICoteachingStyleObservedDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -2479,9 +2446,6 @@ public static void MapTo(this ICoteachingStyleObservedDescriptor source, ICoteac if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -2794,7 +2758,8 @@ public static bool SynchronizeTo(this ICredentialStatusDescriptor source, ICrede // Detect primary key changes if ( - (target.CredentialStatusDescriptorId != source.CredentialStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CredentialStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -2839,13 +2804,6 @@ public static bool SynchronizeTo(this ICredentialStatusDescriptor source, ICrede isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -2893,9 +2851,6 @@ public static void MapTo(this ICredentialStatusDescriptor source, ICredentialSta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -3153,7 +3108,8 @@ public static bool SynchronizeTo(this IEducatorRoleDescriptor source, IEducatorR // Detect primary key changes if ( - (target.EducatorRoleDescriptorId != source.EducatorRoleDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducatorRoleDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -3198,13 +3154,6 @@ public static bool SynchronizeTo(this IEducatorRoleDescriptor source, IEducatorR isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -3252,9 +3201,6 @@ public static void MapTo(this IEducatorRoleDescriptor source, IEducatorRoleDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -3314,7 +3260,8 @@ public static bool SynchronizeTo(this IEnglishLanguageExamDescriptor source, IEn // Detect primary key changes if ( - (target.EnglishLanguageExamDescriptorId != source.EnglishLanguageExamDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EnglishLanguageExamDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -3359,13 +3306,6 @@ public static bool SynchronizeTo(this IEnglishLanguageExamDescriptor source, IEn isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -3413,9 +3353,6 @@ public static void MapTo(this IEnglishLanguageExamDescriptor source, IEnglishLan if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -3475,7 +3412,8 @@ public static bool SynchronizeTo(this IEPPProgramPathwayDescriptor source, IEPPP // Detect primary key changes if ( - (target.EPPProgramPathwayDescriptorId != source.EPPProgramPathwayDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EPPProgramPathwayDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -3520,13 +3458,6 @@ public static bool SynchronizeTo(this IEPPProgramPathwayDescriptor source, IEPPP isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -3574,9 +3505,6 @@ public static void MapTo(this IEPPProgramPathwayDescriptor source, IEPPProgramPa if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -4401,7 +4329,8 @@ public static bool SynchronizeTo(this IEvaluationElementRatingLevelDescriptor so // Detect primary key changes if ( - (target.EvaluationElementRatingLevelDescriptorId != source.EvaluationElementRatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationElementRatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -4446,13 +4375,6 @@ public static bool SynchronizeTo(this IEvaluationElementRatingLevelDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -4500,9 +4422,6 @@ public static void MapTo(this IEvaluationElementRatingLevelDescriptor source, IE if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5047,7 +4966,8 @@ public static bool SynchronizeTo(this IEvaluationPeriodDescriptor source, IEvalu // Detect primary key changes if ( - (target.EvaluationPeriodDescriptorId != source.EvaluationPeriodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationPeriodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5092,13 +5012,6 @@ public static bool SynchronizeTo(this IEvaluationPeriodDescriptor source, IEvalu isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5146,9 +5059,6 @@ public static void MapTo(this IEvaluationPeriodDescriptor source, IEvaluationPer if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5723,7 +5633,8 @@ public static bool SynchronizeTo(this IEvaluationRatingLevelDescriptor source, I // Detect primary key changes if ( - (target.EvaluationRatingLevelDescriptorId != source.EvaluationRatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationRatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5768,13 +5679,6 @@ public static bool SynchronizeTo(this IEvaluationRatingLevelDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5822,9 +5726,6 @@ public static void MapTo(this IEvaluationRatingLevelDescriptor source, IEvaluati if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5884,7 +5785,8 @@ public static bool SynchronizeTo(this IEvaluationRatingStatusDescriptor source, // Detect primary key changes if ( - (target.EvaluationRatingStatusDescriptorId != source.EvaluationRatingStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationRatingStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5929,13 +5831,6 @@ public static bool SynchronizeTo(this IEvaluationRatingStatusDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5983,9 +5878,6 @@ public static void MapTo(this IEvaluationRatingStatusDescriptor source, IEvaluat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -6045,7 +5937,8 @@ public static bool SynchronizeTo(this IEvaluationTypeDescriptor source, IEvaluat // Detect primary key changes if ( - (target.EvaluationTypeDescriptorId != source.EvaluationTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -6090,13 +5983,6 @@ public static bool SynchronizeTo(this IEvaluationTypeDescriptor source, IEvaluat isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -6144,9 +6030,6 @@ public static void MapTo(this IEvaluationTypeDescriptor source, IEvaluationTypeD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -6339,7 +6222,8 @@ public static bool SynchronizeTo(this IGenderDescriptor source, IGenderDescripto // Detect primary key changes if ( - (target.GenderDescriptorId != source.GenderDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GenderDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -6384,13 +6268,6 @@ public static bool SynchronizeTo(this IGenderDescriptor source, IGenderDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -6438,9 +6315,6 @@ public static void MapTo(this IGenderDescriptor source, IGenderDescriptor target if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -6500,7 +6374,8 @@ public static bool SynchronizeTo(this IObjectiveRatingLevelDescriptor source, IO // Detect primary key changes if ( - (target.ObjectiveRatingLevelDescriptorId != source.ObjectiveRatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ObjectiveRatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -6545,13 +6420,6 @@ public static bool SynchronizeTo(this IObjectiveRatingLevelDescriptor source, IO isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -6599,9 +6467,6 @@ public static void MapTo(this IObjectiveRatingLevelDescriptor source, IObjective if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7498,7 +7363,8 @@ public static bool SynchronizeTo(this IPerformanceEvaluationRatingLevelDescripto // Detect primary key changes if ( - (target.PerformanceEvaluationRatingLevelDescriptorId != source.PerformanceEvaluationRatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PerformanceEvaluationRatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7543,13 +7409,6 @@ public static bool SynchronizeTo(this IPerformanceEvaluationRatingLevelDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7597,9 +7456,6 @@ public static void MapTo(this IPerformanceEvaluationRatingLevelDescriptor source if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7659,7 +7515,8 @@ public static bool SynchronizeTo(this IPerformanceEvaluationTypeDescriptor sourc // Detect primary key changes if ( - (target.PerformanceEvaluationTypeDescriptorId != source.PerformanceEvaluationTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PerformanceEvaluationTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7704,13 +7561,6 @@ public static bool SynchronizeTo(this IPerformanceEvaluationTypeDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7758,9 +7608,6 @@ public static void MapTo(this IPerformanceEvaluationTypeDescriptor source, IPerf if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7959,7 +7806,8 @@ public static bool SynchronizeTo(this IRubricRatingLevelDescriptor source, IRubr // Detect primary key changes if ( - (target.RubricRatingLevelDescriptorId != source.RubricRatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RubricRatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -8004,13 +7852,6 @@ public static bool SynchronizeTo(this IRubricRatingLevelDescriptor source, IRubr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -8058,9 +7899,6 @@ public static void MapTo(this IRubricRatingLevelDescriptor source, IRubricRating if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Resources_Resources.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Resources_Resources.generated.approved.cs index 5e8fb3afe8..fb5bcfb091 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Resources_Resources.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_4.0.0_Resources_Resources.generated.approved.cs @@ -69,7 +69,7 @@ public class AccreditationStatusDescriptor : Entities.Common.TPDM.IAccreditation /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="accreditationStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AccreditationStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -164,13 +164,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -340,7 +333,7 @@ public class AidTypeDescriptor : Entities.Common.TPDM.IAidTypeDescriptor, Entiti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="aidTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AidTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -435,13 +428,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -5877,7 +5863,7 @@ public class CertificationRouteDescriptor : Entities.Common.TPDM.ICertificationR /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="certificationRouteDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CertificationRouteDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -5972,13 +5958,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -6148,7 +6127,7 @@ public class CoteachingStyleObservedDescriptor : Entities.Common.TPDM.ICoteachin /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="coteachingStyleObservedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CoteachingStyleObservedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -6243,13 +6222,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -7237,7 +7209,7 @@ public class CredentialStatusDescriptor : Entities.Common.TPDM.ICredentialStatus /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="credentialStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CredentialStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -7332,13 +7304,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -8240,7 +8205,7 @@ public class EducatorRoleDescriptor : Entities.Common.TPDM.IEducatorRoleDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educatorRoleDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducatorRoleDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -8335,13 +8300,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -8511,7 +8469,7 @@ public class EnglishLanguageExamDescriptor : Entities.Common.TPDM.IEnglishLangua /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="englishLanguageExamDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EnglishLanguageExamDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -8606,13 +8564,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -8782,7 +8733,7 @@ public class EPPProgramPathwayDescriptor : Entities.Common.TPDM.IEPPProgramPathw /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="eppProgramPathwayDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EPPProgramPathwayDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -8877,13 +8828,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -12480,7 +12424,7 @@ public class EvaluationElementRatingLevelDescriptor : Entities.Common.TPDM.IEval /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationElementRatingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationElementRatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -12575,13 +12519,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -15112,7 +15049,7 @@ public class EvaluationPeriodDescriptor : Entities.Common.TPDM.IEvaluationPeriod /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationPeriodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationPeriodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -15207,13 +15144,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -17466,7 +17396,7 @@ public class EvaluationRatingLevelDescriptor : Entities.Common.TPDM.IEvaluationR /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationRatingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationRatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17561,13 +17491,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -17737,7 +17660,7 @@ public class EvaluationRatingStatusDescriptor : Entities.Common.TPDM.IEvaluation /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationRatingStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationRatingStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17832,13 +17755,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -18008,7 +17924,7 @@ public class EvaluationTypeDescriptor : Entities.Common.TPDM.IEvaluationTypeDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -18103,13 +18019,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -18735,7 +18644,7 @@ public class GenderDescriptor : Entities.Common.TPDM.IGenderDescriptor, Entities /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="genderDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GenderDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -18830,13 +18739,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -19006,7 +18908,7 @@ public class ObjectiveRatingLevelDescriptor : Entities.Common.TPDM.IObjectiveRat /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="objectiveRatingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ObjectiveRatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -19101,13 +19003,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -22146,7 +22041,7 @@ public class PerformanceEvaluationRatingLevelDescriptor : Entities.Common.TPDM.I /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="performanceEvaluationRatingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PerformanceEvaluationRatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -22241,13 +22136,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -22417,7 +22305,7 @@ public class PerformanceEvaluationTypeDescriptor : Entities.Common.TPDM.IPerform /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="performanceEvaluationTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PerformanceEvaluationTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -22512,13 +22400,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -23443,7 +23324,7 @@ public class RubricRatingLevelDescriptor : Entities.Common.TPDM.IRubricRatingLev /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="rubricRatingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RubricRatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -23538,13 +23419,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_MsSql_EntityOrmMappings.generated.hbm.approved.xml b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_MsSql_EntityOrmMappings.generated.hbm.approved.xml index 14f45daff7..83cd7964d5 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_MsSql_EntityOrmMappings.generated.hbm.approved.xml +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_MsSql_EntityOrmMappings.generated.hbm.approved.xml @@ -2579,7 +2579,6 @@ - diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_MsSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_MsSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml index 2e124e1ee8..b829c08380 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_MsSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_MsSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml @@ -2779,7 +2779,6 @@ - diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_PgSql_EntityOrmMappings.generated.hbm.approved.xml b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_PgSql_EntityOrmMappings.generated.hbm.approved.xml index 3c55a32cbb..d8b0f10fe1 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_PgSql_EntityOrmMappings.generated.hbm.approved.xml +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_PgSql_EntityOrmMappings.generated.hbm.approved.xml @@ -2579,7 +2579,6 @@ - diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_PgSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_PgSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml index da4fff660a..87d4b8dbd2 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_PgSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_EntityOrmMappings_PgSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml @@ -2779,7 +2779,6 @@ - diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Entities_Entities.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Entities_Entities.generated.approved.cs index 804f22fb45..3375243b36 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Entities_Entities.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Entities_Entities.generated.approved.cs @@ -76,11 +76,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -260,11 +255,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -444,11 +434,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -926,11 +911,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -1436,11 +1416,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -1620,11 +1595,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -1804,11 +1774,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -1988,11 +1953,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -2172,11 +2132,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -2356,11 +2311,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -2540,11 +2490,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -6620,11 +6565,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -6804,11 +6744,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -7828,11 +7763,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -8012,11 +7942,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -8196,11 +8121,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -8380,11 +8300,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -9177,11 +9092,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -9361,11 +9271,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -9545,11 +9450,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -10271,11 +10171,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -10455,11 +10350,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -12888,11 +12778,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13072,11 +12957,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13256,11 +13136,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13440,11 +13315,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13624,11 +13494,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -14589,11 +14454,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -15300,11 +15160,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -16178,11 +16033,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -16362,11 +16212,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -16546,11 +16391,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -17668,11 +17508,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -18182,11 +18017,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -18366,11 +18196,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -18550,11 +18375,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -18734,11 +18554,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -18918,11 +18733,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -21267,11 +21077,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -21451,11 +21256,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -21635,11 +21435,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -21819,11 +21614,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -22003,11 +21793,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -23346,11 +23131,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -26888,11 +26668,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -27072,11 +26847,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -27256,11 +27026,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -27440,11 +27205,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -27624,11 +27384,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -27808,11 +27563,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -27992,11 +27742,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -28201,7 +27946,6 @@ public virtual DateTime? EffectiveEndDate [RequiredWithNonDefault, StringLength(255, MinimumLength=0), NoDangerousText] public virtual string Namespace { get; set; } - public virtual int? PriorDescriptorId { get; set; } [RequiredWithNonDefault, StringLength(75, MinimumLength=0), NoDangerousText] public virtual string ShortDescription { get; set; } // ------------------------------------------------------------- @@ -28922,11 +28666,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -29106,11 +28845,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -29290,11 +29024,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -29474,11 +29203,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -29658,11 +29382,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -29842,11 +29561,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -31589,11 +31303,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -31773,11 +31482,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -33228,11 +32932,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -33412,11 +33111,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -38538,11 +38232,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -38722,11 +38411,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -38906,11 +38590,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -40320,11 +39999,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -40723,11 +40397,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -40907,11 +40576,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -41091,11 +40755,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -41275,11 +40934,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -41459,11 +41113,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -41643,11 +41292,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -42148,11 +41792,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -46034,11 +45673,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -46218,11 +45852,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -46402,11 +46031,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -46586,11 +46210,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -47123,11 +46742,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -49837,11 +49451,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -50021,11 +49630,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -50205,11 +49809,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -50389,11 +49988,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -50573,11 +50167,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -50757,11 +50346,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -50941,11 +50525,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -51125,11 +50704,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -51309,11 +50883,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -51493,11 +51062,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -51677,11 +51241,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -51861,11 +51420,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -52045,11 +51599,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -52229,11 +51778,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -55463,11 +55007,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -55647,11 +55186,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -60646,11 +60180,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -60830,11 +60359,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -61014,11 +60538,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -64948,11 +64467,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -65498,11 +65012,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -65682,11 +65191,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -65866,11 +65370,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -66050,11 +65549,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -66234,11 +65728,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -66418,11 +65907,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -68288,11 +67772,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -69365,11 +68844,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -70586,11 +70060,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -70770,11 +70239,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -70954,11 +70418,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -71138,11 +70597,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -71322,11 +70776,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -71506,11 +70955,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -71690,11 +71134,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -71874,11 +71313,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -72058,11 +71492,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -74328,11 +73757,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -75520,11 +74944,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -76509,11 +75928,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -79913,11 +79327,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -80097,11 +79506,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -80281,11 +79685,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -80465,11 +79864,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -80948,11 +80342,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -81132,11 +80521,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -81316,11 +80700,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -81500,11 +80879,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -82076,11 +81450,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -82812,11 +82181,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -82996,11 +82360,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -83180,11 +82539,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -83364,11 +82718,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -83548,11 +82897,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -85413,11 +84757,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -85597,11 +84936,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -86323,11 +85657,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -86507,11 +85836,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -86691,11 +86015,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -86875,11 +86194,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -87601,11 +86915,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -87785,11 +87094,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -87969,11 +87273,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -88153,11 +87452,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -88337,11 +87631,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -88521,11 +87810,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -88705,11 +87989,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -88889,11 +88168,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -89073,11 +88347,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -89257,11 +88526,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -89441,11 +88705,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -91232,11 +90491,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -91416,11 +90670,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -91600,11 +90849,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -91784,11 +91028,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -91968,11 +91207,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -93122,11 +92356,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -93306,11 +92535,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -93490,11 +92714,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -94701,11 +93920,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -94885,11 +94099,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -95069,11 +94278,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -95253,11 +94457,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -98025,11 +97224,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -98209,11 +97403,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -98393,11 +97582,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -98577,11 +97761,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -99676,11 +98855,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -100402,11 +99576,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -100586,11 +99755,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -100770,11 +99934,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -107068,11 +106227,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -110736,11 +109890,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -111322,11 +110471,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -113356,11 +112500,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -122263,11 +121402,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -135465,11 +134599,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -140871,11 +140000,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -148616,11 +147740,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -149160,11 +148279,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -149659,11 +148773,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -154947,11 +154056,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -155131,11 +154235,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -155315,11 +154414,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -155499,11 +154593,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -155683,11 +154772,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -155867,11 +154951,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156051,11 +155130,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156235,11 +155309,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156419,11 +155488,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156603,11 +155667,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156787,11 +155846,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Entities_EntitiesForQueries.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Entities_EntitiesForQueries.generated.approved.cs index 783768d444..e81e8d8ec8 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Entities_EntitiesForQueries.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Entities_EntitiesForQueries.generated.approved.cs @@ -5497,7 +5497,6 @@ public abstract class DescriptorQ : AggregateRootWithCompositeKey public virtual DateTime? EffectiveBeginDate { get; set; } public virtual DateTime? EffectiveEndDate { get; set; } public virtual string Namespace { get; set; } - public virtual int? PriorDescriptorId { get; set; } public virtual string ShortDescription { get; set; } // ------------------------------------------------------------- diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs index b0847699a9..bc7442b484 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs @@ -42,7 +42,6 @@ public AbsenceEventCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -51,7 +50,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -60,7 +58,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -77,8 +74,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -118,7 +113,6 @@ public AcademicHonorCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -127,7 +121,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -136,7 +129,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -153,8 +145,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -194,7 +184,6 @@ public AcademicSubjectDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -203,7 +192,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -212,7 +200,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -229,8 +216,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -340,7 +325,6 @@ public AccommodationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -349,7 +333,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -358,7 +341,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -375,8 +357,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -496,7 +476,6 @@ public AccountTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -505,7 +484,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -514,7 +492,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -531,8 +508,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -572,7 +547,6 @@ public AchievementCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -581,7 +555,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -590,7 +563,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -607,8 +579,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -648,7 +618,6 @@ public AdditionalCreditTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -657,7 +626,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -666,7 +634,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -683,8 +650,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -724,7 +689,6 @@ public AddressTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -733,7 +697,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -742,7 +705,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -759,8 +721,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -800,7 +760,6 @@ public AdministrationEnvironmentDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -809,7 +768,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -818,7 +776,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -835,8 +792,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -876,7 +831,6 @@ public AdministrativeFundingControlDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -885,7 +839,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -894,7 +847,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -911,8 +863,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -952,7 +902,6 @@ public AncestryEthnicOriginDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -961,7 +910,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -970,7 +918,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -987,8 +934,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1340,7 +1285,6 @@ public AssessmentCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1349,7 +1293,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1358,7 +1301,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1375,8 +1317,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1644,7 +1584,6 @@ public AssessmentIdentificationSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1653,7 +1592,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1662,7 +1600,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1679,8 +1616,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1829,7 +1764,6 @@ public AssessmentItemCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1838,7 +1772,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1847,7 +1780,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1864,8 +1796,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2021,7 +1951,6 @@ public AssessmentItemResultDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2030,7 +1959,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2039,7 +1967,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2056,8 +1983,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2288,7 +2213,6 @@ public AssessmentPeriodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2297,7 +2221,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2306,7 +2229,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2323,8 +2245,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2472,7 +2392,6 @@ public AssessmentReportingMethodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2481,7 +2400,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2490,7 +2408,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2507,8 +2424,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2821,7 +2736,6 @@ public AssignmentLateStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2830,7 +2744,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2839,7 +2752,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2856,8 +2768,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2897,7 +2807,6 @@ public AttemptStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2906,7 +2815,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2915,7 +2823,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2932,8 +2839,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2973,7 +2878,6 @@ public AttendanceEventCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2982,7 +2886,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2991,7 +2894,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3008,8 +2910,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3166,7 +3066,6 @@ public BarrierToInternetAccessInResidenceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3175,7 +3074,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3184,7 +3082,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3201,8 +3098,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3242,7 +3137,6 @@ public BehaviorDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3251,7 +3145,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3260,7 +3153,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3277,8 +3169,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3763,7 +3653,6 @@ public CalendarEventDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3772,7 +3661,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3781,7 +3669,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3798,8 +3685,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3890,7 +3775,6 @@ public CalendarTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3899,7 +3783,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3908,7 +3791,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3925,8 +3807,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3966,7 +3846,6 @@ public CareerPathwayDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3975,7 +3854,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3984,7 +3862,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4001,8 +3878,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4042,7 +3917,6 @@ public CharterApprovalAgencyTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4051,7 +3925,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4060,7 +3933,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4077,8 +3949,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4118,7 +3988,6 @@ public CharterStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4127,7 +3996,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4136,7 +4004,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4153,8 +4020,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4391,7 +4256,6 @@ public CitizenshipStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4400,7 +4264,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4409,7 +4272,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4426,8 +4288,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4587,7 +4447,6 @@ public ClassroomPositionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4596,7 +4455,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4605,7 +4463,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4622,8 +4479,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4806,7 +4661,6 @@ public CohortScopeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4815,7 +4669,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4824,7 +4677,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4841,8 +4693,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4882,7 +4732,6 @@ public CohortTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4891,7 +4740,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4900,7 +4748,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4917,8 +4764,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4958,7 +4803,6 @@ public CohortYearTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4967,7 +4811,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4976,7 +4819,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4993,8 +4835,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -5407,7 +5247,6 @@ public CompetencyLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -5416,7 +5255,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -5425,7 +5263,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -5442,8 +5279,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -5556,7 +5391,6 @@ public ContactTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -5565,7 +5399,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -5574,7 +5407,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -5591,8 +5423,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -5632,7 +5462,6 @@ public ContentClassDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -5641,7 +5470,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -5650,7 +5478,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -5667,8 +5494,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -5708,7 +5533,6 @@ public ContinuationOfServicesReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -5717,7 +5541,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -5726,7 +5549,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -5743,8 +5565,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -5784,7 +5604,6 @@ public CostRateDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -5793,7 +5612,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -5802,7 +5620,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -5819,8 +5636,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -5860,7 +5675,6 @@ public CountryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -5869,7 +5683,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -5878,7 +5691,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -5895,8 +5707,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -6145,7 +5955,6 @@ public CourseAttemptResultDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -6154,7 +5963,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -6163,7 +5971,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -6180,8 +5987,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -6272,7 +6077,6 @@ public CourseDefinedByDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -6281,7 +6085,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -6290,7 +6093,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -6307,8 +6109,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -6348,7 +6148,6 @@ public CourseGPAApplicabilityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -6357,7 +6156,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -6366,7 +6164,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -6383,8 +6180,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -6493,7 +6288,6 @@ public CourseIdentificationSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -6502,7 +6296,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -6511,7 +6304,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -6528,8 +6320,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -6728,7 +6518,6 @@ public CourseLevelCharacteristicDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -6737,7 +6526,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -6746,7 +6534,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -6763,8 +6550,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -7119,7 +6904,6 @@ public CourseRepeatCodeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -7128,7 +6912,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -7137,7 +6920,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -7154,8 +6936,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -7946,7 +7726,6 @@ public CredentialFieldDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -7955,7 +7734,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -7964,7 +7742,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -7981,8 +7758,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8073,7 +7848,6 @@ public CredentialTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8082,7 +7856,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8091,7 +7864,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8108,8 +7880,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8149,7 +7919,6 @@ public CreditCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8158,7 +7927,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8167,7 +7935,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8184,8 +7951,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8225,7 +7990,6 @@ public CreditTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8234,7 +7998,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8243,7 +8006,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8260,8 +8022,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8301,7 +8061,6 @@ public CTEProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8310,7 +8069,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8319,7 +8077,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8336,8 +8093,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8377,7 +8132,6 @@ public CurriculumUsedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8386,7 +8140,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8395,7 +8148,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8412,8 +8164,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8453,7 +8203,6 @@ public DeliveryMethodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8462,7 +8211,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8471,7 +8219,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8488,8 +8235,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8514,7 +8259,6 @@ public interface IDescriptor : IHasIdentifier, IGetByExample DateTime? EffectiveBeginDate { get; set; } DateTime? EffectiveEndDate { get; set; } string Namespace { get; set; } - int? PriorDescriptorId { get; set; } string ShortDescription { get; set; } // One-to-one relationships @@ -8536,7 +8280,6 @@ public DescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8545,7 +8288,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8554,7 +8296,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8571,8 +8312,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8727,7 +8466,6 @@ public DiagnosisDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8736,7 +8474,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8745,7 +8482,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8762,8 +8498,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8803,7 +8537,6 @@ public DiplomaLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8812,7 +8545,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8821,7 +8553,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8838,8 +8569,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8879,7 +8608,6 @@ public DiplomaTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8888,7 +8616,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8897,7 +8624,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8914,8 +8640,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8955,7 +8679,6 @@ public DisabilityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8964,7 +8687,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8973,7 +8695,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8990,8 +8711,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9031,7 +8750,6 @@ public DisabilityDesignationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9040,7 +8758,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9049,7 +8766,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9066,8 +8782,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9107,7 +8821,6 @@ public DisabilityDeterminationSourceTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9116,7 +8829,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9125,7 +8837,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9142,8 +8853,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9375,7 +9084,6 @@ public DisciplineActionLengthDifferenceReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9384,7 +9092,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9393,7 +9100,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9410,8 +9116,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9616,7 +9320,6 @@ public DisciplineDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9625,7 +9328,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9634,7 +9336,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9651,8 +9352,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9945,7 +9644,6 @@ public DisciplineIncidentParticipationCodeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9954,7 +9652,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9963,7 +9660,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9980,8 +9676,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -10072,7 +9766,6 @@ public EducationalEnvironmentDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -10081,7 +9774,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -10090,7 +9782,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -10107,8 +9798,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -11015,7 +10704,6 @@ public EducationOrganizationAssociationTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -11024,7 +10712,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -11033,7 +10720,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -11050,8 +10736,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -11142,7 +10826,6 @@ public EducationOrganizationCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -11151,7 +10834,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -11160,7 +10842,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -11177,8 +10858,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -11275,7 +10954,6 @@ public EducationOrganizationIdentificationSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -11284,7 +10962,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -11293,7 +10970,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -11310,8 +10986,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -11967,7 +11641,6 @@ public EducationPlanDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -11976,7 +11649,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -11985,7 +11657,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12002,8 +11673,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -12167,7 +11836,6 @@ public ElectronicMailTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -12176,7 +11844,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -12185,7 +11852,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12202,8 +11868,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -12243,7 +11907,6 @@ public EmploymentStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -12252,7 +11915,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -12261,7 +11923,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12278,8 +11939,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -12319,7 +11978,6 @@ public EntryGradeLevelReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -12328,7 +11986,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -12337,7 +11994,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12354,8 +12010,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -12395,7 +12049,6 @@ public EntryTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -12404,7 +12057,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -12413,7 +12065,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12430,8 +12081,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -12471,7 +12120,6 @@ public EventCircumstanceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -12480,7 +12128,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -12489,7 +12136,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12506,8 +12152,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -12547,7 +12191,6 @@ public ExitWithdrawTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -12556,7 +12199,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -12565,7 +12207,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12582,8 +12223,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -12690,7 +12329,6 @@ public FinancialCollectionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -12699,7 +12337,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -12708,7 +12345,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12725,8 +12361,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13554,7 +13188,6 @@ public GradebookEntryTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13563,7 +13196,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13572,7 +13204,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13589,8 +13220,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13707,7 +13336,6 @@ public GradeLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13716,7 +13344,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13725,7 +13352,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13742,8 +13368,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13783,7 +13407,6 @@ public GradePointAverageTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13792,7 +13415,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13801,7 +13423,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13818,8 +13439,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13859,7 +13478,6 @@ public GradeTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13868,7 +13486,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13877,7 +13494,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13894,8 +13510,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -14010,7 +13624,6 @@ public GradingPeriodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -14019,7 +13632,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -14028,7 +13640,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -14045,8 +13656,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -14704,7 +14313,6 @@ public GraduationPlanTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -14713,7 +14321,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -14722,7 +14329,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -14739,8 +14345,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -14780,7 +14384,6 @@ public GunFreeSchoolsActReportingStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -14789,7 +14392,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -14798,7 +14400,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -14815,8 +14416,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -14856,7 +14455,6 @@ public HomelessPrimaryNighttimeResidenceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -14865,7 +14463,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -14874,7 +14471,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -14891,8 +14487,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -14932,7 +14526,6 @@ public HomelessProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -14941,7 +14534,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -14950,7 +14542,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -14967,8 +14558,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15008,7 +14597,6 @@ public IdentificationDocumentUseDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15017,7 +14605,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15026,7 +14613,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15043,8 +14629,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15084,7 +14668,6 @@ public IncidentLocationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15093,7 +14676,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15102,7 +14684,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15119,8 +14700,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15160,7 +14739,6 @@ public IndicatorDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15169,7 +14747,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15178,7 +14755,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15195,8 +14771,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15236,7 +14810,6 @@ public IndicatorGroupDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15245,7 +14818,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15254,7 +14826,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15271,8 +14842,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15312,7 +14881,6 @@ public IndicatorLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15321,7 +14889,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15330,7 +14897,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15347,8 +14913,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15388,7 +14952,6 @@ public InstitutionTelephoneNumberTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15397,7 +14960,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15406,7 +14968,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15423,8 +14984,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15464,7 +15023,6 @@ public InteractivityStyleDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15473,7 +15031,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15482,7 +15039,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15499,8 +15055,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15540,7 +15094,6 @@ public InternetAccessDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15549,7 +15102,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15558,7 +15110,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15575,8 +15126,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15616,7 +15165,6 @@ public InternetAccessTypeInResidenceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15625,7 +15173,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15634,7 +15181,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15651,8 +15197,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15692,7 +15236,6 @@ public InternetPerformanceInResidenceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15701,7 +15244,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15710,7 +15252,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15727,8 +15268,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16055,7 +15594,6 @@ public InterventionClassDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16064,7 +15602,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16073,7 +15610,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16090,8 +15626,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16235,7 +15769,6 @@ public InterventionEffectivenessRatingDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16244,7 +15777,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16253,7 +15785,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16270,8 +15801,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -17713,7 +17242,6 @@ public LanguageDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -17722,7 +17250,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -17731,7 +17258,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -17748,8 +17274,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -17789,7 +17313,6 @@ public LanguageInstructionProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -17798,7 +17321,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -17807,7 +17329,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -17824,8 +17345,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -17865,7 +17384,6 @@ public LanguageUseDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -17874,7 +17392,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -17883,7 +17400,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -17900,8 +17416,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -18583,7 +18097,6 @@ public LearningStandardCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -18592,7 +18105,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -18601,7 +18113,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -18618,8 +18129,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -18899,7 +18408,6 @@ public LearningStandardEquivalenceStrengthDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -18908,7 +18416,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -18917,7 +18424,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -18934,8 +18440,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19132,7 +18636,6 @@ public LearningStandardScopeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19141,7 +18644,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19150,7 +18652,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19167,8 +18668,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19208,7 +18707,6 @@ public LevelOfEducationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19217,7 +18715,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19226,7 +18723,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19243,8 +18739,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19284,7 +18778,6 @@ public LicenseStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19293,7 +18786,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19302,7 +18794,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19319,8 +18810,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19360,7 +18849,6 @@ public LicenseTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19369,7 +18857,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19378,7 +18865,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19395,8 +18881,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19436,7 +18920,6 @@ public LimitedEnglishProficiencyDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19445,7 +18928,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19454,7 +18936,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19471,8 +18952,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19864,7 +19343,6 @@ public LocaleDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19873,7 +19351,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19882,7 +19359,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19899,8 +19375,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20172,7 +19646,6 @@ public LocalEducationAgencyCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20181,7 +19654,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20190,7 +19662,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20207,8 +19678,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20553,7 +20022,6 @@ public MagnetSpecialProgramEmphasisSchoolDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20562,7 +20030,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20571,7 +20038,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20588,8 +20054,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20629,7 +20093,6 @@ public MediumOfInstructionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20638,7 +20101,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20647,7 +20109,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20664,8 +20125,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20705,7 +20164,6 @@ public MethodCreditEarnedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20714,7 +20172,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20723,7 +20180,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20740,8 +20196,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20781,7 +20235,6 @@ public MigrantEducationProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20790,7 +20243,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20799,7 +20251,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20816,8 +20267,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20857,7 +20306,6 @@ public ModelEntityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20866,7 +20314,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20875,7 +20322,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20892,8 +20338,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20933,7 +20377,6 @@ public MonitoredDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20942,7 +20385,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20951,7 +20393,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20968,8 +20409,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21009,7 +20448,6 @@ public NeglectedOrDelinquentProgramDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21018,7 +20456,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21027,7 +20464,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21044,8 +20480,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21085,7 +20519,6 @@ public NeglectedOrDelinquentProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21094,7 +20527,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21103,7 +20535,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21120,8 +20551,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21161,7 +20590,6 @@ public NetworkPurposeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21170,7 +20598,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21179,7 +20606,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21196,8 +20622,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21735,7 +21159,6 @@ public OldEthnicityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21744,7 +21167,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21753,7 +21175,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21770,8 +21191,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -22026,7 +21445,6 @@ public OperationalStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -22035,7 +21453,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -22044,7 +21461,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -22061,8 +21477,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -22350,7 +21764,6 @@ public OtherNameTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -22359,7 +21772,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -22368,7 +21780,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -22385,8 +21796,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23306,7 +22715,6 @@ public ParticipationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23315,7 +22723,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23324,7 +22731,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23341,8 +22747,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23382,7 +22786,6 @@ public ParticipationStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23391,7 +22794,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23400,7 +22802,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23417,8 +22818,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23458,7 +22857,6 @@ public PerformanceBaseConversionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23467,7 +22865,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23476,7 +22873,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23493,8 +22889,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23534,7 +22928,6 @@ public PerformanceLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23543,7 +22936,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23552,7 +22944,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23569,8 +22960,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23661,7 +23050,6 @@ public PersonalInformationVerificationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23670,7 +23058,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23679,7 +23066,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23696,8 +23082,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23737,7 +23121,6 @@ public PlatformTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23746,7 +23129,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23755,7 +23137,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23772,8 +23153,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23813,7 +23192,6 @@ public PopulationServedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23822,7 +23200,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23831,7 +23208,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23848,8 +23224,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23889,7 +23263,6 @@ public PostingResultDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23898,7 +23271,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23907,7 +23279,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23924,8 +23295,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24027,7 +23396,6 @@ public PostSecondaryEventCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24036,7 +23404,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24045,7 +23412,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24062,8 +23428,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24241,7 +23605,6 @@ public PostSecondaryInstitutionLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24250,7 +23613,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24259,7 +23621,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24276,8 +23637,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24368,7 +23727,6 @@ public PrimaryLearningDeviceAccessDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24377,7 +23735,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24386,7 +23743,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24403,8 +23759,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24444,7 +23798,6 @@ public PrimaryLearningDeviceAwayFromSchoolDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24453,7 +23806,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24462,7 +23814,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24479,8 +23830,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24520,7 +23869,6 @@ public PrimaryLearningDeviceProviderDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24529,7 +23877,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24538,7 +23885,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24555,8 +23901,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24596,7 +23940,6 @@ public ProficiencyDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24605,7 +23948,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24614,7 +23956,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24631,8 +23972,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24778,7 +24117,6 @@ public ProgramAssignmentDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24787,7 +24125,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24796,7 +24133,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24813,8 +24149,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24905,7 +24239,6 @@ public ProgramCharacteristicDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24914,7 +24247,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24923,7 +24255,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24940,8 +24271,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25308,7 +24637,6 @@ public ProgramSponsorDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25317,7 +24645,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25326,7 +24653,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25343,8 +24669,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25384,7 +24708,6 @@ public ProgramTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25393,7 +24716,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25402,7 +24724,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25419,8 +24740,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25460,7 +24779,6 @@ public ProgressDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25469,7 +24787,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25478,7 +24795,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25495,8 +24811,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25536,7 +24850,6 @@ public ProgressLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25545,7 +24858,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25554,7 +24866,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25571,8 +24882,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25729,7 +25038,6 @@ public ProviderCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25738,7 +25046,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25747,7 +25054,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25764,8 +25070,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25805,7 +25109,6 @@ public ProviderProfitabilityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25814,7 +25117,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25823,7 +25125,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25840,8 +25141,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25881,7 +25180,6 @@ public ProviderStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25890,7 +25188,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25899,7 +25196,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25916,8 +25212,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25957,7 +25251,6 @@ public PublicationStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25966,7 +25259,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25975,7 +25267,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25992,8 +25283,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26033,7 +25322,6 @@ public QuestionFormDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26042,7 +25330,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26051,7 +25338,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26068,8 +25354,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26109,7 +25393,6 @@ public RaceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26118,7 +25401,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26127,7 +25409,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26144,8 +25425,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26185,7 +25464,6 @@ public ReasonExitedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26194,7 +25472,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26203,7 +25480,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26220,8 +25496,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26261,7 +25535,6 @@ public ReasonNotTestedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26270,7 +25543,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26279,7 +25551,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26296,8 +25567,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26337,7 +25606,6 @@ public RecognitionTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26346,7 +25614,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26355,7 +25622,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26372,8 +25638,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26413,7 +25677,6 @@ public RelationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26422,7 +25685,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26431,7 +25693,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26448,8 +25709,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26489,7 +25748,6 @@ public RepeatIdentifierDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26498,7 +25756,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26507,7 +25764,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26524,8 +25780,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26942,7 +26196,6 @@ public ReporterDescriptionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26951,7 +26204,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26960,7 +26212,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26977,8 +26228,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27018,7 +26267,6 @@ public ReportingTagDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27027,7 +26275,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27036,7 +26283,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27053,8 +26299,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27094,7 +26338,6 @@ public ResidencyStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27103,7 +26346,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27112,7 +26354,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27129,8 +26370,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27170,7 +26409,6 @@ public ResponseIndicatorDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27179,7 +26417,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27188,7 +26425,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27205,8 +26441,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27246,7 +26480,6 @@ public ResponsibilityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27255,7 +26488,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27264,7 +26496,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27281,8 +26512,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27516,7 +26745,6 @@ public RestraintEventReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27525,7 +26753,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27534,7 +26761,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27551,8 +26777,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27592,7 +26816,6 @@ public ResultDatatypeTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27601,7 +26824,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27610,7 +26832,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27627,8 +26848,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27668,7 +26887,6 @@ public RetestIndicatorDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27677,7 +26895,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27686,7 +26903,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27703,8 +26919,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27986,7 +27200,6 @@ public SchoolCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27995,7 +27208,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28004,7 +27216,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28021,8 +27232,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28062,7 +27271,6 @@ public SchoolChoiceImplementStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -28071,7 +27279,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28080,7 +27287,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28097,8 +27303,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28138,7 +27342,6 @@ public SchoolFoodServiceProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -28147,7 +27350,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28156,7 +27358,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28173,8 +27374,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28265,7 +27464,6 @@ public SchoolTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -28274,7 +27472,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28283,7 +27480,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28300,8 +27496,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28711,7 +27905,6 @@ public SectionCharacteristicDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -28720,7 +27913,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28729,7 +27921,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28746,8 +27937,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28999,7 +28188,6 @@ public SeparationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29008,7 +28196,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29017,7 +28204,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29034,8 +28220,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29075,7 +28259,6 @@ public SeparationReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29084,7 +28267,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29093,7 +28275,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29110,8 +28291,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29151,7 +28330,6 @@ public ServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29160,7 +28338,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29169,7 +28346,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29186,8 +28362,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29432,7 +28606,6 @@ public SexDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29441,7 +28614,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29450,7 +28622,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29467,8 +28638,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29625,7 +28794,6 @@ public SourceSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29634,7 +28802,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29643,7 +28810,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29660,8 +28826,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29701,7 +28865,6 @@ public SpecialEducationProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29710,7 +28873,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29719,7 +28881,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29736,8 +28897,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29777,7 +28936,6 @@ public SpecialEducationSettingDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29786,7 +28944,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29795,7 +28952,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29812,8 +28968,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -30449,7 +29603,6 @@ public StaffClassificationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -30458,7 +29611,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -30467,7 +29619,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -30484,8 +29635,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -31566,7 +30715,6 @@ public StaffIdentificationSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -31575,7 +30723,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -31584,7 +30731,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -31601,8 +30747,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -31931,7 +31075,6 @@ public StaffLeaveEventCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -31940,7 +31083,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -31949,7 +31091,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -31966,8 +31107,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -32881,7 +32020,6 @@ public StateAbbreviationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -32890,7 +32028,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -32899,7 +32036,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -32916,8 +32052,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -35014,7 +34148,6 @@ public StudentCharacteristicDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -35023,7 +34156,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -35032,7 +34164,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -35049,8 +34180,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -38160,7 +37289,6 @@ public StudentIdentificationSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -38169,7 +37297,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -38178,7 +37305,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -38195,8 +37321,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -39507,7 +38631,6 @@ public StudentParticipationCodeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -39516,7 +38639,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -39525,7 +38647,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -39542,8 +38663,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -41500,7 +40619,6 @@ public SubmissionStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -41509,7 +40627,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -41518,7 +40635,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -41535,8 +40651,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -41674,7 +40788,6 @@ public SurveyCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -41683,7 +40796,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -41692,7 +40804,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -41709,8 +40820,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -41809,7 +40918,6 @@ public SurveyLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -41818,7 +40926,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -41827,7 +40934,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -41844,8 +40950,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -42992,7 +42096,6 @@ public TeachingCredentialBasisDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43001,7 +42104,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43010,7 +42112,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43027,8 +42128,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43068,7 +42167,6 @@ public TeachingCredentialDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43077,7 +42175,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43086,7 +42183,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43103,8 +42199,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43144,7 +42238,6 @@ public TechnicalSkillsAssessmentDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43153,7 +42246,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43162,7 +42254,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43179,8 +42270,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43220,7 +42309,6 @@ public TelephoneNumberTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43229,7 +42317,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43238,7 +42325,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43255,8 +42341,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43296,7 +42380,6 @@ public TermDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43305,7 +42388,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43314,7 +42396,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43331,8 +42412,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43372,7 +42451,6 @@ public TitleIPartAParticipantDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43381,7 +42459,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43390,7 +42467,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43407,8 +42483,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43448,7 +42522,6 @@ public TitleIPartAProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43457,7 +42530,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43466,7 +42538,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43483,8 +42554,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43524,7 +42593,6 @@ public TitleIPartASchoolDesignationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43533,7 +42601,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43542,7 +42609,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43559,8 +42625,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43600,7 +42664,6 @@ public TribalAffiliationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43609,7 +42672,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43618,7 +42680,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43635,8 +42696,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43676,7 +42735,6 @@ public VisaDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43685,7 +42743,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43694,7 +42751,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43711,8 +42767,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43752,7 +42806,6 @@ public WeaponDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43761,7 +42814,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43770,7 +42822,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43787,8 +42838,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs index 39c996cc2b..58c07af577 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Models_Mappers_EntityMapper.generated.approved.cs @@ -32,7 +32,8 @@ public static bool SynchronizeTo(this IAbsenceEventCategoryDescriptor source, IA // Detect primary key changes if ( - (target.AbsenceEventCategoryDescriptorId != source.AbsenceEventCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AbsenceEventCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77,13 +78,6 @@ public static bool SynchronizeTo(this IAbsenceEventCategoryDescriptor source, IA isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -131,9 +125,6 @@ public static void MapTo(this IAbsenceEventCategoryDescriptor source, IAbsenceEv if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -193,7 +184,8 @@ public static bool SynchronizeTo(this IAcademicHonorCategoryDescriptor source, I // Detect primary key changes if ( - (target.AcademicHonorCategoryDescriptorId != source.AcademicHonorCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AcademicHonorCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -238,13 +230,6 @@ public static bool SynchronizeTo(this IAcademicHonorCategoryDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -292,9 +277,6 @@ public static void MapTo(this IAcademicHonorCategoryDescriptor source, IAcademic if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -354,7 +336,8 @@ public static bool SynchronizeTo(this IAcademicSubjectDescriptor source, IAcadem // Detect primary key changes if ( - (target.AcademicSubjectDescriptorId != source.AcademicSubjectDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AcademicSubjectDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -399,13 +382,6 @@ public static bool SynchronizeTo(this IAcademicSubjectDescriptor source, IAcadem isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -453,9 +429,6 @@ public static void MapTo(this IAcademicSubjectDescriptor source, IAcademicSubjec if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -641,7 +614,8 @@ public static bool SynchronizeTo(this IAccommodationDescriptor source, IAccommod // Detect primary key changes if ( - (target.AccommodationDescriptorId != source.AccommodationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AccommodationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -686,13 +660,6 @@ public static bool SynchronizeTo(this IAccommodationDescriptor source, IAccommod isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -740,9 +707,6 @@ public static void MapTo(this IAccommodationDescriptor source, IAccommodationDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -942,7 +906,8 @@ public static bool SynchronizeTo(this IAccountTypeDescriptor source, IAccountTyp // Detect primary key changes if ( - (target.AccountTypeDescriptorId != source.AccountTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AccountTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -987,13 +952,6 @@ public static bool SynchronizeTo(this IAccountTypeDescriptor source, IAccountTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1041,9 +999,6 @@ public static void MapTo(this IAccountTypeDescriptor source, IAccountTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1103,7 +1058,8 @@ public static bool SynchronizeTo(this IAchievementCategoryDescriptor source, IAc // Detect primary key changes if ( - (target.AchievementCategoryDescriptorId != source.AchievementCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AchievementCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1148,13 +1104,6 @@ public static bool SynchronizeTo(this IAchievementCategoryDescriptor source, IAc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1202,9 +1151,6 @@ public static void MapTo(this IAchievementCategoryDescriptor source, IAchievemen if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1264,7 +1210,8 @@ public static bool SynchronizeTo(this IAdditionalCreditTypeDescriptor source, IA // Detect primary key changes if ( - (target.AdditionalCreditTypeDescriptorId != source.AdditionalCreditTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AdditionalCreditTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1309,13 +1256,6 @@ public static bool SynchronizeTo(this IAdditionalCreditTypeDescriptor source, IA isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1363,9 +1303,6 @@ public static void MapTo(this IAdditionalCreditTypeDescriptor source, IAdditiona if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1425,7 +1362,8 @@ public static bool SynchronizeTo(this IAddressTypeDescriptor source, IAddressTyp // Detect primary key changes if ( - (target.AddressTypeDescriptorId != source.AddressTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AddressTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1470,13 +1408,6 @@ public static bool SynchronizeTo(this IAddressTypeDescriptor source, IAddressTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1524,9 +1455,6 @@ public static void MapTo(this IAddressTypeDescriptor source, IAddressTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1586,7 +1514,8 @@ public static bool SynchronizeTo(this IAdministrationEnvironmentDescriptor sourc // Detect primary key changes if ( - (target.AdministrationEnvironmentDescriptorId != source.AdministrationEnvironmentDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AdministrationEnvironmentDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1631,13 +1560,6 @@ public static bool SynchronizeTo(this IAdministrationEnvironmentDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1685,9 +1607,6 @@ public static void MapTo(this IAdministrationEnvironmentDescriptor source, IAdmi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1747,7 +1666,8 @@ public static bool SynchronizeTo(this IAdministrativeFundingControlDescriptor so // Detect primary key changes if ( - (target.AdministrativeFundingControlDescriptorId != source.AdministrativeFundingControlDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AdministrativeFundingControlDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1792,13 +1712,6 @@ public static bool SynchronizeTo(this IAdministrativeFundingControlDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1846,9 +1759,6 @@ public static void MapTo(this IAdministrativeFundingControlDescriptor source, IA if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1908,7 +1818,8 @@ public static bool SynchronizeTo(this IAncestryEthnicOriginDescriptor source, IA // Detect primary key changes if ( - (target.AncestryEthnicOriginDescriptorId != source.AncestryEthnicOriginDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AncestryEthnicOriginDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1953,13 +1864,6 @@ public static bool SynchronizeTo(this IAncestryEthnicOriginDescriptor source, IA isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -2007,9 +1911,6 @@ public static void MapTo(this IAncestryEthnicOriginDescriptor source, IAncestryE if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -3572,7 +3473,8 @@ public static bool SynchronizeTo(this IAssessmentCategoryDescriptor source, IAss // Detect primary key changes if ( - (target.AssessmentCategoryDescriptorId != source.AssessmentCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -3617,13 +3519,6 @@ public static bool SynchronizeTo(this IAssessmentCategoryDescriptor source, IAss isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -3671,9 +3566,6 @@ public static void MapTo(this IAssessmentCategoryDescriptor source, IAssessmentC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -3733,7 +3625,8 @@ public static bool SynchronizeTo(this IAssessmentIdentificationSystemDescriptor // Detect primary key changes if ( - (target.AssessmentIdentificationSystemDescriptorId != source.AssessmentIdentificationSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentIdentificationSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -3778,13 +3671,6 @@ public static bool SynchronizeTo(this IAssessmentIdentificationSystemDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -3832,9 +3718,6 @@ public static void MapTo(this IAssessmentIdentificationSystemDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -4254,7 +4137,8 @@ public static bool SynchronizeTo(this IAssessmentItemCategoryDescriptor source, // Detect primary key changes if ( - (target.AssessmentItemCategoryDescriptorId != source.AssessmentItemCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentItemCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -4299,13 +4183,6 @@ public static bool SynchronizeTo(this IAssessmentItemCategoryDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -4353,9 +4230,6 @@ public static void MapTo(this IAssessmentItemCategoryDescriptor source, IAssessm if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -4415,7 +4289,8 @@ public static bool SynchronizeTo(this IAssessmentItemResultDescriptor source, IA // Detect primary key changes if ( - (target.AssessmentItemResultDescriptorId != source.AssessmentItemResultDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentItemResultDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -4460,13 +4335,6 @@ public static bool SynchronizeTo(this IAssessmentItemResultDescriptor source, IA isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -4514,9 +4382,6 @@ public static void MapTo(this IAssessmentItemResultDescriptor source, IAssessmen if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -4576,7 +4441,8 @@ public static bool SynchronizeTo(this IAssessmentPeriodDescriptor source, IAsses // Detect primary key changes if ( - (target.AssessmentPeriodDescriptorId != source.AssessmentPeriodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentPeriodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -4621,13 +4487,6 @@ public static bool SynchronizeTo(this IAssessmentPeriodDescriptor source, IAsses isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -4675,9 +4534,6 @@ public static void MapTo(this IAssessmentPeriodDescriptor source, IAssessmentPer if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -4737,7 +4593,8 @@ public static bool SynchronizeTo(this IAssessmentReportingMethodDescriptor sourc // Detect primary key changes if ( - (target.AssessmentReportingMethodDescriptorId != source.AssessmentReportingMethodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentReportingMethodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -4782,13 +4639,6 @@ public static bool SynchronizeTo(this IAssessmentReportingMethodDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -4836,9 +4686,6 @@ public static void MapTo(this IAssessmentReportingMethodDescriptor source, IAsse if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5133,7 +4980,8 @@ public static bool SynchronizeTo(this IAssignmentLateStatusDescriptor source, IA // Detect primary key changes if ( - (target.AssignmentLateStatusDescriptorId != source.AssignmentLateStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssignmentLateStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5178,13 +5026,6 @@ public static bool SynchronizeTo(this IAssignmentLateStatusDescriptor source, IA isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5232,9 +5073,6 @@ public static void MapTo(this IAssignmentLateStatusDescriptor source, IAssignmen if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5294,7 +5132,8 @@ public static bool SynchronizeTo(this IAttemptStatusDescriptor source, IAttemptS // Detect primary key changes if ( - (target.AttemptStatusDescriptorId != source.AttemptStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AttemptStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5339,13 +5178,6 @@ public static bool SynchronizeTo(this IAttemptStatusDescriptor source, IAttemptS isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5393,9 +5225,6 @@ public static void MapTo(this IAttemptStatusDescriptor source, IAttemptStatusDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5455,7 +5284,8 @@ public static bool SynchronizeTo(this IAttendanceEventCategoryDescriptor source, // Detect primary key changes if ( - (target.AttendanceEventCategoryDescriptorId != source.AttendanceEventCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AttendanceEventCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5500,13 +5330,6 @@ public static bool SynchronizeTo(this IAttendanceEventCategoryDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5554,9 +5377,6 @@ public static void MapTo(this IAttendanceEventCategoryDescriptor source, IAttend if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5803,7 +5623,8 @@ public static bool SynchronizeTo(this IBarrierToInternetAccessInResidenceDescrip // Detect primary key changes if ( - (target.BarrierToInternetAccessInResidenceDescriptorId != source.BarrierToInternetAccessInResidenceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on BarrierToInternetAccessInResidenceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5848,13 +5669,6 @@ public static bool SynchronizeTo(this IBarrierToInternetAccessInResidenceDescrip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5902,9 +5716,6 @@ public static void MapTo(this IBarrierToInternetAccessInResidenceDescriptor sour if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5964,7 +5775,8 @@ public static bool SynchronizeTo(this IBehaviorDescriptor source, IBehaviorDescr // Detect primary key changes if ( - (target.BehaviorDescriptorId != source.BehaviorDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on BehaviorDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -6009,13 +5821,6 @@ public static bool SynchronizeTo(this IBehaviorDescriptor source, IBehaviorDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -6063,9 +5868,6 @@ public static void MapTo(this IBehaviorDescriptor source, IBehaviorDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -6913,7 +6715,8 @@ public static bool SynchronizeTo(this ICalendarEventDescriptor source, ICalendar // Detect primary key changes if ( - (target.CalendarEventDescriptorId != source.CalendarEventDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CalendarEventDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -6958,13 +6761,6 @@ public static bool SynchronizeTo(this ICalendarEventDescriptor source, ICalendar isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7012,9 +6808,6 @@ public static void MapTo(this ICalendarEventDescriptor source, ICalendarEventDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7074,7 +6867,8 @@ public static bool SynchronizeTo(this ICalendarTypeDescriptor source, ICalendarT // Detect primary key changes if ( - (target.CalendarTypeDescriptorId != source.CalendarTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CalendarTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7119,13 +6913,6 @@ public static bool SynchronizeTo(this ICalendarTypeDescriptor source, ICalendarT isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7173,9 +6960,6 @@ public static void MapTo(this ICalendarTypeDescriptor source, ICalendarTypeDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7235,7 +7019,8 @@ public static bool SynchronizeTo(this ICareerPathwayDescriptor source, ICareerPa // Detect primary key changes if ( - (target.CareerPathwayDescriptorId != source.CareerPathwayDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CareerPathwayDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7280,13 +7065,6 @@ public static bool SynchronizeTo(this ICareerPathwayDescriptor source, ICareerPa isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7334,9 +7112,6 @@ public static void MapTo(this ICareerPathwayDescriptor source, ICareerPathwayDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7396,7 +7171,8 @@ public static bool SynchronizeTo(this ICharterApprovalAgencyTypeDescriptor sourc // Detect primary key changes if ( - (target.CharterApprovalAgencyTypeDescriptorId != source.CharterApprovalAgencyTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CharterApprovalAgencyTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7441,13 +7217,6 @@ public static bool SynchronizeTo(this ICharterApprovalAgencyTypeDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7495,9 +7264,6 @@ public static void MapTo(this ICharterApprovalAgencyTypeDescriptor source, IChar if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7557,7 +7323,8 @@ public static bool SynchronizeTo(this ICharterStatusDescriptor source, ICharterS // Detect primary key changes if ( - (target.CharterStatusDescriptorId != source.CharterStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CharterStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7602,13 +7369,6 @@ public static bool SynchronizeTo(this ICharterStatusDescriptor source, ICharterS isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7656,9 +7416,6 @@ public static void MapTo(this ICharterStatusDescriptor source, ICharterStatusDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -8030,7 +7787,8 @@ public static bool SynchronizeTo(this ICitizenshipStatusDescriptor source, ICiti // Detect primary key changes if ( - (target.CitizenshipStatusDescriptorId != source.CitizenshipStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CitizenshipStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -8075,13 +7833,6 @@ public static bool SynchronizeTo(this ICitizenshipStatusDescriptor source, ICiti isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -8129,9 +7880,6 @@ public static void MapTo(this ICitizenshipStatusDescriptor source, ICitizenshipS if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -8405,7 +8153,8 @@ public static bool SynchronizeTo(this IClassroomPositionDescriptor source, IClas // Detect primary key changes if ( - (target.ClassroomPositionDescriptorId != source.ClassroomPositionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ClassroomPositionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -8450,13 +8199,6 @@ public static bool SynchronizeTo(this IClassroomPositionDescriptor source, IClas isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -8504,9 +8246,6 @@ public static void MapTo(this IClassroomPositionDescriptor source, IClassroomPos if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -8799,7 +8538,8 @@ public static bool SynchronizeTo(this ICohortScopeDescriptor source, ICohortScop // Detect primary key changes if ( - (target.CohortScopeDescriptorId != source.CohortScopeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CohortScopeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -8844,13 +8584,6 @@ public static bool SynchronizeTo(this ICohortScopeDescriptor source, ICohortScop isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -8898,9 +8631,6 @@ public static void MapTo(this ICohortScopeDescriptor source, ICohortScopeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -8960,7 +8690,8 @@ public static bool SynchronizeTo(this ICohortTypeDescriptor source, ICohortTypeD // Detect primary key changes if ( - (target.CohortTypeDescriptorId != source.CohortTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CohortTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -9005,13 +8736,6 @@ public static bool SynchronizeTo(this ICohortTypeDescriptor source, ICohortTypeD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -9059,9 +8783,6 @@ public static void MapTo(this ICohortTypeDescriptor source, ICohortTypeDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -9121,7 +8842,8 @@ public static bool SynchronizeTo(this ICohortYearTypeDescriptor source, ICohortY // Detect primary key changes if ( - (target.CohortYearTypeDescriptorId != source.CohortYearTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CohortYearTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -9166,13 +8888,6 @@ public static bool SynchronizeTo(this ICohortYearTypeDescriptor source, ICohortY isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -9220,9 +8935,6 @@ public static void MapTo(this ICohortYearTypeDescriptor source, ICohortYearTypeD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -9964,7 +9676,8 @@ public static bool SynchronizeTo(this ICompetencyLevelDescriptor source, ICompet // Detect primary key changes if ( - (target.CompetencyLevelDescriptorId != source.CompetencyLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CompetencyLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -10009,13 +9722,6 @@ public static bool SynchronizeTo(this ICompetencyLevelDescriptor source, ICompet isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -10063,9 +9769,6 @@ public static void MapTo(this ICompetencyLevelDescriptor source, ICompetencyLeve if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -10254,7 +9957,8 @@ public static bool SynchronizeTo(this IContactTypeDescriptor source, IContactTyp // Detect primary key changes if ( - (target.ContactTypeDescriptorId != source.ContactTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ContactTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -10299,13 +10003,6 @@ public static bool SynchronizeTo(this IContactTypeDescriptor source, IContactTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -10353,9 +10050,6 @@ public static void MapTo(this IContactTypeDescriptor source, IContactTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -10415,7 +10109,8 @@ public static bool SynchronizeTo(this IContentClassDescriptor source, IContentCl // Detect primary key changes if ( - (target.ContentClassDescriptorId != source.ContentClassDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ContentClassDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -10460,13 +10155,6 @@ public static bool SynchronizeTo(this IContentClassDescriptor source, IContentCl isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -10514,9 +10202,6 @@ public static void MapTo(this IContentClassDescriptor source, IContentClassDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -10576,7 +10261,8 @@ public static bool SynchronizeTo(this IContinuationOfServicesReasonDescriptor so // Detect primary key changes if ( - (target.ContinuationOfServicesReasonDescriptorId != source.ContinuationOfServicesReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ContinuationOfServicesReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -10621,13 +10307,6 @@ public static bool SynchronizeTo(this IContinuationOfServicesReasonDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -10675,9 +10354,6 @@ public static void MapTo(this IContinuationOfServicesReasonDescriptor source, IC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -10737,7 +10413,8 @@ public static bool SynchronizeTo(this ICostRateDescriptor source, ICostRateDescr // Detect primary key changes if ( - (target.CostRateDescriptorId != source.CostRateDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CostRateDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -10782,13 +10459,6 @@ public static bool SynchronizeTo(this ICostRateDescriptor source, ICostRateDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -10836,9 +10506,6 @@ public static void MapTo(this ICostRateDescriptor source, ICostRateDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -10898,7 +10565,8 @@ public static bool SynchronizeTo(this ICountryDescriptor source, ICountryDescrip // Detect primary key changes if ( - (target.CountryDescriptorId != source.CountryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CountryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -10943,13 +10611,6 @@ public static bool SynchronizeTo(this ICountryDescriptor source, ICountryDescrip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -10997,9 +10658,6 @@ public static void MapTo(this ICountryDescriptor source, ICountryDescriptor targ if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -11893,7 +11551,8 @@ public static bool SynchronizeTo(this ICourseAttemptResultDescriptor source, ICo // Detect primary key changes if ( - (target.CourseAttemptResultDescriptorId != source.CourseAttemptResultDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseAttemptResultDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -11938,13 +11597,6 @@ public static bool SynchronizeTo(this ICourseAttemptResultDescriptor source, ICo isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -11992,9 +11644,6 @@ public static void MapTo(this ICourseAttemptResultDescriptor source, ICourseAtte if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -12054,7 +11703,8 @@ public static bool SynchronizeTo(this ICourseDefinedByDescriptor source, ICourse // Detect primary key changes if ( - (target.CourseDefinedByDescriptorId != source.CourseDefinedByDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseDefinedByDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -12099,13 +11749,6 @@ public static bool SynchronizeTo(this ICourseDefinedByDescriptor source, ICourse isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -12153,9 +11796,6 @@ public static void MapTo(this ICourseDefinedByDescriptor source, ICourseDefinedB if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -12215,7 +11855,8 @@ public static bool SynchronizeTo(this ICourseGPAApplicabilityDescriptor source, // Detect primary key changes if ( - (target.CourseGPAApplicabilityDescriptorId != source.CourseGPAApplicabilityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseGPAApplicabilityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -12260,13 +11901,6 @@ public static bool SynchronizeTo(this ICourseGPAApplicabilityDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -12314,9 +11948,6 @@ public static void MapTo(this ICourseGPAApplicabilityDescriptor source, ICourseG if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -12376,7 +12007,8 @@ public static bool SynchronizeTo(this ICourseIdentificationSystemDescriptor sour // Detect primary key changes if ( - (target.CourseIdentificationSystemDescriptorId != source.CourseIdentificationSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseIdentificationSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -12421,13 +12053,6 @@ public static bool SynchronizeTo(this ICourseIdentificationSystemDescriptor sour isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -12475,9 +12100,6 @@ public static void MapTo(this ICourseIdentificationSystemDescriptor source, ICou if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -12537,7 +12159,8 @@ public static bool SynchronizeTo(this ICourseLevelCharacteristicDescriptor sourc // Detect primary key changes if ( - (target.CourseLevelCharacteristicDescriptorId != source.CourseLevelCharacteristicDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseLevelCharacteristicDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -12582,13 +12205,6 @@ public static bool SynchronizeTo(this ICourseLevelCharacteristicDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -12636,9 +12252,6 @@ public static void MapTo(this ICourseLevelCharacteristicDescriptor source, ICour if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -13103,7 +12716,8 @@ public static bool SynchronizeTo(this ICourseRepeatCodeDescriptor source, ICours // Detect primary key changes if ( - (target.CourseRepeatCodeDescriptorId != source.CourseRepeatCodeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseRepeatCodeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -13148,13 +12762,6 @@ public static bool SynchronizeTo(this ICourseRepeatCodeDescriptor source, ICours isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -13202,9 +12809,6 @@ public static void MapTo(this ICourseRepeatCodeDescriptor source, ICourseRepeatC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -14501,7 +14105,8 @@ public static bool SynchronizeTo(this ICredentialFieldDescriptor source, ICreden // Detect primary key changes if ( - (target.CredentialFieldDescriptorId != source.CredentialFieldDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CredentialFieldDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -14546,13 +14151,6 @@ public static bool SynchronizeTo(this ICredentialFieldDescriptor source, ICreden isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -14600,9 +14198,6 @@ public static void MapTo(this ICredentialFieldDescriptor source, ICredentialFiel if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -14662,7 +14257,8 @@ public static bool SynchronizeTo(this ICredentialTypeDescriptor source, ICredent // Detect primary key changes if ( - (target.CredentialTypeDescriptorId != source.CredentialTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CredentialTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -14707,13 +14303,6 @@ public static bool SynchronizeTo(this ICredentialTypeDescriptor source, ICredent isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -14761,9 +14350,6 @@ public static void MapTo(this ICredentialTypeDescriptor source, ICredentialTypeD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -14823,7 +14409,8 @@ public static bool SynchronizeTo(this ICreditCategoryDescriptor source, ICreditC // Detect primary key changes if ( - (target.CreditCategoryDescriptorId != source.CreditCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CreditCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -14868,13 +14455,6 @@ public static bool SynchronizeTo(this ICreditCategoryDescriptor source, ICreditC isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -14922,9 +14502,6 @@ public static void MapTo(this ICreditCategoryDescriptor source, ICreditCategoryD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -14984,7 +14561,8 @@ public static bool SynchronizeTo(this ICreditTypeDescriptor source, ICreditTypeD // Detect primary key changes if ( - (target.CreditTypeDescriptorId != source.CreditTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CreditTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -15029,13 +14607,6 @@ public static bool SynchronizeTo(this ICreditTypeDescriptor source, ICreditTypeD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -15083,9 +14654,6 @@ public static void MapTo(this ICreditTypeDescriptor source, ICreditTypeDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -15145,7 +14713,8 @@ public static bool SynchronizeTo(this ICTEProgramServiceDescriptor source, ICTEP // Detect primary key changes if ( - (target.CTEProgramServiceDescriptorId != source.CTEProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CTEProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -15190,13 +14759,6 @@ public static bool SynchronizeTo(this ICTEProgramServiceDescriptor source, ICTEP isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -15244,9 +14806,6 @@ public static void MapTo(this ICTEProgramServiceDescriptor source, ICTEProgramSe if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -15306,7 +14865,8 @@ public static bool SynchronizeTo(this ICurriculumUsedDescriptor source, ICurricu // Detect primary key changes if ( - (target.CurriculumUsedDescriptorId != source.CurriculumUsedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CurriculumUsedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -15351,13 +14911,6 @@ public static bool SynchronizeTo(this ICurriculumUsedDescriptor source, ICurricu isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -15405,9 +14958,6 @@ public static void MapTo(this ICurriculumUsedDescriptor source, ICurriculumUsedD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -15467,7 +15017,8 @@ public static bool SynchronizeTo(this IDeliveryMethodDescriptor source, IDeliver // Detect primary key changes if ( - (target.DeliveryMethodDescriptorId != source.DeliveryMethodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DeliveryMethodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -15512,13 +15063,6 @@ public static bool SynchronizeTo(this IDeliveryMethodDescriptor source, IDeliver isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -15566,9 +15110,6 @@ public static void MapTo(this IDeliveryMethodDescriptor source, IDeliveryMethodD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -15809,7 +15350,8 @@ public static bool SynchronizeTo(this IDiagnosisDescriptor source, IDiagnosisDes // Detect primary key changes if ( - (target.DiagnosisDescriptorId != source.DiagnosisDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DiagnosisDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -15854,13 +15396,6 @@ public static bool SynchronizeTo(this IDiagnosisDescriptor source, IDiagnosisDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -15908,9 +15443,6 @@ public static void MapTo(this IDiagnosisDescriptor source, IDiagnosisDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -15970,7 +15502,8 @@ public static bool SynchronizeTo(this IDiplomaLevelDescriptor source, IDiplomaLe // Detect primary key changes if ( - (target.DiplomaLevelDescriptorId != source.DiplomaLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DiplomaLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16015,13 +15548,6 @@ public static bool SynchronizeTo(this IDiplomaLevelDescriptor source, IDiplomaLe isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16069,9 +15595,6 @@ public static void MapTo(this IDiplomaLevelDescriptor source, IDiplomaLevelDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -16131,7 +15654,8 @@ public static bool SynchronizeTo(this IDiplomaTypeDescriptor source, IDiplomaTyp // Detect primary key changes if ( - (target.DiplomaTypeDescriptorId != source.DiplomaTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DiplomaTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16176,13 +15700,6 @@ public static bool SynchronizeTo(this IDiplomaTypeDescriptor source, IDiplomaTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16230,9 +15747,6 @@ public static void MapTo(this IDiplomaTypeDescriptor source, IDiplomaTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -16292,7 +15806,8 @@ public static bool SynchronizeTo(this IDisabilityDescriptor source, IDisabilityD // Detect primary key changes if ( - (target.DisabilityDescriptorId != source.DisabilityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisabilityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16337,13 +15852,6 @@ public static bool SynchronizeTo(this IDisabilityDescriptor source, IDisabilityD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16391,9 +15899,6 @@ public static void MapTo(this IDisabilityDescriptor source, IDisabilityDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -16453,7 +15958,8 @@ public static bool SynchronizeTo(this IDisabilityDesignationDescriptor source, I // Detect primary key changes if ( - (target.DisabilityDesignationDescriptorId != source.DisabilityDesignationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisabilityDesignationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16498,13 +16004,6 @@ public static bool SynchronizeTo(this IDisabilityDesignationDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16552,9 +16051,6 @@ public static void MapTo(this IDisabilityDesignationDescriptor source, IDisabili if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -16614,7 +16110,8 @@ public static bool SynchronizeTo(this IDisabilityDeterminationSourceTypeDescript // Detect primary key changes if ( - (target.DisabilityDeterminationSourceTypeDescriptorId != source.DisabilityDeterminationSourceTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisabilityDeterminationSourceTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16659,13 +16156,6 @@ public static bool SynchronizeTo(this IDisabilityDeterminationSourceTypeDescript isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16713,9 +16203,6 @@ public static void MapTo(this IDisabilityDeterminationSourceTypeDescriptor sourc if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -17328,7 +16815,8 @@ public static bool SynchronizeTo(this IDisciplineActionLengthDifferenceReasonDes // Detect primary key changes if ( - (target.DisciplineActionLengthDifferenceReasonDescriptorId != source.DisciplineActionLengthDifferenceReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisciplineActionLengthDifferenceReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -17373,13 +16861,6 @@ public static bool SynchronizeTo(this IDisciplineActionLengthDifferenceReasonDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -17427,9 +16908,6 @@ public static void MapTo(this IDisciplineActionLengthDifferenceReasonDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -17489,7 +16967,8 @@ public static bool SynchronizeTo(this IDisciplineDescriptor source, IDisciplineD // Detect primary key changes if ( - (target.DisciplineDescriptorId != source.DisciplineDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisciplineDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -17534,13 +17013,6 @@ public static bool SynchronizeTo(this IDisciplineDescriptor source, IDisciplineD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -17588,9 +17060,6 @@ public static void MapTo(this IDisciplineDescriptor source, IDisciplineDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -18121,7 +17590,8 @@ public static bool SynchronizeTo(this IDisciplineIncidentParticipationCodeDescri // Detect primary key changes if ( - (target.DisciplineIncidentParticipationCodeDescriptorId != source.DisciplineIncidentParticipationCodeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisciplineIncidentParticipationCodeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -18166,13 +17636,6 @@ public static bool SynchronizeTo(this IDisciplineIncidentParticipationCodeDescri isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -18220,9 +17683,6 @@ public static void MapTo(this IDisciplineIncidentParticipationCodeDescriptor sou if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -18282,7 +17742,8 @@ public static bool SynchronizeTo(this IEducationalEnvironmentDescriptor source, // Detect primary key changes if ( - (target.EducationalEnvironmentDescriptorId != source.EducationalEnvironmentDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducationalEnvironmentDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -18327,13 +17788,6 @@ public static bool SynchronizeTo(this IEducationalEnvironmentDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -18381,9 +17835,6 @@ public static void MapTo(this IEducationalEnvironmentDescriptor source, IEducati if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -20177,7 +19628,8 @@ public static bool SynchronizeTo(this IEducationOrganizationAssociationTypeDescr // Detect primary key changes if ( - (target.EducationOrganizationAssociationTypeDescriptorId != source.EducationOrganizationAssociationTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducationOrganizationAssociationTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -20222,13 +19674,6 @@ public static bool SynchronizeTo(this IEducationOrganizationAssociationTypeDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -20276,9 +19721,6 @@ public static void MapTo(this IEducationOrganizationAssociationTypeDescriptor so if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -20338,7 +19780,8 @@ public static bool SynchronizeTo(this IEducationOrganizationCategoryDescriptor s // Detect primary key changes if ( - (target.EducationOrganizationCategoryDescriptorId != source.EducationOrganizationCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducationOrganizationCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -20383,13 +19826,6 @@ public static bool SynchronizeTo(this IEducationOrganizationCategoryDescriptor s isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -20437,9 +19873,6 @@ public static void MapTo(this IEducationOrganizationCategoryDescriptor source, I if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -20499,7 +19932,8 @@ public static bool SynchronizeTo(this IEducationOrganizationIdentificationSystem // Detect primary key changes if ( - (target.EducationOrganizationIdentificationSystemDescriptorId != source.EducationOrganizationIdentificationSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducationOrganizationIdentificationSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -20544,13 +19978,6 @@ public static bool SynchronizeTo(this IEducationOrganizationIdentificationSystem isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -20598,9 +20025,6 @@ public static void MapTo(this IEducationOrganizationIdentificationSystemDescript if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -21223,7 +20647,8 @@ public static bool SynchronizeTo(this IEducationPlanDescriptor source, IEducatio // Detect primary key changes if ( - (target.EducationPlanDescriptorId != source.EducationPlanDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducationPlanDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -21268,13 +20693,6 @@ public static bool SynchronizeTo(this IEducationPlanDescriptor source, IEducatio isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -21322,9 +20740,6 @@ public static void MapTo(this IEducationPlanDescriptor source, IEducationPlanDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -21619,7 +21034,8 @@ public static bool SynchronizeTo(this IElectronicMailTypeDescriptor source, IEle // Detect primary key changes if ( - (target.ElectronicMailTypeDescriptorId != source.ElectronicMailTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ElectronicMailTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -21664,13 +21080,6 @@ public static bool SynchronizeTo(this IElectronicMailTypeDescriptor source, IEle isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -21718,9 +21127,6 @@ public static void MapTo(this IElectronicMailTypeDescriptor source, IElectronicM if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -21780,7 +21186,8 @@ public static bool SynchronizeTo(this IEmploymentStatusDescriptor source, IEmplo // Detect primary key changes if ( - (target.EmploymentStatusDescriptorId != source.EmploymentStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EmploymentStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -21825,13 +21232,6 @@ public static bool SynchronizeTo(this IEmploymentStatusDescriptor source, IEmplo isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -21879,9 +21279,6 @@ public static void MapTo(this IEmploymentStatusDescriptor source, IEmploymentSta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -21941,7 +21338,8 @@ public static bool SynchronizeTo(this IEntryGradeLevelReasonDescriptor source, I // Detect primary key changes if ( - (target.EntryGradeLevelReasonDescriptorId != source.EntryGradeLevelReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EntryGradeLevelReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -21986,13 +21384,6 @@ public static bool SynchronizeTo(this IEntryGradeLevelReasonDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -22040,9 +21431,6 @@ public static void MapTo(this IEntryGradeLevelReasonDescriptor source, IEntryGra if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -22102,7 +21490,8 @@ public static bool SynchronizeTo(this IEntryTypeDescriptor source, IEntryTypeDes // Detect primary key changes if ( - (target.EntryTypeDescriptorId != source.EntryTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EntryTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -22147,13 +21536,6 @@ public static bool SynchronizeTo(this IEntryTypeDescriptor source, IEntryTypeDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -22201,9 +21583,6 @@ public static void MapTo(this IEntryTypeDescriptor source, IEntryTypeDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -22263,7 +21642,8 @@ public static bool SynchronizeTo(this IEventCircumstanceDescriptor source, IEven // Detect primary key changes if ( - (target.EventCircumstanceDescriptorId != source.EventCircumstanceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EventCircumstanceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -22308,13 +21688,6 @@ public static bool SynchronizeTo(this IEventCircumstanceDescriptor source, IEven isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -22362,9 +21735,6 @@ public static void MapTo(this IEventCircumstanceDescriptor source, IEventCircums if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -22424,7 +21794,8 @@ public static bool SynchronizeTo(this IExitWithdrawTypeDescriptor source, IExitW // Detect primary key changes if ( - (target.ExitWithdrawTypeDescriptorId != source.ExitWithdrawTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ExitWithdrawTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -22469,13 +21840,6 @@ public static bool SynchronizeTo(this IExitWithdrawTypeDescriptor source, IExitW isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -22523,9 +21887,6 @@ public static void MapTo(this IExitWithdrawTypeDescriptor source, IExitWithdrawT if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -22702,7 +22063,8 @@ public static bool SynchronizeTo(this IFinancialCollectionDescriptor source, IFi // Detect primary key changes if ( - (target.FinancialCollectionDescriptorId != source.FinancialCollectionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on FinancialCollectionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -22747,13 +22109,6 @@ public static bool SynchronizeTo(this IFinancialCollectionDescriptor source, IFi isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -22801,9 +22156,6 @@ public static void MapTo(this IFinancialCollectionDescriptor source, IFinancialC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -24449,7 +23801,8 @@ public static bool SynchronizeTo(this IGradebookEntryTypeDescriptor source, IGra // Detect primary key changes if ( - (target.GradebookEntryTypeDescriptorId != source.GradebookEntryTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GradebookEntryTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -24494,13 +23847,6 @@ public static bool SynchronizeTo(this IGradebookEntryTypeDescriptor source, IGra isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -24548,9 +23894,6 @@ public static void MapTo(this IGradebookEntryTypeDescriptor source, IGradebookEn if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -24610,7 +23953,8 @@ public static bool SynchronizeTo(this IGradeLevelDescriptor source, IGradeLevelD // Detect primary key changes if ( - (target.GradeLevelDescriptorId != source.GradeLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GradeLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -24655,13 +23999,6 @@ public static bool SynchronizeTo(this IGradeLevelDescriptor source, IGradeLevelD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -24709,169 +24046,157 @@ public static void MapTo(this IGradeLevelDescriptor source, IGradeLevelDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - - if (mappingContract?.IsShortDescriptionSupported != false) - target.ShortDescription = source.ShortDescription; - - // Copy non-PK properties - - // Copy Aggregate Reference Data - - - // ---------------------------------- - // Map One-to-one relationships - // ---------------------------------- - - // Map inherited lists - - // Map lists - - - // Convert source to an ETag, if appropriate - if (target is IHasETag entityWithETag) - entityWithETag.ETag = GeneratedArtifactStaticDependencies.ETagProvider.GetETag(source); - - // Copy/assign LastModifiedDate, if appropriate - if (target is IDateVersionedEntity targetDateVersionedEntity) - { - if (source is IHasETag etagSource) - { - // Convert resource's supplied eTag value to entity's LastModifiedDate - targetDateVersionedEntity.LastModifiedDate = GeneratedArtifactStaticDependencies.ETagProvider.GetDateTime(etagSource.ETag); - } - else if (source is IDateVersionedEntity sourceDateVersionedEntity) - { - // Copy LastModifiedDate, when mapping from entities to resources/entities - targetDateVersionedEntity.LastModifiedDate = sourceDateVersionedEntity.LastModifiedDate; - } - } - } - } - -} -// Aggregate: GradePointAverageTypeDescriptor - -namespace EdFi.Ods.Entities.Common.EdFi //.GradePointAverageTypeDescriptorAggregate -{ - [ExcludeFromCodeCoverage] - public static class GradePointAverageTypeDescriptorMapper - { - private static readonly FullName _fullName_edfi_GradePointAverageTypeDescriptor = new FullName("edfi", "GradePointAverageTypeDescriptor"); - - public static bool SynchronizeTo(this IGradePointAverageTypeDescriptor source, IGradePointAverageTypeDescriptor target) - { - bool isModified = false; - - // Get the mapping contract for knowing what values to synchronize through to target entity - var mappingContract = (GradePointAverageTypeDescriptorMappingContract) GeneratedArtifactStaticDependencies - .MappingContractProvider - .GetMappingContract(_fullName_edfi_GradePointAverageTypeDescriptor); - - // Detect primary key changes - if ( - (target.GradePointAverageTypeDescriptorId != source.GradePointAverageTypeDescriptorId)) - { - // Disallow PK column updates on GradePointAverageTypeDescriptor - throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); - } - - - // Copy inherited non-PK properties - - - if ((mappingContract?.IsCodeValueSupported != false) - && target.CodeValue != source.CodeValue) - { - target.CodeValue = source.CodeValue; - isModified = true; - } - - if ((mappingContract?.IsDescriptionSupported != false) - && target.Description != source.Description) - { - target.Description = source.Description; - isModified = true; - } - - if ((mappingContract?.IsEffectiveBeginDateSupported != false) - && target.EffectiveBeginDate != source.EffectiveBeginDate) - { - target.EffectiveBeginDate = source.EffectiveBeginDate; - isModified = true; - } - - if ((mappingContract?.IsEffectiveEndDateSupported != false) - && target.EffectiveEndDate != source.EffectiveEndDate) - { - target.EffectiveEndDate = source.EffectiveEndDate; - isModified = true; - } - - if ((mappingContract?.IsNamespaceSupported != false) - && target.Namespace != source.Namespace) - { - target.Namespace = source.Namespace; - isModified = true; - } - - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - - if ((mappingContract?.IsShortDescriptionSupported != false) - && target.ShortDescription != source.ShortDescription) - { - target.ShortDescription = source.ShortDescription; - isModified = true; - } - - // Copy non-PK properties - - - // Synch inherited lists - - // Sync lists - - return isModified; - } - - public static void MapTo(this IGradePointAverageTypeDescriptor source, IGradePointAverageTypeDescriptor target, Action onMapped) - { - // Get the mapping contract for determining what values to map through to target - var mappingContract = (GradePointAverageTypeDescriptorMappingContract) GeneratedArtifactStaticDependencies - .MappingContractProvider - .GetMappingContract(_fullName_edfi_GradePointAverageTypeDescriptor); - - // Copy resource Id - target.Id = source.Id; - - // Copy contextual primary key values - target.GradePointAverageTypeDescriptorId = source.GradePointAverageTypeDescriptorId; - - // Copy inherited non-PK properties - - if (mappingContract?.IsCodeValueSupported != false) - target.CodeValue = source.CodeValue; - - if (mappingContract?.IsDescriptionSupported != false) - target.Description = source.Description; - - if (mappingContract?.IsEffectiveBeginDateSupported != false) - target.EffectiveBeginDate = source.EffectiveBeginDate; - - if (mappingContract?.IsEffectiveEndDateSupported != false) - target.EffectiveEndDate = source.EffectiveEndDate; - - if (mappingContract?.IsNamespaceSupported != false) - target.Namespace = source.Namespace; - - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; + if (mappingContract?.IsShortDescriptionSupported != false) + target.ShortDescription = source.ShortDescription; + + // Copy non-PK properties + + // Copy Aggregate Reference Data + + + // ---------------------------------- + // Map One-to-one relationships + // ---------------------------------- + + // Map inherited lists + + // Map lists + + + // Convert source to an ETag, if appropriate + if (target is IHasETag entityWithETag) + entityWithETag.ETag = GeneratedArtifactStaticDependencies.ETagProvider.GetETag(source); + + // Copy/assign LastModifiedDate, if appropriate + if (target is IDateVersionedEntity targetDateVersionedEntity) + { + if (source is IHasETag etagSource) + { + // Convert resource's supplied eTag value to entity's LastModifiedDate + targetDateVersionedEntity.LastModifiedDate = GeneratedArtifactStaticDependencies.ETagProvider.GetDateTime(etagSource.ETag); + } + else if (source is IDateVersionedEntity sourceDateVersionedEntity) + { + // Copy LastModifiedDate, when mapping from entities to resources/entities + targetDateVersionedEntity.LastModifiedDate = sourceDateVersionedEntity.LastModifiedDate; + } + } + } + } + +} +// Aggregate: GradePointAverageTypeDescriptor + +namespace EdFi.Ods.Entities.Common.EdFi //.GradePointAverageTypeDescriptorAggregate +{ + [ExcludeFromCodeCoverage] + public static class GradePointAverageTypeDescriptorMapper + { + private static readonly FullName _fullName_edfi_GradePointAverageTypeDescriptor = new FullName("edfi", "GradePointAverageTypeDescriptor"); + + public static bool SynchronizeTo(this IGradePointAverageTypeDescriptor source, IGradePointAverageTypeDescriptor target) + { + bool isModified = false; + + // Get the mapping contract for knowing what values to synchronize through to target entity + var mappingContract = (GradePointAverageTypeDescriptorMappingContract) GeneratedArtifactStaticDependencies + .MappingContractProvider + .GetMappingContract(_fullName_edfi_GradePointAverageTypeDescriptor); + + // Detect primary key changes + if ( + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) + { + // Disallow PK column updates on GradePointAverageTypeDescriptor + throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); + } + + + // Copy inherited non-PK properties + + + if ((mappingContract?.IsCodeValueSupported != false) + && target.CodeValue != source.CodeValue) + { + target.CodeValue = source.CodeValue; + isModified = true; + } + + if ((mappingContract?.IsDescriptionSupported != false) + && target.Description != source.Description) + { + target.Description = source.Description; + isModified = true; + } + + if ((mappingContract?.IsEffectiveBeginDateSupported != false) + && target.EffectiveBeginDate != source.EffectiveBeginDate) + { + target.EffectiveBeginDate = source.EffectiveBeginDate; + isModified = true; + } + + if ((mappingContract?.IsEffectiveEndDateSupported != false) + && target.EffectiveEndDate != source.EffectiveEndDate) + { + target.EffectiveEndDate = source.EffectiveEndDate; + isModified = true; + } + + if ((mappingContract?.IsNamespaceSupported != false) + && target.Namespace != source.Namespace) + { + target.Namespace = source.Namespace; + isModified = true; + } + + if ((mappingContract?.IsShortDescriptionSupported != false) + && target.ShortDescription != source.ShortDescription) + { + target.ShortDescription = source.ShortDescription; + isModified = true; + } + + // Copy non-PK properties + + + // Synch inherited lists + + // Sync lists + + return isModified; + } + + public static void MapTo(this IGradePointAverageTypeDescriptor source, IGradePointAverageTypeDescriptor target, Action onMapped) + { + // Get the mapping contract for determining what values to map through to target + var mappingContract = (GradePointAverageTypeDescriptorMappingContract) GeneratedArtifactStaticDependencies + .MappingContractProvider + .GetMappingContract(_fullName_edfi_GradePointAverageTypeDescriptor); + + // Copy resource Id + target.Id = source.Id; + + // Copy contextual primary key values + target.GradePointAverageTypeDescriptorId = source.GradePointAverageTypeDescriptorId; + + // Copy inherited non-PK properties + + if (mappingContract?.IsCodeValueSupported != false) + target.CodeValue = source.CodeValue; + + if (mappingContract?.IsDescriptionSupported != false) + target.Description = source.Description; + + if (mappingContract?.IsEffectiveBeginDateSupported != false) + target.EffectiveBeginDate = source.EffectiveBeginDate; + + if (mappingContract?.IsEffectiveEndDateSupported != false) + target.EffectiveEndDate = source.EffectiveEndDate; + + if (mappingContract?.IsNamespaceSupported != false) + target.Namespace = source.Namespace; if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -24932,7 +24257,8 @@ public static bool SynchronizeTo(this IGradeTypeDescriptor source, IGradeTypeDes // Detect primary key changes if ( - (target.GradeTypeDescriptorId != source.GradeTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GradeTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -24977,13 +24303,6 @@ public static bool SynchronizeTo(this IGradeTypeDescriptor source, IGradeTypeDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -25031,9 +24350,6 @@ public static void MapTo(this IGradeTypeDescriptor source, IGradeTypeDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -25222,7 +24538,8 @@ public static bool SynchronizeTo(this IGradingPeriodDescriptor source, IGradingP // Detect primary key changes if ( - (target.GradingPeriodDescriptorId != source.GradingPeriodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GradingPeriodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -25267,13 +24584,6 @@ public static bool SynchronizeTo(this IGradingPeriodDescriptor source, IGradingP isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -25321,9 +24631,6 @@ public static void MapTo(this IGradingPeriodDescriptor source, IGradingPeriodDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -26370,7 +25677,8 @@ public static bool SynchronizeTo(this IGraduationPlanTypeDescriptor source, IGra // Detect primary key changes if ( - (target.GraduationPlanTypeDescriptorId != source.GraduationPlanTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GraduationPlanTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -26415,13 +25723,6 @@ public static bool SynchronizeTo(this IGraduationPlanTypeDescriptor source, IGra isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -26469,9 +25770,6 @@ public static void MapTo(this IGraduationPlanTypeDescriptor source, IGraduationP if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -26531,7 +25829,8 @@ public static bool SynchronizeTo(this IGunFreeSchoolsActReportingStatusDescripto // Detect primary key changes if ( - (target.GunFreeSchoolsActReportingStatusDescriptorId != source.GunFreeSchoolsActReportingStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GunFreeSchoolsActReportingStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -26576,13 +25875,6 @@ public static bool SynchronizeTo(this IGunFreeSchoolsActReportingStatusDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -26630,9 +25922,6 @@ public static void MapTo(this IGunFreeSchoolsActReportingStatusDescriptor source if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -26692,7 +25981,8 @@ public static bool SynchronizeTo(this IHomelessPrimaryNighttimeResidenceDescript // Detect primary key changes if ( - (target.HomelessPrimaryNighttimeResidenceDescriptorId != source.HomelessPrimaryNighttimeResidenceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on HomelessPrimaryNighttimeResidenceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -26737,13 +26027,6 @@ public static bool SynchronizeTo(this IHomelessPrimaryNighttimeResidenceDescript isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -26791,9 +26074,6 @@ public static void MapTo(this IHomelessPrimaryNighttimeResidenceDescriptor sourc if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -26853,7 +26133,8 @@ public static bool SynchronizeTo(this IHomelessProgramServiceDescriptor source, // Detect primary key changes if ( - (target.HomelessProgramServiceDescriptorId != source.HomelessProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on HomelessProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -26898,13 +26179,6 @@ public static bool SynchronizeTo(this IHomelessProgramServiceDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -26952,9 +26226,6 @@ public static void MapTo(this IHomelessProgramServiceDescriptor source, IHomeles if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -27014,7 +26285,8 @@ public static bool SynchronizeTo(this IIdentificationDocumentUseDescriptor sourc // Detect primary key changes if ( - (target.IdentificationDocumentUseDescriptorId != source.IdentificationDocumentUseDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IdentificationDocumentUseDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -27059,13 +26331,6 @@ public static bool SynchronizeTo(this IIdentificationDocumentUseDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -27113,9 +26378,6 @@ public static void MapTo(this IIdentificationDocumentUseDescriptor source, IIden if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -27175,7 +26437,8 @@ public static bool SynchronizeTo(this IIncidentLocationDescriptor source, IIncid // Detect primary key changes if ( - (target.IncidentLocationDescriptorId != source.IncidentLocationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IncidentLocationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -27220,13 +26483,6 @@ public static bool SynchronizeTo(this IIncidentLocationDescriptor source, IIncid isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -27274,9 +26530,6 @@ public static void MapTo(this IIncidentLocationDescriptor source, IIncidentLocat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -27336,7 +26589,8 @@ public static bool SynchronizeTo(this IIndicatorDescriptor source, IIndicatorDes // Detect primary key changes if ( - (target.IndicatorDescriptorId != source.IndicatorDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IndicatorDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -27381,13 +26635,6 @@ public static bool SynchronizeTo(this IIndicatorDescriptor source, IIndicatorDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -27435,9 +26682,6 @@ public static void MapTo(this IIndicatorDescriptor source, IIndicatorDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -27497,7 +26741,8 @@ public static bool SynchronizeTo(this IIndicatorGroupDescriptor source, IIndicat // Detect primary key changes if ( - (target.IndicatorGroupDescriptorId != source.IndicatorGroupDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IndicatorGroupDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -27542,13 +26787,6 @@ public static bool SynchronizeTo(this IIndicatorGroupDescriptor source, IIndicat isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -27596,9 +26834,6 @@ public static void MapTo(this IIndicatorGroupDescriptor source, IIndicatorGroupD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -27658,7 +26893,8 @@ public static bool SynchronizeTo(this IIndicatorLevelDescriptor source, IIndicat // Detect primary key changes if ( - (target.IndicatorLevelDescriptorId != source.IndicatorLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IndicatorLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -27703,13 +26939,6 @@ public static bool SynchronizeTo(this IIndicatorLevelDescriptor source, IIndicat isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -27757,9 +26986,6 @@ public static void MapTo(this IIndicatorLevelDescriptor source, IIndicatorLevelD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -27819,7 +27045,8 @@ public static bool SynchronizeTo(this IInstitutionTelephoneNumberTypeDescriptor // Detect primary key changes if ( - (target.InstitutionTelephoneNumberTypeDescriptorId != source.InstitutionTelephoneNumberTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InstitutionTelephoneNumberTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -27864,13 +27091,6 @@ public static bool SynchronizeTo(this IInstitutionTelephoneNumberTypeDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -27918,9 +27138,6 @@ public static void MapTo(this IInstitutionTelephoneNumberTypeDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -27980,7 +27197,8 @@ public static bool SynchronizeTo(this IInteractivityStyleDescriptor source, IInt // Detect primary key changes if ( - (target.InteractivityStyleDescriptorId != source.InteractivityStyleDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InteractivityStyleDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -28025,13 +27243,6 @@ public static bool SynchronizeTo(this IInteractivityStyleDescriptor source, IInt isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -28079,9 +27290,6 @@ public static void MapTo(this IInteractivityStyleDescriptor source, IInteractivi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -28141,7 +27349,8 @@ public static bool SynchronizeTo(this IInternetAccessDescriptor source, IInterne // Detect primary key changes if ( - (target.InternetAccessDescriptorId != source.InternetAccessDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InternetAccessDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -28186,13 +27395,6 @@ public static bool SynchronizeTo(this IInternetAccessDescriptor source, IInterne isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -28240,9 +27442,6 @@ public static void MapTo(this IInternetAccessDescriptor source, IInternetAccessD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -28302,7 +27501,8 @@ public static bool SynchronizeTo(this IInternetAccessTypeInResidenceDescriptor s // Detect primary key changes if ( - (target.InternetAccessTypeInResidenceDescriptorId != source.InternetAccessTypeInResidenceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InternetAccessTypeInResidenceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -28347,13 +27547,6 @@ public static bool SynchronizeTo(this IInternetAccessTypeInResidenceDescriptor s isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -28401,9 +27594,6 @@ public static void MapTo(this IInternetAccessTypeInResidenceDescriptor source, I if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -28463,7 +27653,8 @@ public static bool SynchronizeTo(this IInternetPerformanceInResidenceDescriptor // Detect primary key changes if ( - (target.InternetPerformanceInResidenceDescriptorId != source.InternetPerformanceInResidenceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InternetPerformanceInResidenceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -28508,13 +27699,6 @@ public static bool SynchronizeTo(this IInternetPerformanceInResidenceDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -28562,9 +27746,6 @@ public static void MapTo(this IInternetPerformanceInResidenceDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -29684,7 +28865,8 @@ public static bool SynchronizeTo(this IInterventionClassDescriptor source, IInte // Detect primary key changes if ( - (target.InterventionClassDescriptorId != source.InterventionClassDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InterventionClassDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -29729,13 +28911,6 @@ public static bool SynchronizeTo(this IInterventionClassDescriptor source, IInte isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -29783,9 +28958,6 @@ public static void MapTo(this IInterventionClassDescriptor source, IIntervention if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -29845,7 +29017,8 @@ public static bool SynchronizeTo(this IInterventionEffectivenessRatingDescriptor // Detect primary key changes if ( - (target.InterventionEffectivenessRatingDescriptorId != source.InterventionEffectivenessRatingDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InterventionEffectivenessRatingDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -29890,13 +29063,6 @@ public static bool SynchronizeTo(this IInterventionEffectivenessRatingDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -29944,9 +29110,6 @@ public static void MapTo(this IInterventionEffectivenessRatingDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -31643,7 +30806,8 @@ public static bool SynchronizeTo(this ILanguageDescriptor source, ILanguageDescr // Detect primary key changes if ( - (target.LanguageDescriptorId != source.LanguageDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LanguageDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -31688,13 +30852,6 @@ public static bool SynchronizeTo(this ILanguageDescriptor source, ILanguageDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -31742,9 +30899,6 @@ public static void MapTo(this ILanguageDescriptor source, ILanguageDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -31804,7 +30958,8 @@ public static bool SynchronizeTo(this ILanguageInstructionProgramServiceDescript // Detect primary key changes if ( - (target.LanguageInstructionProgramServiceDescriptorId != source.LanguageInstructionProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LanguageInstructionProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -31849,13 +31004,6 @@ public static bool SynchronizeTo(this ILanguageInstructionProgramServiceDescript isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -31903,9 +31051,6 @@ public static void MapTo(this ILanguageInstructionProgramServiceDescriptor sourc if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -31965,7 +31110,8 @@ public static bool SynchronizeTo(this ILanguageUseDescriptor source, ILanguageUs // Detect primary key changes if ( - (target.LanguageUseDescriptorId != source.LanguageUseDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LanguageUseDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -32010,13 +31156,6 @@ public static bool SynchronizeTo(this ILanguageUseDescriptor source, ILanguageUs isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -32064,9 +31203,6 @@ public static void MapTo(this ILanguageUseDescriptor source, ILanguageUseDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -33702,7 +32838,8 @@ public static bool SynchronizeTo(this ILearningStandardCategoryDescriptor source // Detect primary key changes if ( - (target.LearningStandardCategoryDescriptorId != source.LearningStandardCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LearningStandardCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -33747,13 +32884,6 @@ public static bool SynchronizeTo(this ILearningStandardCategoryDescriptor source isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -33801,9 +32931,6 @@ public static void MapTo(this ILearningStandardCategoryDescriptor source, ILearn if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -33994,7 +33121,8 @@ public static bool SynchronizeTo(this ILearningStandardEquivalenceStrengthDescri // Detect primary key changes if ( - (target.LearningStandardEquivalenceStrengthDescriptorId != source.LearningStandardEquivalenceStrengthDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LearningStandardEquivalenceStrengthDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -34039,13 +33167,6 @@ public static bool SynchronizeTo(this ILearningStandardEquivalenceStrengthDescri isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -34093,9 +33214,6 @@ public static void MapTo(this ILearningStandardEquivalenceStrengthDescriptor sou if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -34155,7 +33273,8 @@ public static bool SynchronizeTo(this ILearningStandardScopeDescriptor source, I // Detect primary key changes if ( - (target.LearningStandardScopeDescriptorId != source.LearningStandardScopeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LearningStandardScopeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -34200,13 +33319,6 @@ public static bool SynchronizeTo(this ILearningStandardScopeDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -34254,9 +33366,6 @@ public static void MapTo(this ILearningStandardScopeDescriptor source, ILearning if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -34316,7 +33425,8 @@ public static bool SynchronizeTo(this ILevelOfEducationDescriptor source, ILevel // Detect primary key changes if ( - (target.LevelOfEducationDescriptorId != source.LevelOfEducationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LevelOfEducationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -34361,13 +33471,6 @@ public static bool SynchronizeTo(this ILevelOfEducationDescriptor source, ILevel isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -34415,9 +33518,6 @@ public static void MapTo(this ILevelOfEducationDescriptor source, ILevelOfEducat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -34477,7 +33577,8 @@ public static bool SynchronizeTo(this ILicenseStatusDescriptor source, ILicenseS // Detect primary key changes if ( - (target.LicenseStatusDescriptorId != source.LicenseStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LicenseStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -34522,13 +33623,6 @@ public static bool SynchronizeTo(this ILicenseStatusDescriptor source, ILicenseS isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -34576,9 +33670,6 @@ public static void MapTo(this ILicenseStatusDescriptor source, ILicenseStatusDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -34638,7 +33729,8 @@ public static bool SynchronizeTo(this ILicenseTypeDescriptor source, ILicenseTyp // Detect primary key changes if ( - (target.LicenseTypeDescriptorId != source.LicenseTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LicenseTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -34683,13 +33775,6 @@ public static bool SynchronizeTo(this ILicenseTypeDescriptor source, ILicenseTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -34737,9 +33822,6 @@ public static void MapTo(this ILicenseTypeDescriptor source, ILicenseTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -34799,7 +33881,8 @@ public static bool SynchronizeTo(this ILimitedEnglishProficiencyDescriptor sourc // Detect primary key changes if ( - (target.LimitedEnglishProficiencyDescriptorId != source.LimitedEnglishProficiencyDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LimitedEnglishProficiencyDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -34844,13 +33927,6 @@ public static bool SynchronizeTo(this ILimitedEnglishProficiencyDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -34898,9 +33974,6 @@ public static void MapTo(this ILimitedEnglishProficiencyDescriptor source, ILimi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -35555,7 +34628,8 @@ public static bool SynchronizeTo(this ILocaleDescriptor source, ILocaleDescripto // Detect primary key changes if ( - (target.LocaleDescriptorId != source.LocaleDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LocaleDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -35600,13 +34674,6 @@ public static bool SynchronizeTo(this ILocaleDescriptor source, ILocaleDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -35654,9 +34721,6 @@ public static void MapTo(this ILocaleDescriptor source, ILocaleDescriptor target if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -36273,7 +35337,8 @@ public static bool SynchronizeTo(this ILocalEducationAgencyCategoryDescriptor so // Detect primary key changes if ( - (target.LocalEducationAgencyCategoryDescriptorId != source.LocalEducationAgencyCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LocalEducationAgencyCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -36318,13 +35383,6 @@ public static bool SynchronizeTo(this ILocalEducationAgencyCategoryDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -36372,9 +35430,6 @@ public static void MapTo(this ILocalEducationAgencyCategoryDescriptor source, IL if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -36816,7 +35871,8 @@ public static bool SynchronizeTo(this IMagnetSpecialProgramEmphasisSchoolDescrip // Detect primary key changes if ( - (target.MagnetSpecialProgramEmphasisSchoolDescriptorId != source.MagnetSpecialProgramEmphasisSchoolDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MagnetSpecialProgramEmphasisSchoolDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -36861,13 +35917,6 @@ public static bool SynchronizeTo(this IMagnetSpecialProgramEmphasisSchoolDescrip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -36915,9 +35964,6 @@ public static void MapTo(this IMagnetSpecialProgramEmphasisSchoolDescriptor sour if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -36977,7 +36023,8 @@ public static bool SynchronizeTo(this IMediumOfInstructionDescriptor source, IMe // Detect primary key changes if ( - (target.MediumOfInstructionDescriptorId != source.MediumOfInstructionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MediumOfInstructionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -37022,13 +36069,6 @@ public static bool SynchronizeTo(this IMediumOfInstructionDescriptor source, IMe isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -37076,9 +36116,6 @@ public static void MapTo(this IMediumOfInstructionDescriptor source, IMediumOfIn if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -37138,7 +36175,8 @@ public static bool SynchronizeTo(this IMethodCreditEarnedDescriptor source, IMet // Detect primary key changes if ( - (target.MethodCreditEarnedDescriptorId != source.MethodCreditEarnedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MethodCreditEarnedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -37183,13 +36221,6 @@ public static bool SynchronizeTo(this IMethodCreditEarnedDescriptor source, IMet isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -37237,9 +36268,6 @@ public static void MapTo(this IMethodCreditEarnedDescriptor source, IMethodCredi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -37299,7 +36327,8 @@ public static bool SynchronizeTo(this IMigrantEducationProgramServiceDescriptor // Detect primary key changes if ( - (target.MigrantEducationProgramServiceDescriptorId != source.MigrantEducationProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MigrantEducationProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -37344,13 +36373,6 @@ public static bool SynchronizeTo(this IMigrantEducationProgramServiceDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -37398,9 +36420,6 @@ public static void MapTo(this IMigrantEducationProgramServiceDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -37460,7 +36479,8 @@ public static bool SynchronizeTo(this IModelEntityDescriptor source, IModelEntit // Detect primary key changes if ( - (target.ModelEntityDescriptorId != source.ModelEntityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ModelEntityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -37505,13 +36525,6 @@ public static bool SynchronizeTo(this IModelEntityDescriptor source, IModelEntit isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -37559,9 +36572,6 @@ public static void MapTo(this IModelEntityDescriptor source, IModelEntityDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -37621,7 +36631,8 @@ public static bool SynchronizeTo(this IMonitoredDescriptor source, IMonitoredDes // Detect primary key changes if ( - (target.MonitoredDescriptorId != source.MonitoredDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MonitoredDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -37666,13 +36677,6 @@ public static bool SynchronizeTo(this IMonitoredDescriptor source, IMonitoredDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -37720,9 +36724,6 @@ public static void MapTo(this IMonitoredDescriptor source, IMonitoredDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -37782,7 +36783,8 @@ public static bool SynchronizeTo(this INeglectedOrDelinquentProgramDescriptor so // Detect primary key changes if ( - (target.NeglectedOrDelinquentProgramDescriptorId != source.NeglectedOrDelinquentProgramDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on NeglectedOrDelinquentProgramDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -37827,13 +36829,6 @@ public static bool SynchronizeTo(this INeglectedOrDelinquentProgramDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -37881,9 +36876,6 @@ public static void MapTo(this INeglectedOrDelinquentProgramDescriptor source, IN if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -37943,7 +36935,8 @@ public static bool SynchronizeTo(this INeglectedOrDelinquentProgramServiceDescri // Detect primary key changes if ( - (target.NeglectedOrDelinquentProgramServiceDescriptorId != source.NeglectedOrDelinquentProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on NeglectedOrDelinquentProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -37988,13 +36981,6 @@ public static bool SynchronizeTo(this INeglectedOrDelinquentProgramServiceDescri isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -38042,9 +37028,6 @@ public static void MapTo(this INeglectedOrDelinquentProgramServiceDescriptor sou if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -38104,7 +37087,8 @@ public static bool SynchronizeTo(this INetworkPurposeDescriptor source, INetwork // Detect primary key changes if ( - (target.NetworkPurposeDescriptorId != source.NetworkPurposeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on NetworkPurposeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -38149,13 +37133,6 @@ public static bool SynchronizeTo(this INetworkPurposeDescriptor source, INetwork isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -38203,9 +37180,6 @@ public static void MapTo(this INetworkPurposeDescriptor source, INetworkPurposeD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -39046,7 +38020,8 @@ public static bool SynchronizeTo(this IOldEthnicityDescriptor source, IOldEthnic // Detect primary key changes if ( - (target.OldEthnicityDescriptorId != source.OldEthnicityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on OldEthnicityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -39091,13 +38066,6 @@ public static bool SynchronizeTo(this IOldEthnicityDescriptor source, IOldEthnic isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -39145,9 +38113,6 @@ public static void MapTo(this IOldEthnicityDescriptor source, IOldEthnicityDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -39548,7 +38513,8 @@ public static bool SynchronizeTo(this IOperationalStatusDescriptor source, IOper // Detect primary key changes if ( - (target.OperationalStatusDescriptorId != source.OperationalStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on OperationalStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -39593,13 +38559,6 @@ public static bool SynchronizeTo(this IOperationalStatusDescriptor source, IOper isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -39647,9 +38606,6 @@ public static void MapTo(this IOperationalStatusDescriptor source, IOperationalS if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -40142,7 +39098,8 @@ public static bool SynchronizeTo(this IOtherNameTypeDescriptor source, IOtherNam // Detect primary key changes if ( - (target.OtherNameTypeDescriptorId != source.OtherNameTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on OtherNameTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -40187,13 +39144,6 @@ public static bool SynchronizeTo(this IOtherNameTypeDescriptor source, IOtherNam isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -40241,9 +39191,6 @@ public static void MapTo(this IOtherNameTypeDescriptor source, IOtherNameTypeDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -41646,7 +40593,8 @@ public static bool SynchronizeTo(this IParticipationDescriptor source, IParticip // Detect primary key changes if ( - (target.ParticipationDescriptorId != source.ParticipationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ParticipationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -41691,13 +40639,6 @@ public static bool SynchronizeTo(this IParticipationDescriptor source, IParticip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -41745,9 +40686,6 @@ public static void MapTo(this IParticipationDescriptor source, IParticipationDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -41807,7 +40745,8 @@ public static bool SynchronizeTo(this IParticipationStatusDescriptor source, IPa // Detect primary key changes if ( - (target.ParticipationStatusDescriptorId != source.ParticipationStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ParticipationStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -41852,13 +40791,6 @@ public static bool SynchronizeTo(this IParticipationStatusDescriptor source, IPa isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -41906,9 +40838,6 @@ public static void MapTo(this IParticipationStatusDescriptor source, IParticipat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -41968,7 +40897,8 @@ public static bool SynchronizeTo(this IPerformanceBaseConversionDescriptor sourc // Detect primary key changes if ( - (target.PerformanceBaseConversionDescriptorId != source.PerformanceBaseConversionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PerformanceBaseConversionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42013,13 +40943,6 @@ public static bool SynchronizeTo(this IPerformanceBaseConversionDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42067,9 +40990,6 @@ public static void MapTo(this IPerformanceBaseConversionDescriptor source, IPerf if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -42129,7 +41049,8 @@ public static bool SynchronizeTo(this IPerformanceLevelDescriptor source, IPerfo // Detect primary key changes if ( - (target.PerformanceLevelDescriptorId != source.PerformanceLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PerformanceLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42174,13 +41095,6 @@ public static bool SynchronizeTo(this IPerformanceLevelDescriptor source, IPerfo isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42228,9 +41142,6 @@ public static void MapTo(this IPerformanceLevelDescriptor source, IPerformanceLe if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -42380,7 +41291,8 @@ public static bool SynchronizeTo(this IPersonalInformationVerificationDescriptor // Detect primary key changes if ( - (target.PersonalInformationVerificationDescriptorId != source.PersonalInformationVerificationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PersonalInformationVerificationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42425,13 +41337,6 @@ public static bool SynchronizeTo(this IPersonalInformationVerificationDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42479,9 +41384,6 @@ public static void MapTo(this IPersonalInformationVerificationDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -42541,7 +41443,8 @@ public static bool SynchronizeTo(this IPlatformTypeDescriptor source, IPlatformT // Detect primary key changes if ( - (target.PlatformTypeDescriptorId != source.PlatformTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PlatformTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42586,13 +41489,6 @@ public static bool SynchronizeTo(this IPlatformTypeDescriptor source, IPlatformT isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42640,9 +41536,6 @@ public static void MapTo(this IPlatformTypeDescriptor source, IPlatformTypeDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -42702,7 +41595,8 @@ public static bool SynchronizeTo(this IPopulationServedDescriptor source, IPopul // Detect primary key changes if ( - (target.PopulationServedDescriptorId != source.PopulationServedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PopulationServedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42747,13 +41641,6 @@ public static bool SynchronizeTo(this IPopulationServedDescriptor source, IPopul isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42801,9 +41688,6 @@ public static void MapTo(this IPopulationServedDescriptor source, IPopulationSer if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -42863,7 +41747,8 @@ public static bool SynchronizeTo(this IPostingResultDescriptor source, IPostingR // Detect primary key changes if ( - (target.PostingResultDescriptorId != source.PostingResultDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PostingResultDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42908,13 +41793,6 @@ public static bool SynchronizeTo(this IPostingResultDescriptor source, IPostingR isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42962,9 +41840,6 @@ public static void MapTo(this IPostingResultDescriptor source, IPostingResultDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -43132,7 +42007,8 @@ public static bool SynchronizeTo(this IPostSecondaryEventCategoryDescriptor sour // Detect primary key changes if ( - (target.PostSecondaryEventCategoryDescriptorId != source.PostSecondaryEventCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PostSecondaryEventCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -43177,13 +42053,6 @@ public static bool SynchronizeTo(this IPostSecondaryEventCategoryDescriptor sour isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -43231,9 +42100,6 @@ public static void MapTo(this IPostSecondaryEventCategoryDescriptor source, IPos if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -43619,7 +42485,8 @@ public static bool SynchronizeTo(this IPostSecondaryInstitutionLevelDescriptor s // Detect primary key changes if ( - (target.PostSecondaryInstitutionLevelDescriptorId != source.PostSecondaryInstitutionLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PostSecondaryInstitutionLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -43664,13 +42531,6 @@ public static bool SynchronizeTo(this IPostSecondaryInstitutionLevelDescriptor s isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -43718,9 +42578,6 @@ public static void MapTo(this IPostSecondaryInstitutionLevelDescriptor source, I if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -43780,7 +42637,8 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceAccessDescriptor sou // Detect primary key changes if ( - (target.PrimaryLearningDeviceAccessDescriptorId != source.PrimaryLearningDeviceAccessDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PrimaryLearningDeviceAccessDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -43825,13 +42683,6 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceAccessDescriptor sou isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -43879,9 +42730,6 @@ public static void MapTo(this IPrimaryLearningDeviceAccessDescriptor source, IPr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -43941,7 +42789,8 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceAwayFromSchoolDescri // Detect primary key changes if ( - (target.PrimaryLearningDeviceAwayFromSchoolDescriptorId != source.PrimaryLearningDeviceAwayFromSchoolDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PrimaryLearningDeviceAwayFromSchoolDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -43986,13 +42835,6 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceAwayFromSchoolDescri isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -44040,9 +42882,6 @@ public static void MapTo(this IPrimaryLearningDeviceAwayFromSchoolDescriptor sou if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -44102,7 +42941,8 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceProviderDescriptor s // Detect primary key changes if ( - (target.PrimaryLearningDeviceProviderDescriptorId != source.PrimaryLearningDeviceProviderDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PrimaryLearningDeviceProviderDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -44147,13 +42987,6 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceProviderDescriptor s isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -44201,9 +43034,6 @@ public static void MapTo(this IPrimaryLearningDeviceProviderDescriptor source, I if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -44263,7 +43093,8 @@ public static bool SynchronizeTo(this IProficiencyDescriptor source, IProficienc // Detect primary key changes if ( - (target.ProficiencyDescriptorId != source.ProficiencyDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProficiencyDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -44308,13 +43139,6 @@ public static bool SynchronizeTo(this IProficiencyDescriptor source, IProficienc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -44362,9 +43186,6 @@ public static void MapTo(this IProficiencyDescriptor source, IProficiencyDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -44983,7 +43804,8 @@ public static bool SynchronizeTo(this IProgramAssignmentDescriptor source, IProg // Detect primary key changes if ( - (target.ProgramAssignmentDescriptorId != source.ProgramAssignmentDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgramAssignmentDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -45028,13 +43850,6 @@ public static bool SynchronizeTo(this IProgramAssignmentDescriptor source, IProg isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -45082,9 +43897,6 @@ public static void MapTo(this IProgramAssignmentDescriptor source, IProgramAssig if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -45144,7 +43956,8 @@ public static bool SynchronizeTo(this IProgramCharacteristicDescriptor source, I // Detect primary key changes if ( - (target.ProgramCharacteristicDescriptorId != source.ProgramCharacteristicDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgramCharacteristicDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -45189,13 +44002,6 @@ public static bool SynchronizeTo(this IProgramCharacteristicDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -45243,9 +44049,6 @@ public static void MapTo(this IProgramCharacteristicDescriptor source, IProgramC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -45492,7 +44295,8 @@ public static bool SynchronizeTo(this IProgramSponsorDescriptor source, IProgram // Detect primary key changes if ( - (target.ProgramSponsorDescriptorId != source.ProgramSponsorDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgramSponsorDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -45537,13 +44341,6 @@ public static bool SynchronizeTo(this IProgramSponsorDescriptor source, IProgram isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -45591,9 +44388,6 @@ public static void MapTo(this IProgramSponsorDescriptor source, IProgramSponsorD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -45653,7 +44447,8 @@ public static bool SynchronizeTo(this IProgramTypeDescriptor source, IProgramTyp // Detect primary key changes if ( - (target.ProgramTypeDescriptorId != source.ProgramTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgramTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -45698,13 +44493,6 @@ public static bool SynchronizeTo(this IProgramTypeDescriptor source, IProgramTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -45752,9 +44540,6 @@ public static void MapTo(this IProgramTypeDescriptor source, IProgramTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -45814,7 +44599,8 @@ public static bool SynchronizeTo(this IProgressDescriptor source, IProgressDescr // Detect primary key changes if ( - (target.ProgressDescriptorId != source.ProgressDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgressDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -45859,13 +44645,6 @@ public static bool SynchronizeTo(this IProgressDescriptor source, IProgressDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -45913,9 +44692,6 @@ public static void MapTo(this IProgressDescriptor source, IProgressDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -45975,7 +44751,8 @@ public static bool SynchronizeTo(this IProgressLevelDescriptor source, IProgress // Detect primary key changes if ( - (target.ProgressLevelDescriptorId != source.ProgressLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgressLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46020,13 +44797,6 @@ public static bool SynchronizeTo(this IProgressLevelDescriptor source, IProgress isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46074,9 +44844,6 @@ public static void MapTo(this IProgressLevelDescriptor source, IProgressLevelDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -46323,7 +45090,8 @@ public static bool SynchronizeTo(this IProviderCategoryDescriptor source, IProvi // Detect primary key changes if ( - (target.ProviderCategoryDescriptorId != source.ProviderCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProviderCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46368,13 +45136,6 @@ public static bool SynchronizeTo(this IProviderCategoryDescriptor source, IProvi isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46422,9 +45183,6 @@ public static void MapTo(this IProviderCategoryDescriptor source, IProviderCateg if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -46484,7 +45242,8 @@ public static bool SynchronizeTo(this IProviderProfitabilityDescriptor source, I // Detect primary key changes if ( - (target.ProviderProfitabilityDescriptorId != source.ProviderProfitabilityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProviderProfitabilityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46529,13 +45288,6 @@ public static bool SynchronizeTo(this IProviderProfitabilityDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46583,9 +45335,6 @@ public static void MapTo(this IProviderProfitabilityDescriptor source, IProvider if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -46645,7 +45394,8 @@ public static bool SynchronizeTo(this IProviderStatusDescriptor source, IProvide // Detect primary key changes if ( - (target.ProviderStatusDescriptorId != source.ProviderStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProviderStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46690,13 +45440,6 @@ public static bool SynchronizeTo(this IProviderStatusDescriptor source, IProvide isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46744,9 +45487,6 @@ public static void MapTo(this IProviderStatusDescriptor source, IProviderStatusD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -46806,7 +45546,8 @@ public static bool SynchronizeTo(this IPublicationStatusDescriptor source, IPubl // Detect primary key changes if ( - (target.PublicationStatusDescriptorId != source.PublicationStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PublicationStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46851,13 +45592,6 @@ public static bool SynchronizeTo(this IPublicationStatusDescriptor source, IPubl isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46905,9 +45639,6 @@ public static void MapTo(this IPublicationStatusDescriptor source, IPublicationS if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -46967,7 +45698,8 @@ public static bool SynchronizeTo(this IQuestionFormDescriptor source, IQuestionF // Detect primary key changes if ( - (target.QuestionFormDescriptorId != source.QuestionFormDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on QuestionFormDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47012,13 +45744,6 @@ public static bool SynchronizeTo(this IQuestionFormDescriptor source, IQuestionF isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47066,9 +45791,6 @@ public static void MapTo(this IQuestionFormDescriptor source, IQuestionFormDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47128,7 +45850,8 @@ public static bool SynchronizeTo(this IRaceDescriptor source, IRaceDescriptor ta // Detect primary key changes if ( - (target.RaceDescriptorId != source.RaceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RaceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47173,13 +45896,6 @@ public static bool SynchronizeTo(this IRaceDescriptor source, IRaceDescriptor ta isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47227,9 +45943,6 @@ public static void MapTo(this IRaceDescriptor source, IRaceDescriptor target, Ac if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47289,7 +46002,8 @@ public static bool SynchronizeTo(this IReasonExitedDescriptor source, IReasonExi // Detect primary key changes if ( - (target.ReasonExitedDescriptorId != source.ReasonExitedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ReasonExitedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47334,13 +46048,6 @@ public static bool SynchronizeTo(this IReasonExitedDescriptor source, IReasonExi isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47388,9 +46095,6 @@ public static void MapTo(this IReasonExitedDescriptor source, IReasonExitedDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47450,7 +46154,8 @@ public static bool SynchronizeTo(this IReasonNotTestedDescriptor source, IReason // Detect primary key changes if ( - (target.ReasonNotTestedDescriptorId != source.ReasonNotTestedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ReasonNotTestedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47495,13 +46200,6 @@ public static bool SynchronizeTo(this IReasonNotTestedDescriptor source, IReason isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47549,9 +46247,6 @@ public static void MapTo(this IReasonNotTestedDescriptor source, IReasonNotTeste if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47611,7 +46306,8 @@ public static bool SynchronizeTo(this IRecognitionTypeDescriptor source, IRecogn // Detect primary key changes if ( - (target.RecognitionTypeDescriptorId != source.RecognitionTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RecognitionTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47656,13 +46352,6 @@ public static bool SynchronizeTo(this IRecognitionTypeDescriptor source, IRecogn isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47710,9 +46399,6 @@ public static void MapTo(this IRecognitionTypeDescriptor source, IRecognitionTyp if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47772,7 +46458,8 @@ public static bool SynchronizeTo(this IRelationDescriptor source, IRelationDescr // Detect primary key changes if ( - (target.RelationDescriptorId != source.RelationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RelationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47817,13 +46504,6 @@ public static bool SynchronizeTo(this IRelationDescriptor source, IRelationDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47871,9 +46551,6 @@ public static void MapTo(this IRelationDescriptor source, IRelationDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47933,7 +46610,8 @@ public static bool SynchronizeTo(this IRepeatIdentifierDescriptor source, IRepea // Detect primary key changes if ( - (target.RepeatIdentifierDescriptorId != source.RepeatIdentifierDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RepeatIdentifierDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47978,13 +46656,6 @@ public static bool SynchronizeTo(this IRepeatIdentifierDescriptor source, IRepea isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -48032,9 +46703,6 @@ public static void MapTo(this IRepeatIdentifierDescriptor source, IRepeatIdentif if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -48659,7 +47327,8 @@ public static bool SynchronizeTo(this IReporterDescriptionDescriptor source, IRe // Detect primary key changes if ( - (target.ReporterDescriptionDescriptorId != source.ReporterDescriptionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ReporterDescriptionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -48704,13 +47373,6 @@ public static bool SynchronizeTo(this IReporterDescriptionDescriptor source, IRe isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -48758,9 +47420,6 @@ public static void MapTo(this IReporterDescriptionDescriptor source, IReporterDe if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -48820,7 +47479,8 @@ public static bool SynchronizeTo(this IReportingTagDescriptor source, IReporting // Detect primary key changes if ( - (target.ReportingTagDescriptorId != source.ReportingTagDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ReportingTagDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -48865,13 +47525,6 @@ public static bool SynchronizeTo(this IReportingTagDescriptor source, IReporting isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -48919,9 +47572,6 @@ public static void MapTo(this IReportingTagDescriptor source, IReportingTagDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -48981,7 +47631,8 @@ public static bool SynchronizeTo(this IResidencyStatusDescriptor source, IReside // Detect primary key changes if ( - (target.ResidencyStatusDescriptorId != source.ResidencyStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ResidencyStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -49026,13 +47677,6 @@ public static bool SynchronizeTo(this IResidencyStatusDescriptor source, IReside isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -49080,9 +47724,6 @@ public static void MapTo(this IResidencyStatusDescriptor source, IResidencyStatu if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -49142,7 +47783,8 @@ public static bool SynchronizeTo(this IResponseIndicatorDescriptor source, IResp // Detect primary key changes if ( - (target.ResponseIndicatorDescriptorId != source.ResponseIndicatorDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ResponseIndicatorDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -49187,13 +47829,6 @@ public static bool SynchronizeTo(this IResponseIndicatorDescriptor source, IResp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -49241,9 +47876,6 @@ public static void MapTo(this IResponseIndicatorDescriptor source, IResponseIndi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -49303,7 +47935,8 @@ public static bool SynchronizeTo(this IResponsibilityDescriptor source, IRespons // Detect primary key changes if ( - (target.ResponsibilityDescriptorId != source.ResponsibilityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ResponsibilityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -49348,13 +47981,6 @@ public static bool SynchronizeTo(this IResponsibilityDescriptor source, IRespons isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -49402,9 +48028,6 @@ public static void MapTo(this IResponsibilityDescriptor source, IResponsibilityD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -49767,7 +48390,8 @@ public static bool SynchronizeTo(this IRestraintEventReasonDescriptor source, IR // Detect primary key changes if ( - (target.RestraintEventReasonDescriptorId != source.RestraintEventReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RestraintEventReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -49812,13 +48436,6 @@ public static bool SynchronizeTo(this IRestraintEventReasonDescriptor source, IR isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -49866,9 +48483,6 @@ public static void MapTo(this IRestraintEventReasonDescriptor source, IRestraint if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -49928,7 +48542,8 @@ public static bool SynchronizeTo(this IResultDatatypeTypeDescriptor source, IRes // Detect primary key changes if ( - (target.ResultDatatypeTypeDescriptorId != source.ResultDatatypeTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ResultDatatypeTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -49973,13 +48588,6 @@ public static bool SynchronizeTo(this IResultDatatypeTypeDescriptor source, IRes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -50027,9 +48635,6 @@ public static void MapTo(this IResultDatatypeTypeDescriptor source, IResultDatat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -50089,7 +48694,8 @@ public static bool SynchronizeTo(this IRetestIndicatorDescriptor source, IRetest // Detect primary key changes if ( - (target.RetestIndicatorDescriptorId != source.RetestIndicatorDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RetestIndicatorDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -50134,13 +48740,6 @@ public static bool SynchronizeTo(this IRetestIndicatorDescriptor source, IRetest isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -50188,9 +48787,6 @@ public static void MapTo(this IRetestIndicatorDescriptor source, IRetestIndicato if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -50740,7 +49336,8 @@ public static bool SynchronizeTo(this ISchoolCategoryDescriptor source, ISchoolC // Detect primary key changes if ( - (target.SchoolCategoryDescriptorId != source.SchoolCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SchoolCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -50785,13 +49382,6 @@ public static bool SynchronizeTo(this ISchoolCategoryDescriptor source, ISchoolC isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -50839,9 +49429,6 @@ public static void MapTo(this ISchoolCategoryDescriptor source, ISchoolCategoryD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -50901,7 +49488,8 @@ public static bool SynchronizeTo(this ISchoolChoiceImplementStatusDescriptor sou // Detect primary key changes if ( - (target.SchoolChoiceImplementStatusDescriptorId != source.SchoolChoiceImplementStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SchoolChoiceImplementStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -50946,13 +49534,6 @@ public static bool SynchronizeTo(this ISchoolChoiceImplementStatusDescriptor sou isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -51000,9 +49581,6 @@ public static void MapTo(this ISchoolChoiceImplementStatusDescriptor source, ISc if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -51062,7 +49640,8 @@ public static bool SynchronizeTo(this ISchoolFoodServiceProgramServiceDescriptor // Detect primary key changes if ( - (target.SchoolFoodServiceProgramServiceDescriptorId != source.SchoolFoodServiceProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SchoolFoodServiceProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -51107,13 +49686,6 @@ public static bool SynchronizeTo(this ISchoolFoodServiceProgramServiceDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -51161,9 +49733,6 @@ public static void MapTo(this ISchoolFoodServiceProgramServiceDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -51223,7 +49792,8 @@ public static bool SynchronizeTo(this ISchoolTypeDescriptor source, ISchoolTypeD // Detect primary key changes if ( - (target.SchoolTypeDescriptorId != source.SchoolTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SchoolTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -51268,13 +49838,6 @@ public static bool SynchronizeTo(this ISchoolTypeDescriptor source, ISchoolTypeD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -51322,9 +49885,6 @@ public static void MapTo(this ISchoolTypeDescriptor source, ISchoolTypeDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -52330,7 +50890,8 @@ public static bool SynchronizeTo(this ISectionCharacteristicDescriptor source, I // Detect primary key changes if ( - (target.SectionCharacteristicDescriptorId != source.SectionCharacteristicDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SectionCharacteristicDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -52375,13 +50936,6 @@ public static bool SynchronizeTo(this ISectionCharacteristicDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -52429,9 +50983,6 @@ public static void MapTo(this ISectionCharacteristicDescriptor source, ISectionC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -52491,7 +51042,8 @@ public static bool SynchronizeTo(this ISeparationDescriptor source, ISeparationD // Detect primary key changes if ( - (target.SeparationDescriptorId != source.SeparationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SeparationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -52536,13 +51088,6 @@ public static bool SynchronizeTo(this ISeparationDescriptor source, ISeparationD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -52590,9 +51135,6 @@ public static void MapTo(this ISeparationDescriptor source, ISeparationDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -52652,7 +51194,8 @@ public static bool SynchronizeTo(this ISeparationReasonDescriptor source, ISepar // Detect primary key changes if ( - (target.SeparationReasonDescriptorId != source.SeparationReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SeparationReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -52697,13 +51240,6 @@ public static bool SynchronizeTo(this ISeparationReasonDescriptor source, ISepar isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -52751,9 +51287,6 @@ public static void MapTo(this ISeparationReasonDescriptor source, ISeparationRea if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -52813,7 +51346,8 @@ public static bool SynchronizeTo(this IServiceDescriptor source, IServiceDescrip // Detect primary key changes if ( - (target.ServiceDescriptorId != source.ServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -52858,13 +51392,6 @@ public static bool SynchronizeTo(this IServiceDescriptor source, IServiceDescrip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -52912,9 +51439,6 @@ public static void MapTo(this IServiceDescriptor source, IServiceDescriptor targ if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -53326,7 +51850,8 @@ public static bool SynchronizeTo(this ISexDescriptor source, ISexDescriptor targ // Detect primary key changes if ( - (target.SexDescriptorId != source.SexDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SexDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -53371,13 +51896,6 @@ public static bool SynchronizeTo(this ISexDescriptor source, ISexDescriptor targ isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -53425,9 +51943,6 @@ public static void MapTo(this ISexDescriptor source, ISexDescriptor target, Acti if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -53674,7 +52189,8 @@ public static bool SynchronizeTo(this ISourceSystemDescriptor source, ISourceSys // Detect primary key changes if ( - (target.SourceSystemDescriptorId != source.SourceSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SourceSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -53719,171 +52235,155 @@ public static bool SynchronizeTo(this ISourceSystemDescriptor source, ISourceSys isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - - if ((mappingContract?.IsShortDescriptionSupported != false) - && target.ShortDescription != source.ShortDescription) - { - target.ShortDescription = source.ShortDescription; - isModified = true; - } - - // Copy non-PK properties - - - // Synch inherited lists - - // Sync lists - - return isModified; - } - - public static void MapTo(this ISourceSystemDescriptor source, ISourceSystemDescriptor target, Action onMapped) - { - // Get the mapping contract for determining what values to map through to target - var mappingContract = (SourceSystemDescriptorMappingContract) GeneratedArtifactStaticDependencies - .MappingContractProvider - .GetMappingContract(_fullName_edfi_SourceSystemDescriptor); - - // Copy resource Id - target.Id = source.Id; - - // Copy contextual primary key values - target.SourceSystemDescriptorId = source.SourceSystemDescriptorId; - - // Copy inherited non-PK properties - - if (mappingContract?.IsCodeValueSupported != false) - target.CodeValue = source.CodeValue; - - if (mappingContract?.IsDescriptionSupported != false) - target.Description = source.Description; - - if (mappingContract?.IsEffectiveBeginDateSupported != false) - target.EffectiveBeginDate = source.EffectiveBeginDate; - - if (mappingContract?.IsEffectiveEndDateSupported != false) - target.EffectiveEndDate = source.EffectiveEndDate; - - if (mappingContract?.IsNamespaceSupported != false) - target.Namespace = source.Namespace; - - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - - if (mappingContract?.IsShortDescriptionSupported != false) - target.ShortDescription = source.ShortDescription; - - // Copy non-PK properties - - // Copy Aggregate Reference Data - - - // ---------------------------------- - // Map One-to-one relationships - // ---------------------------------- - - // Map inherited lists - - // Map lists - - - // Convert source to an ETag, if appropriate - if (target is IHasETag entityWithETag) - entityWithETag.ETag = GeneratedArtifactStaticDependencies.ETagProvider.GetETag(source); - - // Copy/assign LastModifiedDate, if appropriate - if (target is IDateVersionedEntity targetDateVersionedEntity) - { - if (source is IHasETag etagSource) - { - // Convert resource's supplied eTag value to entity's LastModifiedDate - targetDateVersionedEntity.LastModifiedDate = GeneratedArtifactStaticDependencies.ETagProvider.GetDateTime(etagSource.ETag); - } - else if (source is IDateVersionedEntity sourceDateVersionedEntity) - { - // Copy LastModifiedDate, when mapping from entities to resources/entities - targetDateVersionedEntity.LastModifiedDate = sourceDateVersionedEntity.LastModifiedDate; - } - } - } - } - -} -// Aggregate: SpecialEducationProgramServiceDescriptor - -namespace EdFi.Ods.Entities.Common.EdFi //.SpecialEducationProgramServiceDescriptorAggregate -{ - [ExcludeFromCodeCoverage] - public static class SpecialEducationProgramServiceDescriptorMapper - { - private static readonly FullName _fullName_edfi_SpecialEducationProgramServiceDescriptor = new FullName("edfi", "SpecialEducationProgramServiceDescriptor"); - - public static bool SynchronizeTo(this ISpecialEducationProgramServiceDescriptor source, ISpecialEducationProgramServiceDescriptor target) - { - bool isModified = false; - - // Get the mapping contract for knowing what values to synchronize through to target entity - var mappingContract = (SpecialEducationProgramServiceDescriptorMappingContract) GeneratedArtifactStaticDependencies - .MappingContractProvider - .GetMappingContract(_fullName_edfi_SpecialEducationProgramServiceDescriptor); - - // Detect primary key changes - if ( - (target.SpecialEducationProgramServiceDescriptorId != source.SpecialEducationProgramServiceDescriptorId)) - { - // Disallow PK column updates on SpecialEducationProgramServiceDescriptor - throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); - } - - - // Copy inherited non-PK properties - - - if ((mappingContract?.IsCodeValueSupported != false) - && target.CodeValue != source.CodeValue) - { - target.CodeValue = source.CodeValue; - isModified = true; - } - - if ((mappingContract?.IsDescriptionSupported != false) - && target.Description != source.Description) - { - target.Description = source.Description; - isModified = true; - } - - if ((mappingContract?.IsEffectiveBeginDateSupported != false) - && target.EffectiveBeginDate != source.EffectiveBeginDate) - { - target.EffectiveBeginDate = source.EffectiveBeginDate; - isModified = true; - } - - if ((mappingContract?.IsEffectiveEndDateSupported != false) - && target.EffectiveEndDate != source.EffectiveEndDate) - { - target.EffectiveEndDate = source.EffectiveEndDate; - isModified = true; - } - - if ((mappingContract?.IsNamespaceSupported != false) - && target.Namespace != source.Namespace) - { - target.Namespace = source.Namespace; - isModified = true; - } - - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) + if ((mappingContract?.IsShortDescriptionSupported != false) + && target.ShortDescription != source.ShortDescription) { - target.PriorDescriptorId = source.PriorDescriptorId; + target.ShortDescription = source.ShortDescription; + isModified = true; + } + + // Copy non-PK properties + + + // Synch inherited lists + + // Sync lists + + return isModified; + } + + public static void MapTo(this ISourceSystemDescriptor source, ISourceSystemDescriptor target, Action onMapped) + { + // Get the mapping contract for determining what values to map through to target + var mappingContract = (SourceSystemDescriptorMappingContract) GeneratedArtifactStaticDependencies + .MappingContractProvider + .GetMappingContract(_fullName_edfi_SourceSystemDescriptor); + + // Copy resource Id + target.Id = source.Id; + + // Copy contextual primary key values + target.SourceSystemDescriptorId = source.SourceSystemDescriptorId; + + // Copy inherited non-PK properties + + if (mappingContract?.IsCodeValueSupported != false) + target.CodeValue = source.CodeValue; + + if (mappingContract?.IsDescriptionSupported != false) + target.Description = source.Description; + + if (mappingContract?.IsEffectiveBeginDateSupported != false) + target.EffectiveBeginDate = source.EffectiveBeginDate; + + if (mappingContract?.IsEffectiveEndDateSupported != false) + target.EffectiveEndDate = source.EffectiveEndDate; + + if (mappingContract?.IsNamespaceSupported != false) + target.Namespace = source.Namespace; + + if (mappingContract?.IsShortDescriptionSupported != false) + target.ShortDescription = source.ShortDescription; + + // Copy non-PK properties + + // Copy Aggregate Reference Data + + + // ---------------------------------- + // Map One-to-one relationships + // ---------------------------------- + + // Map inherited lists + + // Map lists + + + // Convert source to an ETag, if appropriate + if (target is IHasETag entityWithETag) + entityWithETag.ETag = GeneratedArtifactStaticDependencies.ETagProvider.GetETag(source); + + // Copy/assign LastModifiedDate, if appropriate + if (target is IDateVersionedEntity targetDateVersionedEntity) + { + if (source is IHasETag etagSource) + { + // Convert resource's supplied eTag value to entity's LastModifiedDate + targetDateVersionedEntity.LastModifiedDate = GeneratedArtifactStaticDependencies.ETagProvider.GetDateTime(etagSource.ETag); + } + else if (source is IDateVersionedEntity sourceDateVersionedEntity) + { + // Copy LastModifiedDate, when mapping from entities to resources/entities + targetDateVersionedEntity.LastModifiedDate = sourceDateVersionedEntity.LastModifiedDate; + } + } + } + } + +} +// Aggregate: SpecialEducationProgramServiceDescriptor + +namespace EdFi.Ods.Entities.Common.EdFi //.SpecialEducationProgramServiceDescriptorAggregate +{ + [ExcludeFromCodeCoverage] + public static class SpecialEducationProgramServiceDescriptorMapper + { + private static readonly FullName _fullName_edfi_SpecialEducationProgramServiceDescriptor = new FullName("edfi", "SpecialEducationProgramServiceDescriptor"); + + public static bool SynchronizeTo(this ISpecialEducationProgramServiceDescriptor source, ISpecialEducationProgramServiceDescriptor target) + { + bool isModified = false; + + // Get the mapping contract for knowing what values to synchronize through to target entity + var mappingContract = (SpecialEducationProgramServiceDescriptorMappingContract) GeneratedArtifactStaticDependencies + .MappingContractProvider + .GetMappingContract(_fullName_edfi_SpecialEducationProgramServiceDescriptor); + + // Detect primary key changes + if ( + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) + { + // Disallow PK column updates on SpecialEducationProgramServiceDescriptor + throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); + } + + + // Copy inherited non-PK properties + + + if ((mappingContract?.IsCodeValueSupported != false) + && target.CodeValue != source.CodeValue) + { + target.CodeValue = source.CodeValue; + isModified = true; + } + + if ((mappingContract?.IsDescriptionSupported != false) + && target.Description != source.Description) + { + target.Description = source.Description; + isModified = true; + } + + if ((mappingContract?.IsEffectiveBeginDateSupported != false) + && target.EffectiveBeginDate != source.EffectiveBeginDate) + { + target.EffectiveBeginDate = source.EffectiveBeginDate; + isModified = true; + } + + if ((mappingContract?.IsEffectiveEndDateSupported != false) + && target.EffectiveEndDate != source.EffectiveEndDate) + { + target.EffectiveEndDate = source.EffectiveEndDate; + isModified = true; + } + + if ((mappingContract?.IsNamespaceSupported != false) + && target.Namespace != source.Namespace) + { + target.Namespace = source.Namespace; isModified = true; } @@ -53934,9 +52434,6 @@ public static void MapTo(this ISpecialEducationProgramServiceDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -53996,7 +52493,8 @@ public static bool SynchronizeTo(this ISpecialEducationSettingDescriptor source, // Detect primary key changes if ( - (target.SpecialEducationSettingDescriptorId != source.SpecialEducationSettingDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SpecialEducationSettingDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -54041,13 +52539,6 @@ public static bool SynchronizeTo(this ISpecialEducationSettingDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -54095,9 +52586,6 @@ public static void MapTo(this ISpecialEducationSettingDescriptor source, ISpecia if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -56582,7 +55070,8 @@ public static bool SynchronizeTo(this IStaffClassificationDescriptor source, ISt // Detect primary key changes if ( - (target.StaffClassificationDescriptorId != source.StaffClassificationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StaffClassificationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -56627,13 +55116,6 @@ public static bool SynchronizeTo(this IStaffClassificationDescriptor source, ISt isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -56681,9 +55163,6 @@ public static void MapTo(this IStaffClassificationDescriptor source, IStaffClass if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -58039,7 +56518,8 @@ public static bool SynchronizeTo(this IStaffIdentificationSystemDescriptor sourc // Detect primary key changes if ( - (target.StaffIdentificationSystemDescriptorId != source.StaffIdentificationSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StaffIdentificationSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -58084,13 +56564,6 @@ public static bool SynchronizeTo(this IStaffIdentificationSystemDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -58138,9 +56611,6 @@ public static void MapTo(this IStaffIdentificationSystemDescriptor source, IStaf if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -58327,7 +56797,8 @@ public static bool SynchronizeTo(this IStaffLeaveEventCategoryDescriptor source, // Detect primary key changes if ( - (target.StaffLeaveEventCategoryDescriptorId != source.StaffLeaveEventCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StaffLeaveEventCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -58372,13 +56843,6 @@ public static bool SynchronizeTo(this IStaffLeaveEventCategoryDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -58426,9 +56890,6 @@ public static void MapTo(this IStaffLeaveEventCategoryDescriptor source, IStaffL if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -59075,7 +57536,8 @@ public static bool SynchronizeTo(this IStateAbbreviationDescriptor source, IStat // Detect primary key changes if ( - (target.StateAbbreviationDescriptorId != source.StateAbbreviationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StateAbbreviationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -59120,13 +57582,6 @@ public static bool SynchronizeTo(this IStateAbbreviationDescriptor source, IStat isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -59174,9 +57629,6 @@ public static void MapTo(this IStateAbbreviationDescriptor source, IStateAbbrevi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -63017,7 +61469,8 @@ public static bool SynchronizeTo(this IStudentCharacteristicDescriptor source, I // Detect primary key changes if ( - (target.StudentCharacteristicDescriptorId != source.StudentCharacteristicDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StudentCharacteristicDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -63062,13 +61515,6 @@ public static bool SynchronizeTo(this IStudentCharacteristicDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -63116,9 +61562,6 @@ public static void MapTo(this IStudentCharacteristicDescriptor source, IStudentC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -67944,7 +66387,8 @@ public static bool SynchronizeTo(this IStudentIdentificationSystemDescriptor sou // Detect primary key changes if ( - (target.StudentIdentificationSystemDescriptorId != source.StudentIdentificationSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StudentIdentificationSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -67989,13 +66433,6 @@ public static bool SynchronizeTo(this IStudentIdentificationSystemDescriptor sou isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -68043,9 +66480,6 @@ public static void MapTo(this IStudentIdentificationSystemDescriptor source, ISt if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -70263,7 +68697,8 @@ public static bool SynchronizeTo(this IStudentParticipationCodeDescriptor source // Detect primary key changes if ( - (target.StudentParticipationCodeDescriptorId != source.StudentParticipationCodeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StudentParticipationCodeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -70308,13 +68743,6 @@ public static bool SynchronizeTo(this IStudentParticipationCodeDescriptor source isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -70362,9 +68790,6 @@ public static void MapTo(this IStudentParticipationCodeDescriptor source, IStude if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -73671,7 +72096,8 @@ public static bool SynchronizeTo(this ISubmissionStatusDescriptor source, ISubmi // Detect primary key changes if ( - (target.SubmissionStatusDescriptorId != source.SubmissionStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SubmissionStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -73716,13 +72142,6 @@ public static bool SynchronizeTo(this ISubmissionStatusDescriptor source, ISubmi isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -73770,9 +72189,6 @@ public static void MapTo(this ISubmissionStatusDescriptor source, ISubmissionSta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -74002,7 +72418,8 @@ public static bool SynchronizeTo(this ISurveyCategoryDescriptor source, ISurveyC // Detect primary key changes if ( - (target.SurveyCategoryDescriptorId != source.SurveyCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SurveyCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -74047,13 +72464,6 @@ public static bool SynchronizeTo(this ISurveyCategoryDescriptor source, ISurveyC isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -74101,9 +72511,6 @@ public static void MapTo(this ISurveyCategoryDescriptor source, ISurveyCategoryD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -74266,7 +72673,8 @@ public static bool SynchronizeTo(this ISurveyLevelDescriptor source, ISurveyLeve // Detect primary key changes if ( - (target.SurveyLevelDescriptorId != source.SurveyLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SurveyLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -74311,13 +72719,6 @@ public static bool SynchronizeTo(this ISurveyLevelDescriptor source, ISurveyLeve isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -74365,9 +72766,6 @@ public static void MapTo(this ISurveyLevelDescriptor source, ISurveyLevelDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -76253,7 +74651,8 @@ public static bool SynchronizeTo(this ITeachingCredentialBasisDescriptor source, // Detect primary key changes if ( - (target.TeachingCredentialBasisDescriptorId != source.TeachingCredentialBasisDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TeachingCredentialBasisDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -76298,13 +74697,6 @@ public static bool SynchronizeTo(this ITeachingCredentialBasisDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -76352,9 +74744,6 @@ public static void MapTo(this ITeachingCredentialBasisDescriptor source, ITeachi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -76414,7 +74803,8 @@ public static bool SynchronizeTo(this ITeachingCredentialDescriptor source, ITea // Detect primary key changes if ( - (target.TeachingCredentialDescriptorId != source.TeachingCredentialDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TeachingCredentialDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -76459,13 +74849,6 @@ public static bool SynchronizeTo(this ITeachingCredentialDescriptor source, ITea isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -76513,9 +74896,6 @@ public static void MapTo(this ITeachingCredentialDescriptor source, ITeachingCre if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -76575,7 +74955,8 @@ public static bool SynchronizeTo(this ITechnicalSkillsAssessmentDescriptor sourc // Detect primary key changes if ( - (target.TechnicalSkillsAssessmentDescriptorId != source.TechnicalSkillsAssessmentDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TechnicalSkillsAssessmentDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -76620,13 +75001,6 @@ public static bool SynchronizeTo(this ITechnicalSkillsAssessmentDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -76674,9 +75048,6 @@ public static void MapTo(this ITechnicalSkillsAssessmentDescriptor source, ITech if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -76736,7 +75107,8 @@ public static bool SynchronizeTo(this ITelephoneNumberTypeDescriptor source, ITe // Detect primary key changes if ( - (target.TelephoneNumberTypeDescriptorId != source.TelephoneNumberTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TelephoneNumberTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -76781,13 +75153,6 @@ public static bool SynchronizeTo(this ITelephoneNumberTypeDescriptor source, ITe isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -76835,9 +75200,6 @@ public static void MapTo(this ITelephoneNumberTypeDescriptor source, ITelephoneN if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -76897,7 +75259,8 @@ public static bool SynchronizeTo(this ITermDescriptor source, ITermDescriptor ta // Detect primary key changes if ( - (target.TermDescriptorId != source.TermDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TermDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -76942,13 +75305,6 @@ public static bool SynchronizeTo(this ITermDescriptor source, ITermDescriptor ta isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -76996,9 +75352,6 @@ public static void MapTo(this ITermDescriptor source, ITermDescriptor target, Ac if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77058,7 +75411,8 @@ public static bool SynchronizeTo(this ITitleIPartAParticipantDescriptor source, // Detect primary key changes if ( - (target.TitleIPartAParticipantDescriptorId != source.TitleIPartAParticipantDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TitleIPartAParticipantDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77103,13 +75457,6 @@ public static bool SynchronizeTo(this ITitleIPartAParticipantDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77157,9 +75504,6 @@ public static void MapTo(this ITitleIPartAParticipantDescriptor source, ITitleIP if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77219,7 +75563,8 @@ public static bool SynchronizeTo(this ITitleIPartAProgramServiceDescriptor sourc // Detect primary key changes if ( - (target.TitleIPartAProgramServiceDescriptorId != source.TitleIPartAProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TitleIPartAProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77264,13 +75609,6 @@ public static bool SynchronizeTo(this ITitleIPartAProgramServiceDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77318,9 +75656,6 @@ public static void MapTo(this ITitleIPartAProgramServiceDescriptor source, ITitl if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77380,7 +75715,8 @@ public static bool SynchronizeTo(this ITitleIPartASchoolDesignationDescriptor so // Detect primary key changes if ( - (target.TitleIPartASchoolDesignationDescriptorId != source.TitleIPartASchoolDesignationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TitleIPartASchoolDesignationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77425,13 +75761,6 @@ public static bool SynchronizeTo(this ITitleIPartASchoolDesignationDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77479,9 +75808,6 @@ public static void MapTo(this ITitleIPartASchoolDesignationDescriptor source, IT if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77541,7 +75867,8 @@ public static bool SynchronizeTo(this ITribalAffiliationDescriptor source, ITrib // Detect primary key changes if ( - (target.TribalAffiliationDescriptorId != source.TribalAffiliationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TribalAffiliationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77586,13 +75913,6 @@ public static bool SynchronizeTo(this ITribalAffiliationDescriptor source, ITrib isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77640,9 +75960,6 @@ public static void MapTo(this ITribalAffiliationDescriptor source, ITribalAffili if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77702,7 +76019,8 @@ public static bool SynchronizeTo(this IVisaDescriptor source, IVisaDescriptor ta // Detect primary key changes if ( - (target.VisaDescriptorId != source.VisaDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on VisaDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77747,13 +76065,6 @@ public static bool SynchronizeTo(this IVisaDescriptor source, IVisaDescriptor ta isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77801,9 +76112,6 @@ public static void MapTo(this IVisaDescriptor source, IVisaDescriptor target, Ac if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77863,7 +76171,8 @@ public static bool SynchronizeTo(this IWeaponDescriptor source, IWeaponDescripto // Detect primary key changes if ( - (target.WeaponDescriptorId != source.WeaponDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on WeaponDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77908,13 +76217,6 @@ public static bool SynchronizeTo(this IWeaponDescriptor source, IWeaponDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77962,9 +76264,6 @@ public static void MapTo(this IWeaponDescriptor source, IWeaponDescriptor target if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Resources_Resources.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Resources_Resources.generated.approved.cs index dffdd9dac6..115d25c095 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Resources_Resources.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/4.0.0/DataStandard_400_ApprovalTests.Verify.Standard_Std_4.0.0_Resources_Resources.generated.approved.cs @@ -68,7 +68,7 @@ public class AbsenceEventCategoryDescriptor : Entities.Common.EdFi.IAbsenceEvent /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="absenceEventCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AbsenceEventCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -163,13 +163,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -339,7 +332,7 @@ public class AcademicHonorCategoryDescriptor : Entities.Common.EdFi.IAcademicHon /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="academicHonorCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AcademicHonorCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -434,13 +427,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -610,7 +596,7 @@ public class AcademicSubjectDescriptor : Entities.Common.EdFi.IAcademicSubjectDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="academicSubjectDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AcademicSubjectDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -705,13 +691,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -1309,7 +1288,7 @@ public class AccommodationDescriptor : Entities.Common.EdFi.IAccommodationDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="accommodationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AccommodationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -1404,13 +1383,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -2082,7 +2054,7 @@ public class AccountTypeDescriptor : Entities.Common.EdFi.IAccountTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="accountTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AccountTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -2177,13 +2149,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -2353,7 +2318,7 @@ public class AchievementCategoryDescriptor : Entities.Common.EdFi.IAchievementCa /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="achievementCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AchievementCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -2448,13 +2413,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -2624,7 +2582,7 @@ public class AdditionalCreditTypeDescriptor : Entities.Common.EdFi.IAdditionalCr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="additionalCreditTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AdditionalCreditTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -2719,13 +2677,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -2895,7 +2846,7 @@ public class AddressTypeDescriptor : Entities.Common.EdFi.IAddressTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="addressTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AddressTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -2990,13 +2941,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -3166,7 +3110,7 @@ public class AdministrationEnvironmentDescriptor : Entities.Common.EdFi.IAdminis /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="administrationEnvironmentDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AdministrationEnvironmentDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -3261,13 +3205,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -3437,7 +3374,7 @@ public class AdministrativeFundingControlDescriptor : Entities.Common.EdFi.IAdmi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="administrativeFundingControlDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AdministrativeFundingControlDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -3532,13 +3469,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -3708,7 +3638,7 @@ public class AncestryEthnicOriginDescriptor : Entities.Common.EdFi.IAncestryEthn /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="ancestryEthnicOriginDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AncestryEthnicOriginDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -3803,13 +3733,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -8302,7 +8225,7 @@ public class AssessmentCategoryDescriptor : Entities.Common.EdFi.IAssessmentCate /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -8397,13 +8320,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -8573,7 +8489,7 @@ public class AssessmentIdentificationSystemDescriptor : Entities.Common.EdFi.IAs /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentIdentificationSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentIdentificationSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -8668,13 +8584,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -9975,7 +9884,7 @@ public class AssessmentItemCategoryDescriptor : Entities.Common.EdFi.IAssessment /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentItemCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentItemCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -10070,13 +9979,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -10246,7 +10148,7 @@ public class AssessmentItemResultDescriptor : Entities.Common.EdFi.IAssessmentIt /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentItemResultDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentItemResultDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -10341,13 +10243,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -10517,7 +10412,7 @@ public class AssessmentPeriodDescriptor : Entities.Common.EdFi.IAssessmentPeriod /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentPeriodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentPeriodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -10612,13 +10507,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -10788,7 +10676,7 @@ public class AssessmentReportingMethodDescriptor : Entities.Common.EdFi.IAssessm /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentReportingMethodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentReportingMethodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -10883,13 +10771,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -12014,7 +11895,7 @@ public class AssignmentLateStatusDescriptor : Entities.Common.EdFi.IAssignmentLa /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assignmentLateStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssignmentLateStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -12109,13 +11990,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -12285,7 +12159,7 @@ public class AttemptStatusDescriptor : Entities.Common.EdFi.IAttemptStatusDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="attemptStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AttemptStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -12380,13 +12254,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -12556,7 +12423,7 @@ public class AttendanceEventCategoryDescriptor : Entities.Common.EdFi.IAttendanc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="attendanceEventCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AttendanceEventCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -12651,13 +12518,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -13482,7 +13342,7 @@ public class BarrierToInternetAccessInResidenceDescriptor : Entities.Common.EdFi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="barrierToInternetAccessInResidenceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int BarrierToInternetAccessInResidenceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -13577,13 +13437,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -13753,7 +13606,7 @@ public class BehaviorDescriptor : Entities.Common.EdFi.IBehaviorDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="behaviorDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int BehaviorDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -13848,13 +13701,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -16937,7 +16783,7 @@ public class CalendarEventDescriptor : Entities.Common.EdFi.ICalendarEventDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="calendarEventDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CalendarEventDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17032,13 +16878,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -17208,7 +17047,7 @@ public class CalendarTypeDescriptor : Entities.Common.EdFi.ICalendarTypeDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="calendarTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CalendarTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17303,13 +17142,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -17479,7 +17311,7 @@ public class CareerPathwayDescriptor : Entities.Common.EdFi.ICareerPathwayDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="careerPathwayDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CareerPathwayDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17574,13 +17406,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -17750,7 +17575,7 @@ public class CharterApprovalAgencyTypeDescriptor : Entities.Common.EdFi.ICharter /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="charterApprovalAgencyTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CharterApprovalAgencyTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17845,13 +17670,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -18021,7 +17839,7 @@ public class CharterStatusDescriptor : Entities.Common.EdFi.ICharterStatusDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="charterStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CharterStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -18116,13 +17934,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -19756,7 +19567,7 @@ public class CitizenshipStatusDescriptor : Entities.Common.EdFi.ICitizenshipStat /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="citizenshipStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CitizenshipStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -19851,13 +19662,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -20735,7 +20539,7 @@ public class ClassroomPositionDescriptor : Entities.Common.EdFi.IClassroomPositi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="classroomPositionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ClassroomPositionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -20830,13 +20634,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -21854,7 +21651,7 @@ public class CohortScopeDescriptor : Entities.Common.EdFi.ICohortScopeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="cohortScopeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CohortScopeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -21949,13 +21746,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -22125,7 +21915,7 @@ public class CohortTypeDescriptor : Entities.Common.EdFi.ICohortTypeDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="cohortTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CohortTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -22220,13 +22010,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -22396,7 +22179,7 @@ public class CohortYearTypeDescriptor : Entities.Common.EdFi.ICohortYearTypeDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="cohortYearTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CohortYearTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -22491,13 +22274,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -24474,7 +24250,7 @@ public class CompetencyLevelDescriptor : Entities.Common.EdFi.ICompetencyLevelDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="competencyLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CompetencyLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -24569,13 +24345,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -25183,7 +24952,7 @@ public class ContactTypeDescriptor : Entities.Common.EdFi.IContactTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="contactTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ContactTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -25278,13 +25047,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -25454,7 +25216,7 @@ public class ContentClassDescriptor : Entities.Common.EdFi.IContentClassDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="contentClassDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ContentClassDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -25549,13 +25311,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -25725,7 +25480,7 @@ public class ContinuationOfServicesReasonDescriptor : Entities.Common.EdFi.ICont /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="continuationOfServicesReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ContinuationOfServicesReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -25820,13 +25575,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -25996,7 +25744,7 @@ public class CostRateDescriptor : Entities.Common.EdFi.ICostRateDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="costRateDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CostRateDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -26091,13 +25839,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -26267,7 +26008,7 @@ public class CountryDescriptor : Entities.Common.EdFi.ICountryDescriptor, Entiti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="countryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CountryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -26362,13 +26103,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -28939,7 +28673,7 @@ public class CourseAttemptResultDescriptor : Entities.Common.EdFi.ICourseAttempt /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseAttemptResultDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseAttemptResultDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -29034,13 +28768,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -29210,7 +28937,7 @@ public class CourseDefinedByDescriptor : Entities.Common.EdFi.ICourseDefinedByDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseDefinedByDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseDefinedByDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -29305,13 +29032,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -29481,7 +29201,7 @@ public class CourseGPAApplicabilityDescriptor : Entities.Common.EdFi.ICourseGPAA /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseGPAApplicabilityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseGPAApplicabilityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -29576,13 +29296,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -29752,7 +29465,7 @@ public class CourseIdentificationSystemDescriptor : Entities.Common.EdFi.ICourse /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseIdentificationSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseIdentificationSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -29847,13 +29560,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -30023,7 +29729,7 @@ public class CourseLevelCharacteristicDescriptor : Entities.Common.EdFi.ICourseL /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseLevelCharacteristicDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseLevelCharacteristicDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -30118,13 +29824,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -31808,7 +31507,7 @@ public class CourseRepeatCodeDescriptor : Entities.Common.EdFi.ICourseRepeatCode /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseRepeatCodeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseRepeatCodeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -31903,13 +31602,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -35687,7 +35379,7 @@ public class CredentialFieldDescriptor : Entities.Common.EdFi.ICredentialFieldDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="credentialFieldDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CredentialFieldDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -35782,13 +35474,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -35958,7 +35643,7 @@ public class CredentialTypeDescriptor : Entities.Common.EdFi.ICredentialTypeDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="credentialTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CredentialTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -36053,13 +35738,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -36229,7 +35907,7 @@ public class CreditCategoryDescriptor : Entities.Common.EdFi.ICreditCategoryDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="creditCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CreditCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -36324,13 +36002,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -36500,7 +36171,7 @@ public class CreditTypeDescriptor : Entities.Common.EdFi.ICreditTypeDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="creditTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CreditTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -36595,13 +36266,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -36771,7 +36435,7 @@ public class CTEProgramServiceDescriptor : Entities.Common.EdFi.ICTEProgramServi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="cteProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CTEProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -36866,13 +36530,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -37042,7 +36699,7 @@ public class CurriculumUsedDescriptor : Entities.Common.EdFi.ICurriculumUsedDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="curriculumUsedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CurriculumUsedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -37137,13 +36794,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -37313,7 +36963,7 @@ public class DeliveryMethodDescriptor : Entities.Common.EdFi.IDeliveryMethodDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="deliveryMethodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DeliveryMethodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -37408,13 +37058,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -38334,7 +37977,7 @@ public class DiagnosisDescriptor : Entities.Common.EdFi.IDiagnosisDescriptor, En /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="diagnosisDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DiagnosisDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -38429,13 +38072,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -38605,7 +38241,7 @@ public class DiplomaLevelDescriptor : Entities.Common.EdFi.IDiplomaLevelDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="diplomaLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DiplomaLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -38700,13 +38336,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -38876,7 +38505,7 @@ public class DiplomaTypeDescriptor : Entities.Common.EdFi.IDiplomaTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="diplomaTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DiplomaTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -38971,13 +38600,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -39147,7 +38769,7 @@ public class DisabilityDescriptor : Entities.Common.EdFi.IDisabilityDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disabilityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisabilityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -39242,13 +38864,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -39418,7 +39033,7 @@ public class DisabilityDesignationDescriptor : Entities.Common.EdFi.IDisabilityD /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disabilityDesignationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisabilityDesignationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -39513,13 +39128,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -39689,7 +39297,7 @@ public class DisabilityDeterminationSourceTypeDescriptor : Entities.Common.EdFi. /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disabilityDeterminationSourceTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisabilityDeterminationSourceTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -39784,13 +39392,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -42053,7 +41654,7 @@ public class DisciplineActionLengthDifferenceReasonDescriptor : Entities.Common. /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disciplineActionLengthDifferenceReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisciplineActionLengthDifferenceReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -42148,13 +41749,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -42324,7 +41918,7 @@ public class DisciplineDescriptor : Entities.Common.EdFi.IDisciplineDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disciplineDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisciplineDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -42419,13 +42013,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -44011,7 +43598,7 @@ public class DisciplineIncidentParticipationCodeDescriptor : Entities.Common.EdF /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disciplineIncidentParticipationCodeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisciplineIncidentParticipationCodeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -44106,13 +43693,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -44282,7 +43862,7 @@ public class EducationalEnvironmentDescriptor : Entities.Common.EdFi.IEducationa /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educationalEnvironmentDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducationalEnvironmentDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -44377,13 +43957,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -49333,7 +48906,7 @@ public class EducationOrganizationAssociationTypeDescriptor : Entities.Common.Ed /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educationOrganizationAssociationTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducationOrganizationAssociationTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -49428,13 +49001,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -49604,7 +49170,7 @@ public class EducationOrganizationCategoryDescriptor : Entities.Common.EdFi.IEdu /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educationOrganizationCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducationOrganizationCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -49699,13 +49265,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -49875,7 +49434,7 @@ public class EducationOrganizationIdentificationSystemDescriptor : Entities.Comm /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educationOrganizationIdentificationSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducationOrganizationIdentificationSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -49970,13 +49529,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -52205,7 +51757,7 @@ public class EducationPlanDescriptor : Entities.Common.EdFi.IEducationPlanDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educationPlanDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducationPlanDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -52300,13 +51852,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -53163,7 +52708,7 @@ public class ElectronicMailTypeDescriptor : Entities.Common.EdFi.IElectronicMail /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="electronicMailTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ElectronicMailTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -53258,13 +52803,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -53434,7 +52972,7 @@ public class EmploymentStatusDescriptor : Entities.Common.EdFi.IEmploymentStatus /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="employmentStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EmploymentStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -53529,13 +53067,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -53705,7 +53236,7 @@ public class EntryGradeLevelReasonDescriptor : Entities.Common.EdFi.IEntryGradeL /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="entryGradeLevelReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EntryGradeLevelReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -53800,13 +53331,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -53976,7 +53500,7 @@ public class EntryTypeDescriptor : Entities.Common.EdFi.IEntryTypeDescriptor, En /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="entryTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EntryTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -54071,13 +53595,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -54247,7 +53764,7 @@ public class EventCircumstanceDescriptor : Entities.Common.EdFi.IEventCircumstan /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="eventCircumstanceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EventCircumstanceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -54342,13 +53859,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -54518,7 +54028,7 @@ public class ExitWithdrawTypeDescriptor : Entities.Common.EdFi.IExitWithdrawType /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="exitWithdrawTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ExitWithdrawTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -54613,13 +54123,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -55270,7 +54773,7 @@ public class FinancialCollectionDescriptor : Entities.Common.EdFi.IFinancialColl /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="financialCollectionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int FinancialCollectionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -55365,13 +54868,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -59867,7 +59363,7 @@ public class GradebookEntryTypeDescriptor : Entities.Common.EdFi.IGradebookEntry /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gradebookEntryTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GradebookEntryTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -59962,13 +59458,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -60138,7 +59627,7 @@ public class GradeLevelDescriptor : Entities.Common.EdFi.IGradeLevelDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gradeLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GradeLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -60233,13 +59722,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -60409,7 +59891,7 @@ public class GradePointAverageTypeDescriptor : Entities.Common.EdFi.IGradePointA /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gradePointAverageTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GradePointAverageTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -60504,13 +59986,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -60680,7 +60155,7 @@ public class GradeTypeDescriptor : Entities.Common.EdFi.IGradeTypeDescriptor, En /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gradeTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GradeTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -60775,13 +60250,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -61484,7 +60952,7 @@ public class GradingPeriodDescriptor : Entities.Common.EdFi.IGradingPeriodDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gradingPeriodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GradingPeriodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -61579,13 +61047,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -64615,7 +64076,7 @@ public class GraduationPlanTypeDescriptor : Entities.Common.EdFi.IGraduationPlan /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="graduationPlanTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GraduationPlanTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -64710,13 +64171,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -64886,7 +64340,7 @@ public class GunFreeSchoolsActReportingStatusDescriptor : Entities.Common.EdFi.I /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gunFreeSchoolsActReportingStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GunFreeSchoolsActReportingStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -64981,13 +64435,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -65157,7 +64604,7 @@ public class HomelessPrimaryNighttimeResidenceDescriptor : Entities.Common.EdFi. /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="homelessPrimaryNighttimeResidenceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int HomelessPrimaryNighttimeResidenceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -65252,13 +64699,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -65428,7 +64868,7 @@ public class HomelessProgramServiceDescriptor : Entities.Common.EdFi.IHomelessPr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="homelessProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int HomelessProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -65523,13 +64963,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -65699,7 +65132,7 @@ public class IdentificationDocumentUseDescriptor : Entities.Common.EdFi.IIdentif /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="identificationDocumentUseDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IdentificationDocumentUseDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -65794,13 +65227,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -65970,7 +65396,7 @@ public class IncidentLocationDescriptor : Entities.Common.EdFi.IIncidentLocation /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="incidentLocationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IncidentLocationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -66065,13 +65491,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -66241,7 +65660,7 @@ public class IndicatorDescriptor : Entities.Common.EdFi.IIndicatorDescriptor, En /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="indicatorDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IndicatorDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -66336,13 +65755,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -66512,7 +65924,7 @@ public class IndicatorGroupDescriptor : Entities.Common.EdFi.IIndicatorGroupDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="indicatorGroupDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IndicatorGroupDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -66607,13 +66019,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -66783,7 +66188,7 @@ public class IndicatorLevelDescriptor : Entities.Common.EdFi.IIndicatorLevelDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="indicatorLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IndicatorLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -66878,13 +66283,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -67054,7 +66452,7 @@ public class InstitutionTelephoneNumberTypeDescriptor : Entities.Common.EdFi.IIn /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="institutionTelephoneNumberTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InstitutionTelephoneNumberTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -67149,13 +66547,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -67325,7 +66716,7 @@ public class InteractivityStyleDescriptor : Entities.Common.EdFi.IInteractivityS /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="interactivityStyleDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InteractivityStyleDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -67420,13 +66811,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -67596,7 +66980,7 @@ public class InternetAccessDescriptor : Entities.Common.EdFi.IInternetAccessDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="internetAccessDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InternetAccessDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -67691,13 +67075,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -67867,7 +67244,7 @@ public class InternetAccessTypeInResidenceDescriptor : Entities.Common.EdFi.IInt /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="internetAccessTypeInResidenceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InternetAccessTypeInResidenceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -67962,13 +67339,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -68138,7 +67508,7 @@ public class InternetPerformanceInResidenceDescriptor : Entities.Common.EdFi.IIn /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="internetPerformanceInResidenceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InternetPerformanceInResidenceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -68233,13 +67603,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -71888,7 +71251,7 @@ public class InterventionClassDescriptor : Entities.Common.EdFi.IInterventionCla /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="interventionClassDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InterventionClassDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -71983,13 +71346,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -72159,7 +71515,7 @@ public class InterventionEffectivenessRatingDescriptor : Entities.Common.EdFi.II /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="interventionEffectivenessRatingDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InterventionEffectivenessRatingDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -72254,13 +71610,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -77769,7 +77118,7 @@ public class LanguageDescriptor : Entities.Common.EdFi.ILanguageDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="languageDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LanguageDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -77864,13 +77213,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -78040,7 +77382,7 @@ public class LanguageInstructionProgramServiceDescriptor : Entities.Common.EdFi. /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="languageInstructionProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LanguageInstructionProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -78135,13 +77477,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -78311,7 +77646,7 @@ public class LanguageUseDescriptor : Entities.Common.EdFi.ILanguageUseDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="languageUseDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LanguageUseDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -78406,13 +77741,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -82898,7 +82226,7 @@ public class LearningStandardCategoryDescriptor : Entities.Common.EdFi.ILearning /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="learningStandardCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LearningStandardCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -82993,13 +82321,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -83671,7 +82992,7 @@ public class LearningStandardEquivalenceStrengthDescriptor : Entities.Common.EdF /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="learningStandardEquivalenceStrengthDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LearningStandardEquivalenceStrengthDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -83766,13 +83087,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -83942,7 +83256,7 @@ public class LearningStandardScopeDescriptor : Entities.Common.EdFi.ILearningSta /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="learningStandardScopeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LearningStandardScopeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -84037,13 +83351,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -84213,7 +83520,7 @@ public class LevelOfEducationDescriptor : Entities.Common.EdFi.ILevelOfEducation /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="levelOfEducationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LevelOfEducationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -84308,13 +83615,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -84484,7 +83784,7 @@ public class LicenseStatusDescriptor : Entities.Common.EdFi.ILicenseStatusDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="licenseStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LicenseStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -84579,13 +83879,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -84755,7 +84048,7 @@ public class LicenseTypeDescriptor : Entities.Common.EdFi.ILicenseTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="licenseTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LicenseTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -84850,13 +84143,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -85026,7 +84312,7 @@ public class LimitedEnglishProficiencyDescriptor : Entities.Common.EdFi.ILimited /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="limitedEnglishProficiencyDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LimitedEnglishProficiencyDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -85121,13 +84407,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -87807,7 +87086,7 @@ public class LocaleDescriptor : Entities.Common.EdFi.ILocaleDescriptor, Entities /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="localeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LocaleDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -87902,13 +87181,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -89595,7 +88867,7 @@ public class LocalEducationAgencyCategoryDescriptor : Entities.Common.EdFi.ILoca /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="localEducationAgencyCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LocalEducationAgencyCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -89690,13 +88962,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -91384,7 +90649,7 @@ public class MagnetSpecialProgramEmphasisSchoolDescriptor : Entities.Common.EdFi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="magnetSpecialProgramEmphasisSchoolDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MagnetSpecialProgramEmphasisSchoolDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -91479,13 +90744,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -91655,7 +90913,7 @@ public class MediumOfInstructionDescriptor : Entities.Common.EdFi.IMediumOfInstr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="mediumOfInstructionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MediumOfInstructionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -91750,13 +91008,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -91926,7 +91177,7 @@ public class MethodCreditEarnedDescriptor : Entities.Common.EdFi.IMethodCreditEa /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="methodCreditEarnedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MethodCreditEarnedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -92021,13 +91272,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -92197,7 +91441,7 @@ public class MigrantEducationProgramServiceDescriptor : Entities.Common.EdFi.IMi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="migrantEducationProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MigrantEducationProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -92292,13 +91536,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -92468,7 +91705,7 @@ public class ModelEntityDescriptor : Entities.Common.EdFi.IModelEntityDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="modelEntityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ModelEntityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -92563,13 +91800,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -92739,7 +91969,7 @@ public class MonitoredDescriptor : Entities.Common.EdFi.IMonitoredDescriptor, En /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="monitoredDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MonitoredDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -92834,13 +92064,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -93010,7 +92233,7 @@ public class NeglectedOrDelinquentProgramDescriptor : Entities.Common.EdFi.INegl /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="neglectedOrDelinquentProgramDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int NeglectedOrDelinquentProgramDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -93105,13 +92328,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -93281,7 +92497,7 @@ public class NeglectedOrDelinquentProgramServiceDescriptor : Entities.Common.EdF /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="neglectedOrDelinquentProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int NeglectedOrDelinquentProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -93376,13 +92592,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -93552,7 +92761,7 @@ public class NetworkPurposeDescriptor : Entities.Common.EdFi.INetworkPurposeDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="networkPurposeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int NetworkPurposeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -93647,13 +92856,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -96465,7 +95667,7 @@ public class OldEthnicityDescriptor : Entities.Common.EdFi.IOldEthnicityDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="oldEthnicityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int OldEthnicityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -96560,13 +95762,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -97754,7 +96949,7 @@ public class OperationalStatusDescriptor : Entities.Common.EdFi.IOperationalStat /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="operationalStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int OperationalStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -97849,13 +97044,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -99381,7 +98569,7 @@ public class OtherNameTypeDescriptor : Entities.Common.EdFi.IOtherNameTypeDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="otherNameTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int OtherNameTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -99476,13 +98664,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -103044,7 +102225,7 @@ public class ParticipationDescriptor : Entities.Common.EdFi.IParticipationDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="participationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ParticipationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -103139,13 +102320,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -103315,7 +102489,7 @@ public class ParticipationStatusDescriptor : Entities.Common.EdFi.IParticipation /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="participationStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ParticipationStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -103410,13 +102584,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -103586,7 +102753,7 @@ public class PerformanceBaseConversionDescriptor : Entities.Common.EdFi.IPerform /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="performanceBaseConversionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PerformanceBaseConversionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -103681,13 +102848,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -103857,7 +103017,7 @@ public class PerformanceLevelDescriptor : Entities.Common.EdFi.IPerformanceLevel /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="performanceLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PerformanceLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -103952,13 +103112,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -104456,7 +103609,7 @@ public class PersonalInformationVerificationDescriptor : Entities.Common.EdFi.IP /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="personalInformationVerificationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PersonalInformationVerificationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -104551,13 +103704,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -104727,7 +103873,7 @@ public class PlatformTypeDescriptor : Entities.Common.EdFi.IPlatformTypeDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="platformTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PlatformTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -104822,13 +103968,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -104998,7 +104137,7 @@ public class PopulationServedDescriptor : Entities.Common.EdFi.IPopulationServed /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="populationServedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PopulationServedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -105093,13 +104232,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -105269,7 +104401,7 @@ public class PostingResultDescriptor : Entities.Common.EdFi.IPostingResultDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="postingResultDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PostingResultDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -105364,13 +104496,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -106034,7 +105159,7 @@ public class PostSecondaryEventCategoryDescriptor : Entities.Common.EdFi.IPostSe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="postSecondaryEventCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PostSecondaryEventCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -106129,13 +105254,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -107215,7 +106333,7 @@ public class PostSecondaryInstitutionLevelDescriptor : Entities.Common.EdFi.IPos /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="postSecondaryInstitutionLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PostSecondaryInstitutionLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -107310,13 +106428,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -107486,7 +106597,7 @@ public class PrimaryLearningDeviceAccessDescriptor : Entities.Common.EdFi.IPrima /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="primaryLearningDeviceAccessDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PrimaryLearningDeviceAccessDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -107581,13 +106692,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -107757,7 +106861,7 @@ public class PrimaryLearningDeviceAwayFromSchoolDescriptor : Entities.Common.EdF /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="primaryLearningDeviceAwayFromSchoolDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PrimaryLearningDeviceAwayFromSchoolDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -107852,13 +106956,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -108028,7 +107125,7 @@ public class PrimaryLearningDeviceProviderDescriptor : Entities.Common.EdFi.IPri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="primaryLearningDeviceProviderDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PrimaryLearningDeviceProviderDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -108123,13 +107220,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -108299,7 +107389,7 @@ public class ProficiencyDescriptor : Entities.Common.EdFi.IProficiencyDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="proficiencyDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProficiencyDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -108394,13 +107484,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -110564,7 +109647,7 @@ public class ProgramAssignmentDescriptor : Entities.Common.EdFi.IProgramAssignme /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="programAssignmentDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgramAssignmentDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -110659,13 +109742,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -110835,7 +109911,7 @@ public class ProgramCharacteristicDescriptor : Entities.Common.EdFi.IProgramChar /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="programCharacteristicDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgramCharacteristicDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -110930,13 +110006,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -111761,7 +110830,7 @@ public class ProgramSponsorDescriptor : Entities.Common.EdFi.IProgramSponsorDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="programSponsorDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgramSponsorDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -111856,13 +110925,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -112032,7 +111094,7 @@ public class ProgramTypeDescriptor : Entities.Common.EdFi.IProgramTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="programTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgramTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -112127,13 +111189,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -112303,7 +111358,7 @@ public class ProgressDescriptor : Entities.Common.EdFi.IProgressDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="progressDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgressDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -112398,13 +111453,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -112574,7 +111622,7 @@ public class ProgressLevelDescriptor : Entities.Common.EdFi.IProgressLevelDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="progressLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgressLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -112669,13 +111717,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -113500,7 +112541,7 @@ public class ProviderCategoryDescriptor : Entities.Common.EdFi.IProviderCategory /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="providerCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProviderCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -113595,13 +112636,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -113771,7 +112805,7 @@ public class ProviderProfitabilityDescriptor : Entities.Common.EdFi.IProviderPro /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="providerProfitabilityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProviderProfitabilityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -113866,13 +112900,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -114042,7 +113069,7 @@ public class ProviderStatusDescriptor : Entities.Common.EdFi.IProviderStatusDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="providerStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProviderStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -114137,13 +113164,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -114313,7 +113333,7 @@ public class PublicationStatusDescriptor : Entities.Common.EdFi.IPublicationStat /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="publicationStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PublicationStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -114408,13 +113428,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -114584,7 +113597,7 @@ public class QuestionFormDescriptor : Entities.Common.EdFi.IQuestionFormDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="questionFormDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int QuestionFormDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -114679,13 +113692,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -114855,7 +113861,7 @@ public class RaceDescriptor : Entities.Common.EdFi.IRaceDescriptor, Entities.Com /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="raceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RaceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -114950,13 +113956,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -115126,7 +114125,7 @@ public class ReasonExitedDescriptor : Entities.Common.EdFi.IReasonExitedDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="reasonExitedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ReasonExitedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -115221,13 +114220,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -115397,7 +114389,7 @@ public class ReasonNotTestedDescriptor : Entities.Common.EdFi.IReasonNotTestedDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="reasonNotTestedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ReasonNotTestedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -115492,13 +114484,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -115668,7 +114653,7 @@ public class RecognitionTypeDescriptor : Entities.Common.EdFi.IRecognitionTypeDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="recognitionTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RecognitionTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -115763,13 +114748,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -115939,7 +114917,7 @@ public class RelationDescriptor : Entities.Common.EdFi.IRelationDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="relationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RelationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -116034,13 +115012,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -116210,7 +115181,7 @@ public class RepeatIdentifierDescriptor : Entities.Common.EdFi.IRepeatIdentifier /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="repeatIdentifierDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RepeatIdentifierDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -116305,13 +115276,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -119204,7 +118168,7 @@ public class ReporterDescriptionDescriptor : Entities.Common.EdFi.IReporterDescr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="reporterDescriptionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ReporterDescriptionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -119299,13 +118263,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -119475,7 +118432,7 @@ public class ReportingTagDescriptor : Entities.Common.EdFi.IReportingTagDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="reportingTagDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ReportingTagDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -119570,13 +118527,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -119746,7 +118696,7 @@ public class ResidencyStatusDescriptor : Entities.Common.EdFi.IResidencyStatusDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="residencyStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ResidencyStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -119841,13 +118791,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -120017,7 +118960,7 @@ public class ResponseIndicatorDescriptor : Entities.Common.EdFi.IResponseIndicat /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="responseIndicatorDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ResponseIndicatorDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -120112,13 +119055,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -120288,7 +119224,7 @@ public class ResponsibilityDescriptor : Entities.Common.EdFi.IResponsibilityDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="responsibilityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ResponsibilityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -120383,13 +119319,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -121761,7 +120690,7 @@ public class RestraintEventReasonDescriptor : Entities.Common.EdFi.IRestraintEve /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="restraintEventReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RestraintEventReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -121856,13 +120785,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -122032,7 +120954,7 @@ public class ResultDatatypeTypeDescriptor : Entities.Common.EdFi.IResultDatatype /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="resultDatatypeTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ResultDatatypeTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -122127,13 +121049,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -122303,7 +121218,7 @@ public class RetestIndicatorDescriptor : Entities.Common.EdFi.IRetestIndicatorDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="retestIndicatorDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RetestIndicatorDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -122398,13 +121313,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -123931,7 +122839,7 @@ public class SchoolCategoryDescriptor : Entities.Common.EdFi.ISchoolCategoryDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="schoolCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SchoolCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -124026,13 +122934,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -124202,7 +123103,7 @@ public class SchoolChoiceImplementStatusDescriptor : Entities.Common.EdFi.ISchoo /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="schoolChoiceImplementStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SchoolChoiceImplementStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -124297,13 +123198,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -124473,7 +123367,7 @@ public class SchoolFoodServiceProgramServiceDescriptor : Entities.Common.EdFi.IS /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="schoolFoodServiceProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SchoolFoodServiceProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -124568,13 +123462,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -124744,7 +123631,7 @@ public class SchoolTypeDescriptor : Entities.Common.EdFi.ISchoolTypeDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="schoolTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SchoolTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -124839,13 +123726,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -128533,7 +127413,7 @@ public class SectionCharacteristicDescriptor : Entities.Common.EdFi.ISectionChar /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="sectionCharacteristicDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SectionCharacteristicDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -128628,13 +127508,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -128804,7 +127677,7 @@ public class SeparationDescriptor : Entities.Common.EdFi.ISeparationDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="separationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SeparationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -128899,13 +127772,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -129075,7 +127941,7 @@ public class SeparationReasonDescriptor : Entities.Common.EdFi.ISeparationReason /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="separationReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SeparationReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -129170,13 +128036,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -129346,7 +128205,7 @@ public class ServiceDescriptor : Entities.Common.EdFi.IServiceDescriptor, Entiti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="serviceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -129441,13 +128300,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -130960,7 +129812,7 @@ public class SexDescriptor : Entities.Common.EdFi.ISexDescriptor, Entities.Commo /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="sexDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SexDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -131055,13 +129907,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -131886,7 +130731,7 @@ public class SourceSystemDescriptor : Entities.Common.EdFi.ISourceSystemDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="sourceSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SourceSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -131981,13 +130826,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -132157,7 +130995,7 @@ public class SpecialEducationProgramServiceDescriptor : Entities.Common.EdFi.ISp /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="specialEducationProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SpecialEducationProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -132252,13 +131090,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -132428,7 +131259,7 @@ public class SpecialEducationSettingDescriptor : Entities.Common.EdFi.ISpecialEd /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="specialEducationSettingDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SpecialEducationSettingDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -132523,13 +131354,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -139041,7 +137865,7 @@ public class StaffClassificationDescriptor : Entities.Common.EdFi.IStaffClassifi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="staffClassificationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StaffClassificationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -139136,13 +137960,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -143583,7 +142400,7 @@ public class StaffIdentificationSystemDescriptor : Entities.Common.EdFi.IStaffId /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="staffIdentificationSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StaffIdentificationSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -143678,13 +142495,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -144302,7 +143112,7 @@ public class StaffLeaveEventCategoryDescriptor : Entities.Common.EdFi.IStaffLeav /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="staffLeaveEventCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StaffLeaveEventCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -144397,13 +143207,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -147099,7 +145902,7 @@ public class StateAbbreviationDescriptor : Entities.Common.EdFi.IStateAbbreviati /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="stateAbbreviationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StateAbbreviationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -147194,13 +145997,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -157379,7 +156175,7 @@ public class StudentCharacteristicDescriptor : Entities.Common.EdFi.IStudentChar /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="studentCharacteristicDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StudentCharacteristicDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -157474,13 +156270,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -173499,7 +172288,7 @@ public class StudentIdentificationSystemDescriptor : Entities.Common.EdFi.IStude /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="studentIdentificationSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StudentIdentificationSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -173594,13 +172383,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -181233,7 +180015,7 @@ public class StudentParticipationCodeDescriptor : Entities.Common.EdFi.IStudentP /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="studentParticipationCodeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StudentParticipationCodeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -181328,13 +180110,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -192246,7 +191021,7 @@ public class SubmissionStatusDescriptor : Entities.Common.EdFi.ISubmissionStatus /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="submissionStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SubmissionStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -192341,13 +191116,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -193146,7 +191914,7 @@ public class SurveyCategoryDescriptor : Entities.Common.EdFi.ISurveyCategoryDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="surveyCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SurveyCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -193241,13 +192009,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -193956,7 +192717,7 @@ public class SurveyLevelDescriptor : Entities.Common.EdFi.ISurveyLevelDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="surveyLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SurveyLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -194051,13 +192812,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -202229,7 +200983,7 @@ public class TeachingCredentialBasisDescriptor : Entities.Common.EdFi.ITeachingC /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="teachingCredentialBasisDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TeachingCredentialBasisDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -202324,13 +201078,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -202500,7 +201247,7 @@ public class TeachingCredentialDescriptor : Entities.Common.EdFi.ITeachingCreden /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="teachingCredentialDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TeachingCredentialDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -202595,13 +201342,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -202771,7 +201511,7 @@ public class TechnicalSkillsAssessmentDescriptor : Entities.Common.EdFi.ITechnic /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="technicalSkillsAssessmentDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TechnicalSkillsAssessmentDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -202866,13 +201606,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -203042,7 +201775,7 @@ public class TelephoneNumberTypeDescriptor : Entities.Common.EdFi.ITelephoneNumb /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="telephoneNumberTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TelephoneNumberTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -203137,13 +201870,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -203313,7 +202039,7 @@ public class TermDescriptor : Entities.Common.EdFi.ITermDescriptor, Entities.Com /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="termDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TermDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -203408,13 +202134,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -203584,7 +202303,7 @@ public class TitleIPartAParticipantDescriptor : Entities.Common.EdFi.ITitleIPart /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="titleIPartAParticipantDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TitleIPartAParticipantDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -203679,13 +202398,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -203855,7 +202567,7 @@ public class TitleIPartAProgramServiceDescriptor : Entities.Common.EdFi.ITitleIP /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="titleIPartAProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TitleIPartAProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -203950,13 +202662,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -204126,7 +202831,7 @@ public class TitleIPartASchoolDesignationDescriptor : Entities.Common.EdFi.ITitl /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="titleIPartASchoolDesignationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TitleIPartASchoolDesignationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -204221,13 +202926,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -204397,7 +203095,7 @@ public class TribalAffiliationDescriptor : Entities.Common.EdFi.ITribalAffiliati /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="tribalAffiliationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TribalAffiliationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -204492,13 +203190,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -204668,7 +203359,7 @@ public class VisaDescriptor : Entities.Common.EdFi.IVisaDescriptor, Entities.Com /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="visaDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int VisaDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -204763,13 +203454,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -204939,7 +203623,7 @@ public class WeaponDescriptor : Entities.Common.EdFi.IWeaponDescriptor, Entities /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="weaponDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int WeaponDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -205034,13 +203718,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs index 548c8e2a6f..be3285a7af 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs @@ -77,11 +77,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -4347,11 +4342,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -4531,11 +4521,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs index 5d85b30c3f..b959792527 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs @@ -43,7 +43,6 @@ public ArtMediumDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -52,7 +51,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -61,7 +59,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -78,8 +75,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1250,7 +1245,6 @@ public FavoriteBookCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1259,7 +1253,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1268,7 +1261,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1285,8 +1277,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1326,7 +1316,6 @@ public MembershipTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1335,7 +1324,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1344,7 +1332,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1361,8 +1348,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs index 2d0a8f6f10..cb911420e6 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs @@ -32,7 +32,8 @@ public static bool SynchronizeTo(this IArtMediumDescriptor source, IArtMediumDes // Detect primary key changes if ( - (target.ArtMediumDescriptorId != source.ArtMediumDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ArtMediumDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77,13 +78,6 @@ public static bool SynchronizeTo(this IArtMediumDescriptor source, IArtMediumDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -131,9 +125,6 @@ public static void MapTo(this IArtMediumDescriptor source, IArtMediumDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -2148,7 +2139,8 @@ public static bool SynchronizeTo(this IFavoriteBookCategoryDescriptor source, IF // Detect primary key changes if ( - (target.FavoriteBookCategoryDescriptorId != source.FavoriteBookCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on FavoriteBookCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -2193,13 +2185,6 @@ public static bool SynchronizeTo(this IFavoriteBookCategoryDescriptor source, IF isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -2247,9 +2232,6 @@ public static void MapTo(this IFavoriteBookCategoryDescriptor source, IFavoriteB if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -2309,7 +2291,8 @@ public static bool SynchronizeTo(this IMembershipTypeDescriptor source, IMembers // Detect primary key changes if ( - (target.MembershipTypeDescriptorId != source.MembershipTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MembershipTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -2354,13 +2337,6 @@ public static bool SynchronizeTo(this IMembershipTypeDescriptor source, IMembers isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -2408,9 +2384,6 @@ public static void MapTo(this IMembershipTypeDescriptor source, IMembershipTypeD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Resources_Resources.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Resources_Resources.generated.approved.cs index 02f9bd81fe..37c73faa63 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Resources_Resources.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.Sample.1.0.0_Std_5.0.0_Resources_Resources.generated.approved.cs @@ -69,7 +69,7 @@ public class ArtMediumDescriptor : Entities.Common.Sample.IArtMediumDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="artMediumDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ArtMediumDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -164,13 +164,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -6153,7 +6146,7 @@ public class FavoriteBookCategoryDescriptor : Entities.Common.Sample.IFavoriteBo /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="favoriteBookCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int FavoriteBookCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -6248,13 +6241,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -6424,7 +6410,7 @@ public class MembershipTypeDescriptor : Entities.Common.Sample.IMembershipTypeDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="membershipTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MembershipTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -6519,13 +6505,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs index fc8f880698..6ac1e22a74 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs @@ -77,11 +77,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -261,11 +256,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -745,11 +735,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -1339,11 +1324,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs index 6b6f4f44dd..dd237965d9 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs @@ -43,7 +43,6 @@ public InstitutionControlDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -52,7 +51,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -61,7 +59,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -78,8 +75,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -119,7 +114,6 @@ public InstitutionLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -128,7 +122,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -137,7 +130,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -154,8 +146,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -254,7 +244,6 @@ public SpecialEducationGraduationStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -263,7 +252,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -272,7 +260,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -289,8 +276,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -432,7 +417,6 @@ public SubmissionCertificationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -441,7 +425,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -450,7 +433,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -467,8 +449,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs index 6b2370c2bf..b34705e9e7 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs @@ -32,7 +32,8 @@ public static bool SynchronizeTo(this IInstitutionControlDescriptor source, IIns // Detect primary key changes if ( - (target.InstitutionControlDescriptorId != source.InstitutionControlDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InstitutionControlDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77,13 +78,6 @@ public static bool SynchronizeTo(this IInstitutionControlDescriptor source, IIns isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -131,9 +125,6 @@ public static void MapTo(this IInstitutionControlDescriptor source, IInstitution if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -193,7 +184,8 @@ public static bool SynchronizeTo(this IInstitutionLevelDescriptor source, IInsti // Detect primary key changes if ( - (target.InstitutionLevelDescriptorId != source.InstitutionLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InstitutionLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -238,13 +230,6 @@ public static bool SynchronizeTo(this IInstitutionLevelDescriptor source, IInsti isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -292,9 +277,6 @@ public static void MapTo(this IInstitutionLevelDescriptor source, IInstitutionLe if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -468,7 +450,8 @@ public static bool SynchronizeTo(this ISpecialEducationGraduationStatusDescripto // Detect primary key changes if ( - (target.SpecialEducationGraduationStatusDescriptorId != source.SpecialEducationGraduationStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SpecialEducationGraduationStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -513,13 +496,6 @@ public static bool SynchronizeTo(this ISpecialEducationGraduationStatusDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -567,9 +543,6 @@ public static void MapTo(this ISpecialEducationGraduationStatusDescriptor source if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -801,7 +774,8 @@ public static bool SynchronizeTo(this ISubmissionCertificationDescriptor source, // Detect primary key changes if ( - (target.SubmissionCertificationDescriptorId != source.SubmissionCertificationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SubmissionCertificationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -846,13 +820,6 @@ public static bool SynchronizeTo(this ISubmissionCertificationDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -900,9 +867,6 @@ public static void MapTo(this ISubmissionCertificationDescriptor source, ISubmis if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Resources_Resources.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Resources_Resources.generated.approved.cs index 44fd79b3b9..253d6cc346 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Resources_Resources.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.SampleStudentTranscript.1.0.0_Std_5.0.0_Resources_Resources.generated.approved.cs @@ -69,7 +69,7 @@ public class InstitutionControlDescriptor : Entities.Common.SampleStudentTranscr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="institutionControlDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InstitutionControlDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -164,13 +164,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -340,7 +333,7 @@ public class InstitutionLevelDescriptor : Entities.Common.SampleStudentTranscrip /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="institutionLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InstitutionLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -435,13 +428,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -958,7 +944,7 @@ public class SpecialEducationGraduationStatusDescriptor : Entities.Common.Sample /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="specialEducationGraduationStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SpecialEducationGraduationStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -1053,13 +1039,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -1745,7 +1724,7 @@ public class SubmissionCertificationDescriptor : Entities.Common.SampleStudentTr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="submissionCertificationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SubmissionCertificationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -1840,13 +1819,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs index 0644fa6b46..157bfe2ffa 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Entities_Entities.generated.approved.cs @@ -77,11 +77,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -261,11 +256,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -4882,11 +4872,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -5066,11 +5051,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -5892,11 +5872,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -6647,11 +6622,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -6831,11 +6801,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -7015,11 +6980,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -9316,11 +9276,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -10933,11 +10888,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -12442,11 +12392,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -12626,11 +12571,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -12810,11 +12750,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13365,11 +13300,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13549,11 +13479,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -15955,11 +15880,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -16139,11 +16059,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -16755,11 +16670,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs index 1332cd110a..7251fab9c7 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs @@ -43,7 +43,6 @@ public AccreditationStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -52,7 +51,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -61,7 +59,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -78,8 +75,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -119,7 +114,6 @@ public AidTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -128,7 +122,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -137,7 +130,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -154,8 +146,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1344,7 +1334,6 @@ public CertificationRouteDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1353,7 +1342,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1362,7 +1350,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1379,8 +1366,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1420,7 +1405,6 @@ public CoteachingStyleObservedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1429,7 +1413,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1438,7 +1421,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1455,8 +1437,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1596,7 +1576,6 @@ public CredentialStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1605,7 +1584,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1614,7 +1592,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1631,8 +1608,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1834,7 +1809,6 @@ public EducatorRoleDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1843,7 +1817,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1852,7 +1825,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1869,8 +1841,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1910,7 +1880,6 @@ public EnglishLanguageExamDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1919,7 +1888,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1928,7 +1896,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1945,8 +1912,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1986,7 +1951,6 @@ public EPPProgramPathwayDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1995,7 +1959,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2004,7 +1967,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2021,8 +1983,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2409,7 +2369,6 @@ public EvaluationElementRatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2418,7 +2377,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2427,7 +2385,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2444,8 +2401,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2824,7 +2779,6 @@ public EvaluationPeriodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2833,7 +2787,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2842,7 +2795,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2859,8 +2811,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3074,7 +3024,6 @@ public EvaluationRatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3083,7 +3032,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3092,7 +3040,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3109,8 +3056,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3320,7 +3265,6 @@ public EvaluationRatingStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3329,7 +3273,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3338,7 +3281,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3355,8 +3297,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3396,7 +3336,6 @@ public EvaluationTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3405,7 +3344,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3414,7 +3352,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3431,8 +3368,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3543,7 +3478,6 @@ public GenderDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3552,7 +3486,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3561,7 +3494,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3578,8 +3510,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3619,7 +3549,6 @@ public ObjectiveRatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3628,7 +3557,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3637,7 +3565,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3654,8 +3581,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4002,7 +3927,6 @@ public PerformanceEvaluationRatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4011,7 +3935,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4020,7 +3943,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4037,8 +3959,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4248,7 +4168,6 @@ public PerformanceEvaluationTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4257,7 +4176,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4266,7 +4184,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4283,8 +4200,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4403,7 +4318,6 @@ public RubricRatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4412,7 +4326,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4421,7 +4334,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4438,8 +4350,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs index e35ef4b6b3..10561f1ad5 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs @@ -32,7 +32,8 @@ public static bool SynchronizeTo(this IAccreditationStatusDescriptor source, IAc // Detect primary key changes if ( - (target.AccreditationStatusDescriptorId != source.AccreditationStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AccreditationStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77,13 +78,6 @@ public static bool SynchronizeTo(this IAccreditationStatusDescriptor source, IAc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -131,9 +125,6 @@ public static void MapTo(this IAccreditationStatusDescriptor source, IAccreditat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -193,7 +184,8 @@ public static bool SynchronizeTo(this IAidTypeDescriptor source, IAidTypeDescrip // Detect primary key changes if ( - (target.AidTypeDescriptorId != source.AidTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AidTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -238,13 +230,6 @@ public static bool SynchronizeTo(this IAidTypeDescriptor source, IAidTypeDescrip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -292,9 +277,6 @@ public static void MapTo(this IAidTypeDescriptor source, IAidTypeDescriptor targ if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -2239,7 +2221,8 @@ public static bool SynchronizeTo(this ICertificationRouteDescriptor source, ICer // Detect primary key changes if ( - (target.CertificationRouteDescriptorId != source.CertificationRouteDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CertificationRouteDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -2284,13 +2267,6 @@ public static bool SynchronizeTo(this ICertificationRouteDescriptor source, ICer isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -2338,9 +2314,6 @@ public static void MapTo(this ICertificationRouteDescriptor source, ICertificati if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -2400,7 +2373,8 @@ public static bool SynchronizeTo(this ICoteachingStyleObservedDescriptor source, // Detect primary key changes if ( - (target.CoteachingStyleObservedDescriptorId != source.CoteachingStyleObservedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CoteachingStyleObservedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -2445,13 +2419,6 @@ public static bool SynchronizeTo(this ICoteachingStyleObservedDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -2499,9 +2466,6 @@ public static void MapTo(this ICoteachingStyleObservedDescriptor source, ICoteac if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -2814,7 +2778,8 @@ public static bool SynchronizeTo(this ICredentialStatusDescriptor source, ICrede // Detect primary key changes if ( - (target.CredentialStatusDescriptorId != source.CredentialStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CredentialStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -2859,13 +2824,6 @@ public static bool SynchronizeTo(this ICredentialStatusDescriptor source, ICrede isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -2913,9 +2871,6 @@ public static void MapTo(this ICredentialStatusDescriptor source, ICredentialSta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -3173,7 +3128,8 @@ public static bool SynchronizeTo(this IEducatorRoleDescriptor source, IEducatorR // Detect primary key changes if ( - (target.EducatorRoleDescriptorId != source.EducatorRoleDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducatorRoleDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -3218,13 +3174,6 @@ public static bool SynchronizeTo(this IEducatorRoleDescriptor source, IEducatorR isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -3272,9 +3221,6 @@ public static void MapTo(this IEducatorRoleDescriptor source, IEducatorRoleDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -3334,7 +3280,8 @@ public static bool SynchronizeTo(this IEnglishLanguageExamDescriptor source, IEn // Detect primary key changes if ( - (target.EnglishLanguageExamDescriptorId != source.EnglishLanguageExamDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EnglishLanguageExamDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -3379,13 +3326,6 @@ public static bool SynchronizeTo(this IEnglishLanguageExamDescriptor source, IEn isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -3433,9 +3373,6 @@ public static void MapTo(this IEnglishLanguageExamDescriptor source, IEnglishLan if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -3495,7 +3432,8 @@ public static bool SynchronizeTo(this IEPPProgramPathwayDescriptor source, IEPPP // Detect primary key changes if ( - (target.EPPProgramPathwayDescriptorId != source.EPPProgramPathwayDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EPPProgramPathwayDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -3540,13 +3478,6 @@ public static bool SynchronizeTo(this IEPPProgramPathwayDescriptor source, IEPPP isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -3594,9 +3525,6 @@ public static void MapTo(this IEPPProgramPathwayDescriptor source, IEPPProgramPa if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -4421,7 +4349,8 @@ public static bool SynchronizeTo(this IEvaluationElementRatingLevelDescriptor so // Detect primary key changes if ( - (target.EvaluationElementRatingLevelDescriptorId != source.EvaluationElementRatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationElementRatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -4466,13 +4395,6 @@ public static bool SynchronizeTo(this IEvaluationElementRatingLevelDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -4520,9 +4442,6 @@ public static void MapTo(this IEvaluationElementRatingLevelDescriptor source, IE if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5067,7 +4986,8 @@ public static bool SynchronizeTo(this IEvaluationPeriodDescriptor source, IEvalu // Detect primary key changes if ( - (target.EvaluationPeriodDescriptorId != source.EvaluationPeriodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationPeriodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5112,13 +5032,6 @@ public static bool SynchronizeTo(this IEvaluationPeriodDescriptor source, IEvalu isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5166,9 +5079,6 @@ public static void MapTo(this IEvaluationPeriodDescriptor source, IEvaluationPer if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5743,7 +5653,8 @@ public static bool SynchronizeTo(this IEvaluationRatingLevelDescriptor source, I // Detect primary key changes if ( - (target.EvaluationRatingLevelDescriptorId != source.EvaluationRatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationRatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5788,13 +5699,6 @@ public static bool SynchronizeTo(this IEvaluationRatingLevelDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5842,9 +5746,6 @@ public static void MapTo(this IEvaluationRatingLevelDescriptor source, IEvaluati if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5904,7 +5805,8 @@ public static bool SynchronizeTo(this IEvaluationRatingStatusDescriptor source, // Detect primary key changes if ( - (target.EvaluationRatingStatusDescriptorId != source.EvaluationRatingStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationRatingStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5949,13 +5851,6 @@ public static bool SynchronizeTo(this IEvaluationRatingStatusDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -6003,9 +5898,6 @@ public static void MapTo(this IEvaluationRatingStatusDescriptor source, IEvaluat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -6065,7 +5957,8 @@ public static bool SynchronizeTo(this IEvaluationTypeDescriptor source, IEvaluat // Detect primary key changes if ( - (target.EvaluationTypeDescriptorId != source.EvaluationTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -6110,13 +6003,6 @@ public static bool SynchronizeTo(this IEvaluationTypeDescriptor source, IEvaluat isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -6164,9 +6050,6 @@ public static void MapTo(this IEvaluationTypeDescriptor source, IEvaluationTypeD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -6359,7 +6242,8 @@ public static bool SynchronizeTo(this IGenderDescriptor source, IGenderDescripto // Detect primary key changes if ( - (target.GenderDescriptorId != source.GenderDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GenderDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -6404,13 +6288,6 @@ public static bool SynchronizeTo(this IGenderDescriptor source, IGenderDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -6458,9 +6335,6 @@ public static void MapTo(this IGenderDescriptor source, IGenderDescriptor target if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -6520,7 +6394,8 @@ public static bool SynchronizeTo(this IObjectiveRatingLevelDescriptor source, IO // Detect primary key changes if ( - (target.ObjectiveRatingLevelDescriptorId != source.ObjectiveRatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ObjectiveRatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -6565,13 +6440,6 @@ public static bool SynchronizeTo(this IObjectiveRatingLevelDescriptor source, IO isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -6619,9 +6487,6 @@ public static void MapTo(this IObjectiveRatingLevelDescriptor source, IObjective if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7518,7 +7383,8 @@ public static bool SynchronizeTo(this IPerformanceEvaluationRatingLevelDescripto // Detect primary key changes if ( - (target.PerformanceEvaluationRatingLevelDescriptorId != source.PerformanceEvaluationRatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PerformanceEvaluationRatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7563,13 +7429,6 @@ public static bool SynchronizeTo(this IPerformanceEvaluationRatingLevelDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7617,9 +7476,6 @@ public static void MapTo(this IPerformanceEvaluationRatingLevelDescriptor source if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7679,7 +7535,8 @@ public static bool SynchronizeTo(this IPerformanceEvaluationTypeDescriptor sourc // Detect primary key changes if ( - (target.PerformanceEvaluationTypeDescriptorId != source.PerformanceEvaluationTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PerformanceEvaluationTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7724,13 +7581,6 @@ public static bool SynchronizeTo(this IPerformanceEvaluationTypeDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7778,9 +7628,6 @@ public static void MapTo(this IPerformanceEvaluationTypeDescriptor source, IPerf if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7979,7 +7826,8 @@ public static bool SynchronizeTo(this IRubricRatingLevelDescriptor source, IRubr // Detect primary key changes if ( - (target.RubricRatingLevelDescriptorId != source.RubricRatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RubricRatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -8024,13 +7872,6 @@ public static bool SynchronizeTo(this IRubricRatingLevelDescriptor source, IRubr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -8078,9 +7919,6 @@ public static void MapTo(this IRubricRatingLevelDescriptor source, IRubricRating if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Resources_Resources.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Resources_Resources.generated.approved.cs index 7ca108c054..d74df3a152 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Resources_Resources.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Extensions.TPDM.1.1.0_Std_5.0.0_Resources_Resources.generated.approved.cs @@ -69,7 +69,7 @@ public class AccreditationStatusDescriptor : Entities.Common.TPDM.IAccreditation /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="accreditationStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AccreditationStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -164,13 +164,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -340,7 +333,7 @@ public class AidTypeDescriptor : Entities.Common.TPDM.IAidTypeDescriptor, Entiti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="aidTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AidTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -435,13 +428,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -5891,7 +5877,7 @@ public class CertificationRouteDescriptor : Entities.Common.TPDM.ICertificationR /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="certificationRouteDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CertificationRouteDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -5986,13 +5972,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -6162,7 +6141,7 @@ public class CoteachingStyleObservedDescriptor : Entities.Common.TPDM.ICoteachin /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="coteachingStyleObservedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CoteachingStyleObservedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -6257,13 +6236,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -7251,7 +7223,7 @@ public class CredentialStatusDescriptor : Entities.Common.TPDM.ICredentialStatus /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="credentialStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CredentialStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -7346,13 +7318,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -8254,7 +8219,7 @@ public class EducatorRoleDescriptor : Entities.Common.TPDM.IEducatorRoleDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educatorRoleDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducatorRoleDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -8349,13 +8314,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -8525,7 +8483,7 @@ public class EnglishLanguageExamDescriptor : Entities.Common.TPDM.IEnglishLangua /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="englishLanguageExamDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EnglishLanguageExamDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -8620,13 +8578,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -8796,7 +8747,7 @@ public class EPPProgramPathwayDescriptor : Entities.Common.TPDM.IEPPProgramPathw /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="eppProgramPathwayDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EPPProgramPathwayDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -8891,13 +8842,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -12494,7 +12438,7 @@ public class EvaluationElementRatingLevelDescriptor : Entities.Common.TPDM.IEval /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationElementRatingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationElementRatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -12589,13 +12533,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -15126,7 +15063,7 @@ public class EvaluationPeriodDescriptor : Entities.Common.TPDM.IEvaluationPeriod /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationPeriodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationPeriodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -15221,13 +15158,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -17480,7 +17410,7 @@ public class EvaluationRatingLevelDescriptor : Entities.Common.TPDM.IEvaluationR /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationRatingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationRatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17575,13 +17505,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -17751,7 +17674,7 @@ public class EvaluationRatingStatusDescriptor : Entities.Common.TPDM.IEvaluation /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationRatingStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationRatingStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17846,13 +17769,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -18022,7 +17938,7 @@ public class EvaluationTypeDescriptor : Entities.Common.TPDM.IEvaluationTypeDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -18117,13 +18033,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -18749,7 +18658,7 @@ public class GenderDescriptor : Entities.Common.TPDM.IGenderDescriptor, Entities /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="genderDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GenderDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -18844,13 +18753,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -19020,7 +18922,7 @@ public class ObjectiveRatingLevelDescriptor : Entities.Common.TPDM.IObjectiveRat /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="objectiveRatingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ObjectiveRatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -19115,13 +19017,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -22160,7 +22055,7 @@ public class PerformanceEvaluationRatingLevelDescriptor : Entities.Common.TPDM.I /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="performanceEvaluationRatingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PerformanceEvaluationRatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -22255,13 +22150,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -22431,7 +22319,7 @@ public class PerformanceEvaluationTypeDescriptor : Entities.Common.TPDM.IPerform /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="performanceEvaluationTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PerformanceEvaluationTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -22526,13 +22414,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -23457,7 +23338,7 @@ public class RubricRatingLevelDescriptor : Entities.Common.TPDM.IRubricRatingLev /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="rubricRatingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RubricRatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -23552,13 +23433,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_MsSql_EntityOrmMappings.generated.hbm.approved.xml b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_MsSql_EntityOrmMappings.generated.hbm.approved.xml index f8728af626..f52897ecd1 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_MsSql_EntityOrmMappings.generated.hbm.approved.xml +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_MsSql_EntityOrmMappings.generated.hbm.approved.xml @@ -3069,7 +3069,6 @@ - diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_MsSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_MsSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml index e859edef9e..e9f017d6cf 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_MsSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_MsSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml @@ -3319,7 +3319,6 @@ - diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_PgSql_EntityOrmMappings.generated.hbm.approved.xml b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_PgSql_EntityOrmMappings.generated.hbm.approved.xml index 583326fa38..dbbd62ec84 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_PgSql_EntityOrmMappings.generated.hbm.approved.xml +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_PgSql_EntityOrmMappings.generated.hbm.approved.xml @@ -3069,7 +3069,6 @@ - diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_PgSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_PgSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml index 6afa26bf2b..764cfcc1ad 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_PgSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_EntityOrmMappings_PgSql_EntityOrmMappingsForQueries.generated.hbm.approved.xml @@ -3319,7 +3319,6 @@ - diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Entities_Entities.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Entities_Entities.generated.approved.cs index 1c70153d0e..b34ef118e5 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Entities_Entities.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Entities_Entities.generated.approved.cs @@ -76,11 +76,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -260,11 +255,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -444,11 +434,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -926,11 +911,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -1436,11 +1416,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -1620,11 +1595,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -1804,11 +1774,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -1988,11 +1953,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -2172,11 +2132,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -2356,11 +2311,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -2540,11 +2490,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -6620,11 +6565,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -6804,11 +6744,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -7828,11 +7763,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -8012,11 +7942,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -8196,11 +8121,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -8380,11 +8300,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -9177,11 +9092,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -9361,11 +9271,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -9545,11 +9450,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -10271,11 +10171,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -10455,11 +10350,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -12888,11 +12778,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13072,11 +12957,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13256,11 +13136,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13440,11 +13315,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -13624,11 +13494,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -14589,11 +14454,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -15300,11 +15160,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -16178,11 +16033,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -16362,11 +16212,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -16546,11 +16391,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -17668,11 +17508,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -21408,11 +21243,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -21592,11 +21422,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -21776,11 +21601,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -21960,11 +21780,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -22144,11 +21959,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -24469,11 +24279,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -24653,11 +24458,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -24837,11 +24637,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -25021,11 +24816,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -25205,11 +24995,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -26548,11 +26333,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -30732,11 +30512,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -30916,11 +30691,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -31100,11 +30870,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -31284,11 +31049,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -31468,11 +31228,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -31652,11 +31407,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -31836,11 +31586,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -32045,7 +31790,6 @@ public virtual DateTime? EffectiveEndDate [RequiredWithNonDefault, StringLength(255, MinimumLength=0), NoDangerousText] public virtual string Namespace { get; set; } - public virtual int? PriorDescriptorId { get; set; } [RequiredWithNonDefault, StringLength(75, MinimumLength=0), NoDangerousText] public virtual string ShortDescription { get; set; } // ------------------------------------------------------------- @@ -32766,11 +32510,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -32950,11 +32689,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -33134,11 +32868,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -33318,11 +33047,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -33502,11 +33226,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -33686,11 +33405,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -35168,11 +34882,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -35352,11 +35061,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -36735,11 +36439,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -36919,11 +36618,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -42045,11 +41739,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -42229,11 +41918,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -42413,11 +42097,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -43827,11 +43506,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -44230,11 +43904,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -44414,11 +44083,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -44598,11 +44262,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -44782,11 +44441,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -44966,11 +44620,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -45150,11 +44799,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -45334,11 +44978,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -45518,11 +45157,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -46157,11 +45791,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -46341,11 +45970,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -46846,11 +46470,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -50409,11 +50028,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -50593,11 +50207,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -50777,11 +50386,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -50961,11 +50565,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -51499,11 +51098,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -54213,11 +53807,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -54397,11 +53986,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -54581,11 +54165,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -54765,11 +54344,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -54949,11 +54523,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -55133,11 +54702,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -55317,11 +54881,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -55501,11 +55060,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -55685,11 +55239,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -55869,11 +55418,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -56053,11 +55597,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -56237,11 +55776,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -56421,11 +55955,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -56605,11 +56134,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -56789,11 +56313,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -60023,11 +59542,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -60207,11 +59721,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -65206,11 +64715,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -65390,11 +64894,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -65574,11 +65073,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -67528,11 +67022,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -68078,11 +67567,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -68262,11 +67746,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -68446,11 +67925,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -68630,11 +68104,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -68814,11 +68283,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -68998,11 +68462,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -70868,11 +70327,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -71945,11 +71399,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -73166,11 +72615,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -73350,11 +72794,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -73534,11 +72973,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -73718,11 +73152,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -73902,11 +73331,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -74086,11 +73510,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -74270,11 +73689,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -74454,11 +73868,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -74638,11 +74047,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -77916,11 +77320,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -78905,11 +78304,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -79089,11 +78483,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -79273,11 +78662,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -79457,11 +78841,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -79641,11 +79020,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -80124,11 +79498,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -80308,11 +79677,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -80492,11 +79856,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -80676,11 +80035,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -81252,11 +80606,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -81988,11 +81337,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -82172,11 +81516,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -82356,11 +81695,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -82540,11 +81874,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -82724,11 +82053,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -84048,11 +83372,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -84232,11 +83551,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -87077,11 +86391,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -87261,11 +86570,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -87445,11 +86749,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -87629,11 +86928,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -87813,11 +87107,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -87997,11 +87286,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -88723,11 +88007,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -88907,11 +88186,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -89091,11 +88365,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -89275,11 +88544,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -89459,11 +88723,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -89643,11 +88902,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -89827,11 +89081,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -90011,11 +89260,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -90195,11 +89439,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -90379,11 +89618,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -90563,11 +89797,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -90747,11 +89976,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -92269,11 +91493,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -92453,11 +91672,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -92637,11 +91851,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -92821,11 +92030,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -93005,11 +92209,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -94159,11 +93358,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -94343,11 +93537,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -94527,11 +93716,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -95738,11 +94922,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -95922,11 +95101,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -96106,11 +95280,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -96290,11 +95459,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -96474,11 +95638,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -99281,11 +98440,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -99465,11 +98619,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -99649,11 +98798,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -99833,11 +98977,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -100017,11 +99156,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -101116,11 +100250,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -101842,11 +100971,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -102026,11 +101150,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -102210,11 +101329,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -108479,11 +107593,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -112149,11 +111258,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -112735,11 +111839,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -114769,11 +113868,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -123670,11 +122764,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -135459,11 +134548,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -139351,11 +138435,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -149363,11 +148442,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -149547,11 +148621,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -150091,11 +149160,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -150590,11 +149654,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -155878,11 +154937,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156062,11 +155116,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156246,11 +155295,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156430,11 +155474,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156614,11 +155653,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156798,11 +155832,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -156982,11 +156011,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -157166,11 +156190,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -157350,11 +156369,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -157534,11 +156548,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } @@ -157718,11 +156727,6 @@ string IDescriptor.Namespace get { return Namespace; } set { Namespace = value; } } - int? IDescriptor.PriorDescriptorId - { - get { return PriorDescriptorId; } - set { PriorDescriptorId = value; } - } string IDescriptor.ShortDescription { get { return ShortDescription; } diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Entities_EntitiesForQueries.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Entities_EntitiesForQueries.generated.approved.cs index 5e3b435726..2fe44eae72 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Entities_EntitiesForQueries.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Entities_EntitiesForQueries.generated.approved.cs @@ -6095,7 +6095,6 @@ public abstract class DescriptorQ : AggregateRootWithCompositeKey public virtual DateTime? EffectiveBeginDate { get; set; } public virtual DateTime? EffectiveEndDate { get; set; } public virtual string Namespace { get; set; } - public virtual int? PriorDescriptorId { get; set; } public virtual string ShortDescription { get; set; } // ------------------------------------------------------------- diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs index df7abd1b61..fa285bb4df 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Interfaces_EntityInterfaces.generated.approved.cs @@ -42,7 +42,6 @@ public AbsenceEventCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -51,7 +50,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -60,7 +58,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -77,8 +74,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -118,7 +113,6 @@ public AcademicHonorCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -127,7 +121,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -136,7 +129,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -153,8 +145,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -194,7 +184,6 @@ public AcademicSubjectDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -203,7 +192,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -212,7 +200,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -229,8 +216,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -340,7 +325,6 @@ public AccommodationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -349,7 +333,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -358,7 +341,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -375,8 +357,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -496,7 +476,6 @@ public AccountTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -505,7 +484,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -514,7 +492,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -531,8 +508,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -572,7 +547,6 @@ public AchievementCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -581,7 +555,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -590,7 +563,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -607,8 +579,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -648,7 +618,6 @@ public AdditionalCreditTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -657,7 +626,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -666,7 +634,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -683,8 +650,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -724,7 +689,6 @@ public AddressTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -733,7 +697,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -742,7 +705,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -759,8 +721,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -800,7 +760,6 @@ public AdministrationEnvironmentDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -809,7 +768,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -818,7 +776,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -835,8 +792,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -876,7 +831,6 @@ public AdministrativeFundingControlDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -885,7 +839,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -894,7 +847,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -911,8 +863,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -952,7 +902,6 @@ public AncestryEthnicOriginDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -961,7 +910,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -970,7 +918,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -987,8 +934,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1340,7 +1285,6 @@ public AssessmentCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1349,7 +1293,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1358,7 +1301,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1375,8 +1317,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1644,7 +1584,6 @@ public AssessmentIdentificationSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1653,7 +1592,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1662,7 +1600,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1679,8 +1616,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -1829,7 +1764,6 @@ public AssessmentItemCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -1838,7 +1772,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -1847,7 +1780,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -1864,8 +1796,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2021,7 +1951,6 @@ public AssessmentItemResultDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2030,7 +1959,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2039,7 +1967,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2056,8 +1983,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2288,7 +2213,6 @@ public AssessmentPeriodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2297,7 +2221,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2306,7 +2229,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2323,8 +2245,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2472,7 +2392,6 @@ public AssessmentReportingMethodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2481,7 +2400,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2490,7 +2408,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2507,8 +2424,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2821,7 +2736,6 @@ public AssignmentLateStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2830,7 +2744,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2839,7 +2752,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2856,8 +2768,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2897,7 +2807,6 @@ public AttemptStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2906,7 +2815,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2915,7 +2823,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -2932,8 +2839,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -2973,7 +2878,6 @@ public AttendanceEventCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -2982,7 +2886,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -2991,7 +2894,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3008,8 +2910,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3166,7 +3066,6 @@ public BarrierToInternetAccessInResidenceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3175,7 +3074,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3184,7 +3082,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3201,8 +3098,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3242,7 +3137,6 @@ public BehaviorDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3251,7 +3145,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3260,7 +3153,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3277,8 +3169,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3763,7 +3653,6 @@ public CalendarEventDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3772,7 +3661,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3781,7 +3669,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3798,8 +3685,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3890,7 +3775,6 @@ public CalendarTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3899,7 +3783,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3908,7 +3791,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -3925,8 +3807,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -3966,7 +3846,6 @@ public CareerPathwayDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -3975,7 +3854,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -3984,7 +3862,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4001,8 +3878,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4042,7 +3917,6 @@ public CharterApprovalAgencyTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4051,7 +3925,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4060,7 +3933,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4077,8 +3949,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4118,7 +3988,6 @@ public CharterStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4127,7 +3996,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4136,7 +4004,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4153,8 +4020,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4391,7 +4256,6 @@ public CitizenshipStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4400,7 +4264,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4409,7 +4272,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4426,8 +4288,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4587,7 +4447,6 @@ public ClassroomPositionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4596,7 +4455,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4605,7 +4463,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4622,8 +4479,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4806,7 +4661,6 @@ public CohortScopeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4815,7 +4669,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4824,7 +4677,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4841,8 +4693,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4882,7 +4732,6 @@ public CohortTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4891,7 +4740,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4900,7 +4748,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4917,8 +4764,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -4958,7 +4803,6 @@ public CohortYearTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -4967,7 +4811,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -4976,7 +4819,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -4993,8 +4835,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -5407,7 +5247,6 @@ public CompetencyLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -5416,7 +5255,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -5425,7 +5263,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -5442,8 +5279,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -6454,7 +6289,6 @@ public ContactTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -6463,7 +6297,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -6472,7 +6305,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -6489,8 +6321,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -6530,7 +6360,6 @@ public ContentClassDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -6539,7 +6368,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -6548,7 +6376,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -6565,8 +6392,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -6606,7 +6431,6 @@ public ContinuationOfServicesReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -6615,7 +6439,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -6624,7 +6447,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -6641,8 +6463,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -6682,7 +6502,6 @@ public CostRateDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -6691,7 +6510,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -6700,7 +6518,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -6717,8 +6534,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -6758,7 +6573,6 @@ public CountryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -6767,7 +6581,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -6776,7 +6589,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -6793,8 +6605,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -7088,7 +6898,6 @@ public CourseAttemptResultDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -7097,7 +6906,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -7106,7 +6914,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -7123,8 +6930,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -7215,7 +7020,6 @@ public CourseDefinedByDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -7224,7 +7028,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -7233,7 +7036,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -7250,8 +7052,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -7291,7 +7091,6 @@ public CourseGPAApplicabilityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -7300,7 +7099,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -7309,7 +7107,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -7326,8 +7123,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -7436,7 +7231,6 @@ public CourseIdentificationSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -7445,7 +7239,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -7454,7 +7247,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -7471,8 +7263,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -7616,7 +7406,6 @@ public CourseLevelCharacteristicDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -7625,7 +7414,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -7634,7 +7422,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -7651,8 +7438,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8007,7 +7792,6 @@ public CourseRepeatCodeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8016,7 +7800,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8025,7 +7808,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -8042,8 +7824,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -8968,7 +8748,6 @@ public CredentialFieldDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -8977,7 +8756,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -8986,7 +8764,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9003,8 +8780,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9095,7 +8870,6 @@ public CredentialTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9104,7 +8878,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9113,7 +8886,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9130,8 +8902,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9171,7 +8941,6 @@ public CreditCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9180,7 +8949,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9189,7 +8957,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9206,8 +8973,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9247,7 +9012,6 @@ public CreditTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9256,7 +9020,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9265,7 +9028,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9282,8 +9044,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9323,7 +9083,6 @@ public CTEProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9332,7 +9091,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9341,7 +9099,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9358,8 +9115,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9399,7 +9154,6 @@ public CurriculumUsedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9408,7 +9162,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9417,7 +9170,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9434,8 +9186,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9475,7 +9225,6 @@ public DeliveryMethodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9484,7 +9233,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9493,7 +9241,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9510,8 +9257,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9536,7 +9281,6 @@ public interface IDescriptor : IHasIdentifier, IGetByExample DateTime? EffectiveBeginDate { get; set; } DateTime? EffectiveEndDate { get; set; } string Namespace { get; set; } - int? PriorDescriptorId { get; set; } string ShortDescription { get; set; } // One-to-one relationships @@ -9558,7 +9302,6 @@ public DescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9567,7 +9310,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9576,7 +9318,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9593,8 +9334,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9749,7 +9488,6 @@ public DiagnosisDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9758,7 +9496,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9767,7 +9504,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9784,8 +9520,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9825,7 +9559,6 @@ public DiplomaLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9834,7 +9567,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9843,7 +9575,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9860,8 +9591,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9901,7 +9630,6 @@ public DiplomaTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9910,7 +9638,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9919,7 +9646,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -9936,8 +9662,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -9977,7 +9701,6 @@ public DisabilityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -9986,7 +9709,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -9995,7 +9717,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -10012,8 +9733,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -10053,7 +9772,6 @@ public DisabilityDesignationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -10062,7 +9780,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -10071,7 +9788,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -10088,8 +9804,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -10129,7 +9843,6 @@ public DisabilityDeterminationSourceTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -10138,7 +9851,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -10147,7 +9859,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -10164,8 +9875,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -10382,7 +10091,6 @@ public DisciplineActionLengthDifferenceReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -10391,7 +10099,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -10400,7 +10107,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -10417,8 +10123,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -10568,7 +10272,6 @@ public DisciplineDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -10577,7 +10280,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -10586,7 +10288,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -10603,8 +10304,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -10889,7 +10588,6 @@ public DisciplineIncidentParticipationCodeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -10898,7 +10596,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -10907,7 +10604,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -10924,8 +10620,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -11016,7 +10710,6 @@ public EducationalEnvironmentDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -11025,7 +10718,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -11034,7 +10726,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -11051,8 +10742,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -11959,7 +11648,6 @@ public EducationOrganizationAssociationTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -11968,7 +11656,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -11977,7 +11664,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -11994,8 +11680,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -12086,7 +11770,6 @@ public EducationOrganizationCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -12095,7 +11778,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -12104,7 +11786,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12121,8 +11802,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -12219,7 +11898,6 @@ public EducationOrganizationIdentificationSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -12228,7 +11906,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -12237,7 +11914,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12254,8 +11930,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -12911,7 +12585,6 @@ public EducationPlanDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -12920,7 +12593,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -12929,7 +12601,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -12946,8 +12617,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13111,7 +12780,6 @@ public ElectronicMailTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13120,7 +12788,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13129,7 +12796,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13146,8 +12812,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13187,7 +12851,6 @@ public EligibilityDelayReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13196,7 +12859,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13205,7 +12867,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13222,8 +12883,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13263,7 +12922,6 @@ public EligibilityEvaluationTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13272,7 +12930,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13281,7 +12938,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13298,8 +12954,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13339,7 +12993,6 @@ public EmploymentStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13348,7 +13001,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13357,7 +13009,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13374,8 +13025,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13415,7 +13064,6 @@ public EnrollmentTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13424,7 +13072,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13433,7 +13080,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13450,8 +13096,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13491,7 +13135,6 @@ public EntryGradeLevelReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13500,7 +13143,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13509,7 +13151,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13526,8 +13167,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13567,7 +13206,6 @@ public EntryTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13576,7 +13214,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13585,7 +13222,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13602,8 +13238,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13643,7 +13277,6 @@ public EvaluationDelayReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13652,7 +13285,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13661,7 +13293,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13678,8 +13309,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13802,7 +13431,6 @@ public EventCircumstanceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13811,7 +13439,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13820,7 +13447,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13837,8 +13463,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -13878,7 +13502,6 @@ public ExitWithdrawTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -13887,7 +13510,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -13896,7 +13518,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -13913,8 +13534,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -14021,7 +13640,6 @@ public FinancialCollectionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -14030,7 +13648,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -14039,7 +13656,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -14056,8 +13672,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -14811,7 +14425,6 @@ public GradebookEntryTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -14820,7 +14433,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -14829,7 +14441,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -14846,8 +14457,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -14964,7 +14573,6 @@ public GradeLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -14973,7 +14581,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -14982,7 +14589,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -14999,8 +14605,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15040,7 +14644,6 @@ public GradePointAverageTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15049,7 +14652,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15058,7 +14660,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15075,8 +14676,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15116,7 +14715,6 @@ public GradeTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15125,7 +14723,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15134,7 +14731,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15151,8 +14747,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15273,7 +14867,6 @@ public GradingPeriodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15282,7 +14875,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15291,7 +14883,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -15308,8 +14899,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -15967,7 +15556,6 @@ public GraduationPlanTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -15976,7 +15564,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -15985,7 +15572,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16002,8 +15588,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16043,7 +15627,6 @@ public GunFreeSchoolsActReportingStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16052,7 +15635,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16061,7 +15643,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16078,8 +15659,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16119,7 +15698,6 @@ public HomelessPrimaryNighttimeResidenceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16128,7 +15706,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16137,7 +15714,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16154,8 +15730,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16195,7 +15769,6 @@ public HomelessProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16204,7 +15777,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16213,7 +15785,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16230,8 +15801,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16271,7 +15840,6 @@ public IDEAPartDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16280,7 +15848,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16289,7 +15856,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16306,8 +15872,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16347,7 +15911,6 @@ public IdentificationDocumentUseDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16356,7 +15919,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16365,7 +15927,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16382,8 +15943,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16423,7 +15982,6 @@ public IncidentLocationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16432,7 +15990,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16441,7 +15998,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16458,8 +16014,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16499,7 +16053,6 @@ public IndicatorDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16508,7 +16061,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16517,7 +16069,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16534,8 +16085,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16575,7 +16124,6 @@ public IndicatorGroupDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16584,7 +16132,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16593,7 +16140,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16610,8 +16156,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16651,7 +16195,6 @@ public IndicatorLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16660,7 +16203,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16669,7 +16211,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16686,8 +16227,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16727,7 +16266,6 @@ public InstitutionTelephoneNumberTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16736,7 +16274,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16745,7 +16282,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16762,8 +16298,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16803,7 +16337,6 @@ public InteractivityStyleDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16812,7 +16345,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16821,7 +16353,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16838,8 +16369,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16879,7 +16408,6 @@ public InternetAccessDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16888,7 +16416,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16897,7 +16424,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16914,8 +16440,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -16955,7 +16479,6 @@ public InternetAccessTypeInResidenceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -16964,7 +16487,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -16973,7 +16495,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -16990,8 +16511,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -17031,7 +16550,6 @@ public InternetPerformanceInResidenceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -17040,7 +16558,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -17049,7 +16566,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -17066,8 +16582,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -17394,7 +16908,6 @@ public InterventionClassDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -17403,7 +16916,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -17412,7 +16924,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -17429,8 +16940,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -17574,7 +17083,6 @@ public InterventionEffectivenessRatingDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -17583,7 +17091,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -17592,7 +17099,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -17609,8 +17115,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19052,7 +18556,6 @@ public LanguageDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19061,7 +18564,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19070,7 +18572,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19087,8 +18588,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19128,7 +18627,6 @@ public LanguageInstructionProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19137,7 +18635,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19146,7 +18643,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19163,8 +18659,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19204,7 +18698,6 @@ public LanguageUseDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19213,7 +18706,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19222,7 +18714,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19239,8 +18730,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19470,7 +18959,6 @@ public LearningStandardCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19479,7 +18967,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19488,7 +18975,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19505,8 +18991,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19786,7 +19270,6 @@ public LearningStandardEquivalenceStrengthDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19795,7 +19278,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19804,7 +19286,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -19821,8 +19302,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -19966,7 +19445,6 @@ public LearningStandardScopeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -19975,7 +19453,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -19984,7 +19461,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20001,8 +19477,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20042,7 +19516,6 @@ public LevelOfEducationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20051,7 +19524,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20060,7 +19532,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20077,8 +19548,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20118,7 +19587,6 @@ public LicenseStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20127,7 +19595,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20136,7 +19603,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20153,8 +19619,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20194,7 +19658,6 @@ public LicenseTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20203,7 +19666,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20212,7 +19674,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20229,8 +19690,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20270,7 +19729,6 @@ public LimitedEnglishProficiencyDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20279,7 +19737,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20288,7 +19745,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20305,8 +19761,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -20698,7 +20152,6 @@ public LocaleDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -20707,7 +20160,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -20716,7 +20168,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -20733,8 +20184,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21006,7 +20455,6 @@ public LocalEducationAgencyCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21015,7 +20463,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21024,7 +20471,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21041,8 +20487,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21387,7 +20831,6 @@ public MagnetSpecialProgramEmphasisSchoolDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21396,7 +20839,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21405,7 +20847,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21422,8 +20863,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21463,7 +20902,6 @@ public MediumOfInstructionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21472,7 +20910,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21481,7 +20918,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21498,8 +20934,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21539,7 +20973,6 @@ public MethodCreditEarnedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21548,7 +20981,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21557,7 +20989,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21574,8 +21005,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21615,7 +21044,6 @@ public MigrantEducationProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21624,7 +21052,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21633,7 +21060,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21650,8 +21076,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21691,7 +21115,6 @@ public ModelEntityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21700,7 +21123,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21709,7 +21131,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21726,8 +21147,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21767,7 +21186,6 @@ public MonitoredDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21776,7 +21194,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21785,7 +21202,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21802,8 +21218,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21843,7 +21257,6 @@ public NeglectedOrDelinquentProgramDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21852,7 +21265,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21861,7 +21273,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21878,8 +21289,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21919,7 +21328,6 @@ public NeglectedOrDelinquentProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -21928,7 +21336,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -21937,7 +21344,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -21954,8 +21360,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -21995,7 +21399,6 @@ public NetworkPurposeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -22004,7 +21407,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -22013,7 +21415,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -22030,8 +21431,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -22784,7 +22183,6 @@ public OperationalStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -22793,7 +22191,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -22802,7 +22199,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -22819,8 +22215,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23108,7 +22502,6 @@ public OtherNameTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23117,7 +22510,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23126,7 +22518,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23143,8 +22534,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23184,7 +22573,6 @@ public ParticipationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23193,7 +22581,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23202,7 +22589,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23219,8 +22605,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23260,7 +22644,6 @@ public ParticipationStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23269,7 +22652,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23278,7 +22660,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23295,8 +22676,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23336,7 +22715,6 @@ public PerformanceBaseConversionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23345,7 +22723,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23354,7 +22731,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23371,8 +22747,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23412,7 +22786,6 @@ public PerformanceLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23421,7 +22794,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23430,7 +22802,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23447,8 +22818,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23539,7 +22908,6 @@ public PersonalInformationVerificationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23548,7 +22916,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23557,7 +22924,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23574,8 +22940,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23615,7 +22979,6 @@ public PlatformTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23624,7 +22987,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23633,7 +22995,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23650,8 +23011,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23691,7 +23050,6 @@ public PopulationServedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23700,7 +23058,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23709,7 +23066,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23726,8 +23082,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23767,7 +23121,6 @@ public PostingResultDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23776,7 +23129,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23785,7 +23137,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23802,8 +23153,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -23905,7 +23254,6 @@ public PostSecondaryEventCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -23914,7 +23262,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -23923,7 +23270,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -23940,8 +23286,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24119,7 +23463,6 @@ public PostSecondaryInstitutionLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24128,7 +23471,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24137,7 +23479,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24154,8 +23495,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24246,7 +23585,6 @@ public PrimaryLearningDeviceAccessDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24255,7 +23593,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24264,7 +23601,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24281,8 +23617,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24322,7 +23656,6 @@ public PrimaryLearningDeviceAwayFromSchoolDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24331,7 +23664,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24340,7 +23672,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24357,8 +23688,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24398,7 +23727,6 @@ public PrimaryLearningDeviceProviderDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24407,7 +23735,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24416,7 +23743,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24433,8 +23759,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24474,7 +23798,6 @@ public ProficiencyDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24483,7 +23806,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24492,7 +23814,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24509,8 +23830,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24638,7 +23957,6 @@ public ProgramAssignmentDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24647,7 +23965,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24656,7 +23973,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24673,8 +23989,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -24765,7 +24079,6 @@ public ProgramCharacteristicDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -24774,7 +24087,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -24783,7 +24095,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -24800,8 +24111,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25372,7 +24681,6 @@ public ProgramEvaluationPeriodDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25381,7 +24689,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25390,7 +24697,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25407,8 +24713,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25511,7 +24815,6 @@ public ProgramEvaluationTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25520,7 +24823,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25529,7 +24831,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25546,8 +24847,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25691,7 +24990,6 @@ public ProgramSponsorDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25700,7 +24998,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25709,7 +25006,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25726,8 +25022,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25767,7 +25061,6 @@ public ProgramTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25776,7 +25069,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25785,7 +25077,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25802,8 +25093,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25843,7 +25132,6 @@ public ProgressDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25852,7 +25140,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25861,7 +25148,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25878,8 +25164,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -25919,7 +25203,6 @@ public ProgressLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -25928,7 +25211,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -25937,7 +25219,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -25954,8 +25235,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26112,7 +25391,6 @@ public ProviderCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26121,7 +25399,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26130,7 +25407,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26147,8 +25423,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26188,7 +25462,6 @@ public ProviderProfitabilityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26197,7 +25470,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26206,7 +25478,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26223,8 +25494,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26264,7 +25533,6 @@ public ProviderStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26273,7 +25541,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26282,7 +25549,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26299,8 +25565,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26340,7 +25604,6 @@ public PublicationStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26349,7 +25612,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26358,7 +25620,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26375,8 +25636,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26416,7 +25675,6 @@ public QuestionFormDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26425,7 +25683,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26434,7 +25691,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26451,8 +25707,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26492,7 +25746,6 @@ public RaceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26501,7 +25754,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26510,7 +25762,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26527,8 +25778,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26568,7 +25817,6 @@ public RatingLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26577,7 +25825,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26586,7 +25833,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26603,8 +25849,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26644,7 +25888,6 @@ public ReasonExitedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26653,7 +25896,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26662,7 +25904,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26679,8 +25920,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26720,7 +25959,6 @@ public ReasonNotTestedDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26729,7 +25967,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26738,7 +25975,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26755,8 +25991,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26796,7 +26030,6 @@ public RecognitionTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26805,7 +26038,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26814,7 +26046,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26831,8 +26062,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26872,7 +26101,6 @@ public RelationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26881,7 +26109,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26890,7 +26117,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26907,8 +26133,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -26948,7 +26172,6 @@ public RepeatIdentifierDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -26957,7 +26180,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -26966,7 +26188,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -26983,8 +26204,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27325,7 +26544,6 @@ public ReporterDescriptionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27334,7 +26552,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27343,7 +26560,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27360,8 +26576,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27401,7 +26615,6 @@ public ReportingTagDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27410,7 +26623,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27419,7 +26631,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27436,8 +26647,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27477,7 +26686,6 @@ public ResidencyStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27486,7 +26694,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27495,7 +26702,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27512,8 +26718,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27553,7 +26757,6 @@ public ResponseIndicatorDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27562,7 +26765,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27571,7 +26773,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27588,8 +26789,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27629,7 +26828,6 @@ public ResponsibilityDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27638,7 +26836,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27647,7 +26844,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27664,8 +26860,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27899,7 +27093,6 @@ public RestraintEventReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27908,7 +27101,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27917,7 +27109,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -27934,8 +27125,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -27975,7 +27164,6 @@ public ResultDatatypeTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -27984,7 +27172,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -27993,7 +27180,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28010,8 +27196,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28051,7 +27235,6 @@ public RetestIndicatorDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -28060,7 +27243,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28069,7 +27251,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28086,8 +27267,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28369,7 +27548,6 @@ public SchoolCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -28378,7 +27556,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28387,7 +27564,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28404,8 +27580,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28445,7 +27619,6 @@ public SchoolChoiceBasisDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -28454,7 +27627,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28463,7 +27635,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28480,8 +27651,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28521,7 +27690,6 @@ public SchoolChoiceImplementStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -28530,7 +27698,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28539,7 +27706,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28556,8 +27722,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28597,7 +27761,6 @@ public SchoolFoodServiceProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -28606,7 +27769,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28615,7 +27777,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28632,8 +27793,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -28724,7 +27883,6 @@ public SchoolTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -28733,7 +27891,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -28742,7 +27899,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -28759,8 +27915,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29176,7 +28330,6 @@ public SectionCharacteristicDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29185,7 +28338,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29194,7 +28346,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29211,8 +28362,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29464,7 +28613,6 @@ public SectionTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29473,7 +28621,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29482,7 +28629,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29499,8 +28645,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29540,7 +28684,6 @@ public SeparationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29549,7 +28692,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29558,7 +28700,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29575,8 +28716,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29616,7 +28755,6 @@ public SeparationReasonDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29625,7 +28763,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29634,7 +28771,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29651,8 +28787,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29692,7 +28826,6 @@ public ServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29701,7 +28834,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29710,7 +28842,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -29727,8 +28858,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -29973,7 +29102,6 @@ public SexDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -29982,7 +29110,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -29991,7 +29118,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -30008,8 +29134,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -30166,7 +29290,6 @@ public SourceSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -30175,7 +29298,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -30184,7 +29306,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -30201,8 +29322,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -30242,7 +29361,6 @@ public SpecialEducationProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -30251,7 +29369,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -30260,7 +29377,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -30277,8 +29393,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -30318,7 +29432,6 @@ public SpecialEducationSettingDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -30327,7 +29440,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -30336,7 +29448,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -30353,8 +29464,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -31002,7 +30111,6 @@ public StaffClassificationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -31011,7 +30119,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -31020,7 +30127,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -31037,8 +30143,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -32125,7 +31229,6 @@ public StaffIdentificationSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -32134,7 +31237,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -32143,7 +31245,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -32160,8 +31261,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -32490,7 +31589,6 @@ public StaffLeaveEventCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -32499,7 +31597,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -32508,7 +31605,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -32525,8 +31621,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -33440,7 +32534,6 @@ public StateAbbreviationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -33449,7 +32542,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -33458,7 +32550,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -33475,8 +32566,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -35555,7 +34644,6 @@ public StudentCharacteristicDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -35564,7 +34652,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -35573,7 +34660,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -35590,8 +34676,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -38371,7 +37455,6 @@ public StudentIdentificationSystemDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -38380,7 +37463,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -38389,7 +37471,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -38406,8 +37487,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -39385,7 +38464,6 @@ public StudentParticipationCodeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -39394,7 +38472,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -39403,7 +38480,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -39420,8 +38496,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -41839,7 +40913,6 @@ public SubmissionStatusDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -41848,7 +40921,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -41857,7 +40929,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -41874,8 +40945,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -41915,7 +40984,6 @@ public SupporterMilitaryConnectionDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -41924,7 +40992,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -41933,7 +41000,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -41950,8 +41016,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -42089,7 +41153,6 @@ public SurveyCategoryDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -42098,7 +41161,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -42107,7 +41169,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -42124,8 +41185,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -42224,7 +41283,6 @@ public SurveyLevelDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -42233,7 +41291,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -42242,7 +41299,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -42259,8 +41315,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43407,7 +42461,6 @@ public TeachingCredentialBasisDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43416,7 +42469,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43425,7 +42477,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43442,8 +42493,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43483,7 +42532,6 @@ public TeachingCredentialDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43492,7 +42540,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43501,7 +42548,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43518,8 +42564,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43559,7 +42603,6 @@ public TechnicalSkillsAssessmentDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43568,7 +42611,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43577,7 +42619,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43594,8 +42635,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43635,7 +42674,6 @@ public TelephoneNumberTypeDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43644,7 +42682,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43653,7 +42690,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43670,8 +42706,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43711,7 +42745,6 @@ public TermDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43720,7 +42753,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43729,7 +42761,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43746,8 +42777,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43787,7 +42816,6 @@ public TitleIPartAParticipantDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43796,7 +42824,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43805,7 +42832,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43822,8 +42848,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43863,7 +42887,6 @@ public TitleIPartAProgramServiceDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43872,7 +42895,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43881,7 +42903,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43898,8 +42919,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -43939,7 +42958,6 @@ public TitleIPartASchoolDesignationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -43948,7 +42966,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -43957,7 +42974,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -43974,8 +42990,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -44015,7 +43029,6 @@ public TribalAffiliationDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -44024,7 +43037,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -44033,7 +43045,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -44050,8 +43061,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -44091,7 +43100,6 @@ public VisaDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -44100,7 +43108,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -44109,7 +43116,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -44126,8 +43132,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: @@ -44167,7 +43171,6 @@ public WeaponDescriptorMappingContract( bool isEffectiveBeginDateSupported, bool isEffectiveEndDateSupported, bool isNamespaceSupported, - bool isPriorDescriptorIdSupported, bool isShortDescriptionSupported ) { @@ -44176,7 +43179,6 @@ bool isShortDescriptionSupported IsEffectiveBeginDateSupported = isEffectiveBeginDateSupported; IsEffectiveEndDateSupported = isEffectiveEndDateSupported; IsNamespaceSupported = isNamespaceSupported; - IsPriorDescriptorIdSupported = isPriorDescriptorIdSupported; IsShortDescriptionSupported = isShortDescriptionSupported; } @@ -44185,7 +43187,6 @@ bool isShortDescriptionSupported public bool IsEffectiveBeginDateSupported { get; } public bool IsEffectiveEndDateSupported { get; } public bool IsNamespaceSupported { get; } - public bool IsPriorDescriptorIdSupported { get; } public bool IsShortDescriptionSupported { get; } bool IMappingContract.IsMemberSupported(string memberName) @@ -44202,8 +43203,6 @@ bool IMappingContract.IsMemberSupported(string memberName) return IsEffectiveEndDateSupported; case "Namespace": return IsNamespaceSupported; - case "PriorDescriptorId": - return IsPriorDescriptorIdSupported; case "ShortDescription": return IsShortDescriptionSupported; default: diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs index 5a0dace7c5..fa1272a621 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Models_Mappers_EntityMapper.generated.approved.cs @@ -32,7 +32,8 @@ public static bool SynchronizeTo(this IAbsenceEventCategoryDescriptor source, IA // Detect primary key changes if ( - (target.AbsenceEventCategoryDescriptorId != source.AbsenceEventCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AbsenceEventCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77,13 +78,6 @@ public static bool SynchronizeTo(this IAbsenceEventCategoryDescriptor source, IA isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -131,9 +125,6 @@ public static void MapTo(this IAbsenceEventCategoryDescriptor source, IAbsenceEv if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -193,7 +184,8 @@ public static bool SynchronizeTo(this IAcademicHonorCategoryDescriptor source, I // Detect primary key changes if ( - (target.AcademicHonorCategoryDescriptorId != source.AcademicHonorCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AcademicHonorCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -238,13 +230,6 @@ public static bool SynchronizeTo(this IAcademicHonorCategoryDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -292,9 +277,6 @@ public static void MapTo(this IAcademicHonorCategoryDescriptor source, IAcademic if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -354,7 +336,8 @@ public static bool SynchronizeTo(this IAcademicSubjectDescriptor source, IAcadem // Detect primary key changes if ( - (target.AcademicSubjectDescriptorId != source.AcademicSubjectDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AcademicSubjectDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -399,13 +382,6 @@ public static bool SynchronizeTo(this IAcademicSubjectDescriptor source, IAcadem isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -453,9 +429,6 @@ public static void MapTo(this IAcademicSubjectDescriptor source, IAcademicSubjec if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -641,7 +614,8 @@ public static bool SynchronizeTo(this IAccommodationDescriptor source, IAccommod // Detect primary key changes if ( - (target.AccommodationDescriptorId != source.AccommodationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AccommodationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -686,13 +660,6 @@ public static bool SynchronizeTo(this IAccommodationDescriptor source, IAccommod isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -740,9 +707,6 @@ public static void MapTo(this IAccommodationDescriptor source, IAccommodationDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -942,7 +906,8 @@ public static bool SynchronizeTo(this IAccountTypeDescriptor source, IAccountTyp // Detect primary key changes if ( - (target.AccountTypeDescriptorId != source.AccountTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AccountTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -987,13 +952,6 @@ public static bool SynchronizeTo(this IAccountTypeDescriptor source, IAccountTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1041,9 +999,6 @@ public static void MapTo(this IAccountTypeDescriptor source, IAccountTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1103,7 +1058,8 @@ public static bool SynchronizeTo(this IAchievementCategoryDescriptor source, IAc // Detect primary key changes if ( - (target.AchievementCategoryDescriptorId != source.AchievementCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AchievementCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1148,13 +1104,6 @@ public static bool SynchronizeTo(this IAchievementCategoryDescriptor source, IAc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1202,9 +1151,6 @@ public static void MapTo(this IAchievementCategoryDescriptor source, IAchievemen if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1264,7 +1210,8 @@ public static bool SynchronizeTo(this IAdditionalCreditTypeDescriptor source, IA // Detect primary key changes if ( - (target.AdditionalCreditTypeDescriptorId != source.AdditionalCreditTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AdditionalCreditTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1309,13 +1256,6 @@ public static bool SynchronizeTo(this IAdditionalCreditTypeDescriptor source, IA isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1363,9 +1303,6 @@ public static void MapTo(this IAdditionalCreditTypeDescriptor source, IAdditiona if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1425,7 +1362,8 @@ public static bool SynchronizeTo(this IAddressTypeDescriptor source, IAddressTyp // Detect primary key changes if ( - (target.AddressTypeDescriptorId != source.AddressTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AddressTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1470,13 +1408,6 @@ public static bool SynchronizeTo(this IAddressTypeDescriptor source, IAddressTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1524,9 +1455,6 @@ public static void MapTo(this IAddressTypeDescriptor source, IAddressTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1586,7 +1514,8 @@ public static bool SynchronizeTo(this IAdministrationEnvironmentDescriptor sourc // Detect primary key changes if ( - (target.AdministrationEnvironmentDescriptorId != source.AdministrationEnvironmentDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AdministrationEnvironmentDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1631,13 +1560,6 @@ public static bool SynchronizeTo(this IAdministrationEnvironmentDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1685,9 +1607,6 @@ public static void MapTo(this IAdministrationEnvironmentDescriptor source, IAdmi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1747,7 +1666,8 @@ public static bool SynchronizeTo(this IAdministrativeFundingControlDescriptor so // Detect primary key changes if ( - (target.AdministrativeFundingControlDescriptorId != source.AdministrativeFundingControlDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AdministrativeFundingControlDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1792,13 +1712,6 @@ public static bool SynchronizeTo(this IAdministrativeFundingControlDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -1846,9 +1759,6 @@ public static void MapTo(this IAdministrativeFundingControlDescriptor source, IA if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -1908,7 +1818,8 @@ public static bool SynchronizeTo(this IAncestryEthnicOriginDescriptor source, IA // Detect primary key changes if ( - (target.AncestryEthnicOriginDescriptorId != source.AncestryEthnicOriginDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AncestryEthnicOriginDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -1953,13 +1864,6 @@ public static bool SynchronizeTo(this IAncestryEthnicOriginDescriptor source, IA isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -2007,9 +1911,6 @@ public static void MapTo(this IAncestryEthnicOriginDescriptor source, IAncestryE if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -3572,7 +3473,8 @@ public static bool SynchronizeTo(this IAssessmentCategoryDescriptor source, IAss // Detect primary key changes if ( - (target.AssessmentCategoryDescriptorId != source.AssessmentCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -3617,13 +3519,6 @@ public static bool SynchronizeTo(this IAssessmentCategoryDescriptor source, IAss isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -3671,9 +3566,6 @@ public static void MapTo(this IAssessmentCategoryDescriptor source, IAssessmentC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -3733,7 +3625,8 @@ public static bool SynchronizeTo(this IAssessmentIdentificationSystemDescriptor // Detect primary key changes if ( - (target.AssessmentIdentificationSystemDescriptorId != source.AssessmentIdentificationSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentIdentificationSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -3778,13 +3671,6 @@ public static bool SynchronizeTo(this IAssessmentIdentificationSystemDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -3832,9 +3718,6 @@ public static void MapTo(this IAssessmentIdentificationSystemDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -4254,7 +4137,8 @@ public static bool SynchronizeTo(this IAssessmentItemCategoryDescriptor source, // Detect primary key changes if ( - (target.AssessmentItemCategoryDescriptorId != source.AssessmentItemCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentItemCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -4299,13 +4183,6 @@ public static bool SynchronizeTo(this IAssessmentItemCategoryDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -4353,9 +4230,6 @@ public static void MapTo(this IAssessmentItemCategoryDescriptor source, IAssessm if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -4415,7 +4289,8 @@ public static bool SynchronizeTo(this IAssessmentItemResultDescriptor source, IA // Detect primary key changes if ( - (target.AssessmentItemResultDescriptorId != source.AssessmentItemResultDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentItemResultDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -4460,13 +4335,6 @@ public static bool SynchronizeTo(this IAssessmentItemResultDescriptor source, IA isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -4514,9 +4382,6 @@ public static void MapTo(this IAssessmentItemResultDescriptor source, IAssessmen if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -4576,7 +4441,8 @@ public static bool SynchronizeTo(this IAssessmentPeriodDescriptor source, IAsses // Detect primary key changes if ( - (target.AssessmentPeriodDescriptorId != source.AssessmentPeriodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentPeriodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -4621,13 +4487,6 @@ public static bool SynchronizeTo(this IAssessmentPeriodDescriptor source, IAsses isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -4675,9 +4534,6 @@ public static void MapTo(this IAssessmentPeriodDescriptor source, IAssessmentPer if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -4737,7 +4593,8 @@ public static bool SynchronizeTo(this IAssessmentReportingMethodDescriptor sourc // Detect primary key changes if ( - (target.AssessmentReportingMethodDescriptorId != source.AssessmentReportingMethodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssessmentReportingMethodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -4782,13 +4639,6 @@ public static bool SynchronizeTo(this IAssessmentReportingMethodDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -4836,9 +4686,6 @@ public static void MapTo(this IAssessmentReportingMethodDescriptor source, IAsse if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5133,7 +4980,8 @@ public static bool SynchronizeTo(this IAssignmentLateStatusDescriptor source, IA // Detect primary key changes if ( - (target.AssignmentLateStatusDescriptorId != source.AssignmentLateStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AssignmentLateStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5178,13 +5026,6 @@ public static bool SynchronizeTo(this IAssignmentLateStatusDescriptor source, IA isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5232,9 +5073,6 @@ public static void MapTo(this IAssignmentLateStatusDescriptor source, IAssignmen if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5294,7 +5132,8 @@ public static bool SynchronizeTo(this IAttemptStatusDescriptor source, IAttemptS // Detect primary key changes if ( - (target.AttemptStatusDescriptorId != source.AttemptStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AttemptStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5339,13 +5178,6 @@ public static bool SynchronizeTo(this IAttemptStatusDescriptor source, IAttemptS isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5393,9 +5225,6 @@ public static void MapTo(this IAttemptStatusDescriptor source, IAttemptStatusDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5455,7 +5284,8 @@ public static bool SynchronizeTo(this IAttendanceEventCategoryDescriptor source, // Detect primary key changes if ( - (target.AttendanceEventCategoryDescriptorId != source.AttendanceEventCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on AttendanceEventCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5500,13 +5330,6 @@ public static bool SynchronizeTo(this IAttendanceEventCategoryDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5554,9 +5377,6 @@ public static void MapTo(this IAttendanceEventCategoryDescriptor source, IAttend if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5803,7 +5623,8 @@ public static bool SynchronizeTo(this IBarrierToInternetAccessInResidenceDescrip // Detect primary key changes if ( - (target.BarrierToInternetAccessInResidenceDescriptorId != source.BarrierToInternetAccessInResidenceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on BarrierToInternetAccessInResidenceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -5848,13 +5669,6 @@ public static bool SynchronizeTo(this IBarrierToInternetAccessInResidenceDescrip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -5902,9 +5716,6 @@ public static void MapTo(this IBarrierToInternetAccessInResidenceDescriptor sour if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -5964,7 +5775,8 @@ public static bool SynchronizeTo(this IBehaviorDescriptor source, IBehaviorDescr // Detect primary key changes if ( - (target.BehaviorDescriptorId != source.BehaviorDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on BehaviorDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -6009,13 +5821,6 @@ public static bool SynchronizeTo(this IBehaviorDescriptor source, IBehaviorDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -6063,9 +5868,6 @@ public static void MapTo(this IBehaviorDescriptor source, IBehaviorDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -6913,7 +6715,8 @@ public static bool SynchronizeTo(this ICalendarEventDescriptor source, ICalendar // Detect primary key changes if ( - (target.CalendarEventDescriptorId != source.CalendarEventDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CalendarEventDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -6958,13 +6761,6 @@ public static bool SynchronizeTo(this ICalendarEventDescriptor source, ICalendar isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7012,9 +6808,6 @@ public static void MapTo(this ICalendarEventDescriptor source, ICalendarEventDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7074,7 +6867,8 @@ public static bool SynchronizeTo(this ICalendarTypeDescriptor source, ICalendarT // Detect primary key changes if ( - (target.CalendarTypeDescriptorId != source.CalendarTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CalendarTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7119,13 +6913,6 @@ public static bool SynchronizeTo(this ICalendarTypeDescriptor source, ICalendarT isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7173,9 +6960,6 @@ public static void MapTo(this ICalendarTypeDescriptor source, ICalendarTypeDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7235,7 +7019,8 @@ public static bool SynchronizeTo(this ICareerPathwayDescriptor source, ICareerPa // Detect primary key changes if ( - (target.CareerPathwayDescriptorId != source.CareerPathwayDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CareerPathwayDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7280,13 +7065,6 @@ public static bool SynchronizeTo(this ICareerPathwayDescriptor source, ICareerPa isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7334,9 +7112,6 @@ public static void MapTo(this ICareerPathwayDescriptor source, ICareerPathwayDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7396,7 +7171,8 @@ public static bool SynchronizeTo(this ICharterApprovalAgencyTypeDescriptor sourc // Detect primary key changes if ( - (target.CharterApprovalAgencyTypeDescriptorId != source.CharterApprovalAgencyTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CharterApprovalAgencyTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7441,13 +7217,6 @@ public static bool SynchronizeTo(this ICharterApprovalAgencyTypeDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7495,9 +7264,6 @@ public static void MapTo(this ICharterApprovalAgencyTypeDescriptor source, IChar if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -7557,7 +7323,8 @@ public static bool SynchronizeTo(this ICharterStatusDescriptor source, ICharterS // Detect primary key changes if ( - (target.CharterStatusDescriptorId != source.CharterStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CharterStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -7602,13 +7369,6 @@ public static bool SynchronizeTo(this ICharterStatusDescriptor source, ICharterS isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -7656,9 +7416,6 @@ public static void MapTo(this ICharterStatusDescriptor source, ICharterStatusDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -8030,7 +7787,8 @@ public static bool SynchronizeTo(this ICitizenshipStatusDescriptor source, ICiti // Detect primary key changes if ( - (target.CitizenshipStatusDescriptorId != source.CitizenshipStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CitizenshipStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -8075,13 +7833,6 @@ public static bool SynchronizeTo(this ICitizenshipStatusDescriptor source, ICiti isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -8129,9 +7880,6 @@ public static void MapTo(this ICitizenshipStatusDescriptor source, ICitizenshipS if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -8405,7 +8153,8 @@ public static bool SynchronizeTo(this IClassroomPositionDescriptor source, IClas // Detect primary key changes if ( - (target.ClassroomPositionDescriptorId != source.ClassroomPositionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ClassroomPositionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -8450,13 +8199,6 @@ public static bool SynchronizeTo(this IClassroomPositionDescriptor source, IClas isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -8504,9 +8246,6 @@ public static void MapTo(this IClassroomPositionDescriptor source, IClassroomPos if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -8799,7 +8538,8 @@ public static bool SynchronizeTo(this ICohortScopeDescriptor source, ICohortScop // Detect primary key changes if ( - (target.CohortScopeDescriptorId != source.CohortScopeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CohortScopeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -8844,13 +8584,6 @@ public static bool SynchronizeTo(this ICohortScopeDescriptor source, ICohortScop isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -8898,9 +8631,6 @@ public static void MapTo(this ICohortScopeDescriptor source, ICohortScopeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -8960,7 +8690,8 @@ public static bool SynchronizeTo(this ICohortTypeDescriptor source, ICohortTypeD // Detect primary key changes if ( - (target.CohortTypeDescriptorId != source.CohortTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CohortTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -9005,13 +8736,6 @@ public static bool SynchronizeTo(this ICohortTypeDescriptor source, ICohortTypeD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -9059,9 +8783,6 @@ public static void MapTo(this ICohortTypeDescriptor source, ICohortTypeDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -9121,7 +8842,8 @@ public static bool SynchronizeTo(this ICohortYearTypeDescriptor source, ICohortY // Detect primary key changes if ( - (target.CohortYearTypeDescriptorId != source.CohortYearTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CohortYearTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -9166,13 +8888,6 @@ public static bool SynchronizeTo(this ICohortYearTypeDescriptor source, ICohortY isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -9220,9 +8935,6 @@ public static void MapTo(this ICohortYearTypeDescriptor source, ICohortYearTypeD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -9964,7 +9676,8 @@ public static bool SynchronizeTo(this ICompetencyLevelDescriptor source, ICompet // Detect primary key changes if ( - (target.CompetencyLevelDescriptorId != source.CompetencyLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CompetencyLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -10009,13 +9722,6 @@ public static bool SynchronizeTo(this ICompetencyLevelDescriptor source, ICompet isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -10063,9 +9769,6 @@ public static void MapTo(this ICompetencyLevelDescriptor source, ICompetencyLeve if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -11627,7 +11330,8 @@ public static bool SynchronizeTo(this IContactTypeDescriptor source, IContactTyp // Detect primary key changes if ( - (target.ContactTypeDescriptorId != source.ContactTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ContactTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -11672,13 +11376,6 @@ public static bool SynchronizeTo(this IContactTypeDescriptor source, IContactTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -11726,9 +11423,6 @@ public static void MapTo(this IContactTypeDescriptor source, IContactTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -11788,7 +11482,8 @@ public static bool SynchronizeTo(this IContentClassDescriptor source, IContentCl // Detect primary key changes if ( - (target.ContentClassDescriptorId != source.ContentClassDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ContentClassDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -11833,13 +11528,6 @@ public static bool SynchronizeTo(this IContentClassDescriptor source, IContentCl isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -11887,9 +11575,6 @@ public static void MapTo(this IContentClassDescriptor source, IContentClassDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -11949,7 +11634,8 @@ public static bool SynchronizeTo(this IContinuationOfServicesReasonDescriptor so // Detect primary key changes if ( - (target.ContinuationOfServicesReasonDescriptorId != source.ContinuationOfServicesReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ContinuationOfServicesReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -11994,13 +11680,6 @@ public static bool SynchronizeTo(this IContinuationOfServicesReasonDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -12048,9 +11727,6 @@ public static void MapTo(this IContinuationOfServicesReasonDescriptor source, IC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -12110,7 +11786,8 @@ public static bool SynchronizeTo(this ICostRateDescriptor source, ICostRateDescr // Detect primary key changes if ( - (target.CostRateDescriptorId != source.CostRateDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CostRateDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -12155,13 +11832,6 @@ public static bool SynchronizeTo(this ICostRateDescriptor source, ICostRateDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -12209,9 +11879,6 @@ public static void MapTo(this ICostRateDescriptor source, ICostRateDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -12271,7 +11938,8 @@ public static bool SynchronizeTo(this ICountryDescriptor source, ICountryDescrip // Detect primary key changes if ( - (target.CountryDescriptorId != source.CountryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CountryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -12316,13 +11984,6 @@ public static bool SynchronizeTo(this ICountryDescriptor source, ICountryDescrip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -12370,9 +12031,6 @@ public static void MapTo(this ICountryDescriptor source, ICountryDescriptor targ if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -13248,7 +12906,8 @@ public static bool SynchronizeTo(this ICourseAttemptResultDescriptor source, ICo // Detect primary key changes if ( - (target.CourseAttemptResultDescriptorId != source.CourseAttemptResultDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseAttemptResultDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -13293,13 +12952,6 @@ public static bool SynchronizeTo(this ICourseAttemptResultDescriptor source, ICo isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -13347,9 +12999,6 @@ public static void MapTo(this ICourseAttemptResultDescriptor source, ICourseAtte if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -13409,7 +13058,8 @@ public static bool SynchronizeTo(this ICourseDefinedByDescriptor source, ICourse // Detect primary key changes if ( - (target.CourseDefinedByDescriptorId != source.CourseDefinedByDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseDefinedByDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -13454,13 +13104,6 @@ public static bool SynchronizeTo(this ICourseDefinedByDescriptor source, ICourse isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -13508,9 +13151,6 @@ public static void MapTo(this ICourseDefinedByDescriptor source, ICourseDefinedB if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -13570,7 +13210,8 @@ public static bool SynchronizeTo(this ICourseGPAApplicabilityDescriptor source, // Detect primary key changes if ( - (target.CourseGPAApplicabilityDescriptorId != source.CourseGPAApplicabilityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseGPAApplicabilityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -13615,13 +13256,6 @@ public static bool SynchronizeTo(this ICourseGPAApplicabilityDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -13669,9 +13303,6 @@ public static void MapTo(this ICourseGPAApplicabilityDescriptor source, ICourseG if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -13731,7 +13362,8 @@ public static bool SynchronizeTo(this ICourseIdentificationSystemDescriptor sour // Detect primary key changes if ( - (target.CourseIdentificationSystemDescriptorId != source.CourseIdentificationSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseIdentificationSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -13776,13 +13408,6 @@ public static bool SynchronizeTo(this ICourseIdentificationSystemDescriptor sour isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -13830,9 +13455,6 @@ public static void MapTo(this ICourseIdentificationSystemDescriptor source, ICou if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -13892,7 +13514,8 @@ public static bool SynchronizeTo(this ICourseLevelCharacteristicDescriptor sourc // Detect primary key changes if ( - (target.CourseLevelCharacteristicDescriptorId != source.CourseLevelCharacteristicDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseLevelCharacteristicDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -13937,13 +13560,6 @@ public static bool SynchronizeTo(this ICourseLevelCharacteristicDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -13991,9 +13607,6 @@ public static void MapTo(this ICourseLevelCharacteristicDescriptor source, ICour if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -14458,7 +14071,8 @@ public static bool SynchronizeTo(this ICourseRepeatCodeDescriptor source, ICours // Detect primary key changes if ( - (target.CourseRepeatCodeDescriptorId != source.CourseRepeatCodeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CourseRepeatCodeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -14503,13 +14117,6 @@ public static bool SynchronizeTo(this ICourseRepeatCodeDescriptor source, ICours isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -14557,9 +14164,6 @@ public static void MapTo(this ICourseRepeatCodeDescriptor source, ICourseRepeatC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -16050,7 +15654,8 @@ public static bool SynchronizeTo(this ICredentialFieldDescriptor source, ICreden // Detect primary key changes if ( - (target.CredentialFieldDescriptorId != source.CredentialFieldDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CredentialFieldDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16095,13 +15700,6 @@ public static bool SynchronizeTo(this ICredentialFieldDescriptor source, ICreden isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16149,9 +15747,6 @@ public static void MapTo(this ICredentialFieldDescriptor source, ICredentialFiel if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -16211,7 +15806,8 @@ public static bool SynchronizeTo(this ICredentialTypeDescriptor source, ICredent // Detect primary key changes if ( - (target.CredentialTypeDescriptorId != source.CredentialTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CredentialTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16256,13 +15852,6 @@ public static bool SynchronizeTo(this ICredentialTypeDescriptor source, ICredent isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16310,9 +15899,6 @@ public static void MapTo(this ICredentialTypeDescriptor source, ICredentialTypeD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -16372,7 +15958,8 @@ public static bool SynchronizeTo(this ICreditCategoryDescriptor source, ICreditC // Detect primary key changes if ( - (target.CreditCategoryDescriptorId != source.CreditCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CreditCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16417,13 +16004,6 @@ public static bool SynchronizeTo(this ICreditCategoryDescriptor source, ICreditC isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16471,9 +16051,6 @@ public static void MapTo(this ICreditCategoryDescriptor source, ICreditCategoryD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -16533,7 +16110,8 @@ public static bool SynchronizeTo(this ICreditTypeDescriptor source, ICreditTypeD // Detect primary key changes if ( - (target.CreditTypeDescriptorId != source.CreditTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CreditTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16578,13 +16156,6 @@ public static bool SynchronizeTo(this ICreditTypeDescriptor source, ICreditTypeD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16632,9 +16203,6 @@ public static void MapTo(this ICreditTypeDescriptor source, ICreditTypeDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -16694,7 +16262,8 @@ public static bool SynchronizeTo(this ICTEProgramServiceDescriptor source, ICTEP // Detect primary key changes if ( - (target.CTEProgramServiceDescriptorId != source.CTEProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CTEProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16739,13 +16308,6 @@ public static bool SynchronizeTo(this ICTEProgramServiceDescriptor source, ICTEP isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16793,9 +16355,6 @@ public static void MapTo(this ICTEProgramServiceDescriptor source, ICTEProgramSe if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -16855,7 +16414,8 @@ public static bool SynchronizeTo(this ICurriculumUsedDescriptor source, ICurricu // Detect primary key changes if ( - (target.CurriculumUsedDescriptorId != source.CurriculumUsedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on CurriculumUsedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -16900,13 +16460,6 @@ public static bool SynchronizeTo(this ICurriculumUsedDescriptor source, ICurricu isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -16954,9 +16507,6 @@ public static void MapTo(this ICurriculumUsedDescriptor source, ICurriculumUsedD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -17016,7 +16566,8 @@ public static bool SynchronizeTo(this IDeliveryMethodDescriptor source, IDeliver // Detect primary key changes if ( - (target.DeliveryMethodDescriptorId != source.DeliveryMethodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DeliveryMethodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -17061,13 +16612,6 @@ public static bool SynchronizeTo(this IDeliveryMethodDescriptor source, IDeliver isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -17115,9 +16659,6 @@ public static void MapTo(this IDeliveryMethodDescriptor source, IDeliveryMethodD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -17358,7 +16899,8 @@ public static bool SynchronizeTo(this IDiagnosisDescriptor source, IDiagnosisDes // Detect primary key changes if ( - (target.DiagnosisDescriptorId != source.DiagnosisDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DiagnosisDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -17403,13 +16945,6 @@ public static bool SynchronizeTo(this IDiagnosisDescriptor source, IDiagnosisDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -17457,9 +16992,6 @@ public static void MapTo(this IDiagnosisDescriptor source, IDiagnosisDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -17519,7 +17051,8 @@ public static bool SynchronizeTo(this IDiplomaLevelDescriptor source, IDiplomaLe // Detect primary key changes if ( - (target.DiplomaLevelDescriptorId != source.DiplomaLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DiplomaLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -17564,13 +17097,6 @@ public static bool SynchronizeTo(this IDiplomaLevelDescriptor source, IDiplomaLe isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -17618,9 +17144,6 @@ public static void MapTo(this IDiplomaLevelDescriptor source, IDiplomaLevelDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -17680,7 +17203,8 @@ public static bool SynchronizeTo(this IDiplomaTypeDescriptor source, IDiplomaTyp // Detect primary key changes if ( - (target.DiplomaTypeDescriptorId != source.DiplomaTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DiplomaTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -17725,13 +17249,6 @@ public static bool SynchronizeTo(this IDiplomaTypeDescriptor source, IDiplomaTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -17779,9 +17296,6 @@ public static void MapTo(this IDiplomaTypeDescriptor source, IDiplomaTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -17841,7 +17355,8 @@ public static bool SynchronizeTo(this IDisabilityDescriptor source, IDisabilityD // Detect primary key changes if ( - (target.DisabilityDescriptorId != source.DisabilityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisabilityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -17886,13 +17401,6 @@ public static bool SynchronizeTo(this IDisabilityDescriptor source, IDisabilityD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -17940,9 +17448,6 @@ public static void MapTo(this IDisabilityDescriptor source, IDisabilityDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -18002,7 +17507,8 @@ public static bool SynchronizeTo(this IDisabilityDesignationDescriptor source, I // Detect primary key changes if ( - (target.DisabilityDesignationDescriptorId != source.DisabilityDesignationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisabilityDesignationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -18047,13 +17553,6 @@ public static bool SynchronizeTo(this IDisabilityDesignationDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -18101,9 +17600,6 @@ public static void MapTo(this IDisabilityDesignationDescriptor source, IDisabili if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -18163,7 +17659,8 @@ public static bool SynchronizeTo(this IDisabilityDeterminationSourceTypeDescript // Detect primary key changes if ( - (target.DisabilityDeterminationSourceTypeDescriptorId != source.DisabilityDeterminationSourceTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisabilityDeterminationSourceTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -18208,13 +17705,6 @@ public static bool SynchronizeTo(this IDisabilityDeterminationSourceTypeDescript isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -18262,9 +17752,6 @@ public static void MapTo(this IDisabilityDeterminationSourceTypeDescriptor sourc if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -18772,7 +18259,8 @@ public static bool SynchronizeTo(this IDisciplineActionLengthDifferenceReasonDes // Detect primary key changes if ( - (target.DisciplineActionLengthDifferenceReasonDescriptorId != source.DisciplineActionLengthDifferenceReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisciplineActionLengthDifferenceReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -18817,13 +18305,6 @@ public static bool SynchronizeTo(this IDisciplineActionLengthDifferenceReasonDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -18871,9 +18352,6 @@ public static void MapTo(this IDisciplineActionLengthDifferenceReasonDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -18933,7 +18411,8 @@ public static bool SynchronizeTo(this IDisciplineDescriptor source, IDisciplineD // Detect primary key changes if ( - (target.DisciplineDescriptorId != source.DisciplineDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisciplineDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -18978,13 +18457,6 @@ public static bool SynchronizeTo(this IDisciplineDescriptor source, IDisciplineD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -19032,9 +18504,6 @@ public static void MapTo(this IDisciplineDescriptor source, IDisciplineDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -19553,7 +19022,8 @@ public static bool SynchronizeTo(this IDisciplineIncidentParticipationCodeDescri // Detect primary key changes if ( - (target.DisciplineIncidentParticipationCodeDescriptorId != source.DisciplineIncidentParticipationCodeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on DisciplineIncidentParticipationCodeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -19598,13 +19068,6 @@ public static bool SynchronizeTo(this IDisciplineIncidentParticipationCodeDescri isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -19652,9 +19115,6 @@ public static void MapTo(this IDisciplineIncidentParticipationCodeDescriptor sou if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -19714,7 +19174,8 @@ public static bool SynchronizeTo(this IEducationalEnvironmentDescriptor source, // Detect primary key changes if ( - (target.EducationalEnvironmentDescriptorId != source.EducationalEnvironmentDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducationalEnvironmentDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -19759,13 +19220,6 @@ public static bool SynchronizeTo(this IEducationalEnvironmentDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -19813,9 +19267,6 @@ public static void MapTo(this IEducationalEnvironmentDescriptor source, IEducati if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -21609,7 +21060,8 @@ public static bool SynchronizeTo(this IEducationOrganizationAssociationTypeDescr // Detect primary key changes if ( - (target.EducationOrganizationAssociationTypeDescriptorId != source.EducationOrganizationAssociationTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducationOrganizationAssociationTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -21654,13 +21106,6 @@ public static bool SynchronizeTo(this IEducationOrganizationAssociationTypeDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -21708,9 +21153,6 @@ public static void MapTo(this IEducationOrganizationAssociationTypeDescriptor so if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -21770,7 +21212,8 @@ public static bool SynchronizeTo(this IEducationOrganizationCategoryDescriptor s // Detect primary key changes if ( - (target.EducationOrganizationCategoryDescriptorId != source.EducationOrganizationCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducationOrganizationCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -21815,13 +21258,6 @@ public static bool SynchronizeTo(this IEducationOrganizationCategoryDescriptor s isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -21869,9 +21305,6 @@ public static void MapTo(this IEducationOrganizationCategoryDescriptor source, I if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -21931,7 +21364,8 @@ public static bool SynchronizeTo(this IEducationOrganizationIdentificationSystem // Detect primary key changes if ( - (target.EducationOrganizationIdentificationSystemDescriptorId != source.EducationOrganizationIdentificationSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducationOrganizationIdentificationSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -21976,13 +21410,6 @@ public static bool SynchronizeTo(this IEducationOrganizationIdentificationSystem isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -22030,9 +21457,6 @@ public static void MapTo(this IEducationOrganizationIdentificationSystemDescript if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -22655,7 +22079,8 @@ public static bool SynchronizeTo(this IEducationPlanDescriptor source, IEducatio // Detect primary key changes if ( - (target.EducationPlanDescriptorId != source.EducationPlanDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EducationPlanDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -22700,13 +22125,6 @@ public static bool SynchronizeTo(this IEducationPlanDescriptor source, IEducatio isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -22754,9 +22172,6 @@ public static void MapTo(this IEducationPlanDescriptor source, IEducationPlanDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -23051,7 +22466,8 @@ public static bool SynchronizeTo(this IElectronicMailTypeDescriptor source, IEle // Detect primary key changes if ( - (target.ElectronicMailTypeDescriptorId != source.ElectronicMailTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ElectronicMailTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -23096,13 +22512,6 @@ public static bool SynchronizeTo(this IElectronicMailTypeDescriptor source, IEle isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -23150,9 +22559,6 @@ public static void MapTo(this IElectronicMailTypeDescriptor source, IElectronicM if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -23212,7 +22618,8 @@ public static bool SynchronizeTo(this IEligibilityDelayReasonDescriptor source, // Detect primary key changes if ( - (target.EligibilityDelayReasonDescriptorId != source.EligibilityDelayReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EligibilityDelayReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -23257,13 +22664,6 @@ public static bool SynchronizeTo(this IEligibilityDelayReasonDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -23311,9 +22711,6 @@ public static void MapTo(this IEligibilityDelayReasonDescriptor source, IEligibi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -23373,7 +22770,8 @@ public static bool SynchronizeTo(this IEligibilityEvaluationTypeDescriptor sourc // Detect primary key changes if ( - (target.EligibilityEvaluationTypeDescriptorId != source.EligibilityEvaluationTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EligibilityEvaluationTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -23418,13 +22816,6 @@ public static bool SynchronizeTo(this IEligibilityEvaluationTypeDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -23472,9 +22863,6 @@ public static void MapTo(this IEligibilityEvaluationTypeDescriptor source, IElig if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -23534,7 +22922,8 @@ public static bool SynchronizeTo(this IEmploymentStatusDescriptor source, IEmplo // Detect primary key changes if ( - (target.EmploymentStatusDescriptorId != source.EmploymentStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EmploymentStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -23579,13 +22968,6 @@ public static bool SynchronizeTo(this IEmploymentStatusDescriptor source, IEmplo isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -23633,9 +23015,6 @@ public static void MapTo(this IEmploymentStatusDescriptor source, IEmploymentSta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -23695,7 +23074,8 @@ public static bool SynchronizeTo(this IEnrollmentTypeDescriptor source, IEnrollm // Detect primary key changes if ( - (target.EnrollmentTypeDescriptorId != source.EnrollmentTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EnrollmentTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -23740,13 +23120,6 @@ public static bool SynchronizeTo(this IEnrollmentTypeDescriptor source, IEnrollm isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -23794,9 +23167,6 @@ public static void MapTo(this IEnrollmentTypeDescriptor source, IEnrollmentTypeD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -23856,7 +23226,8 @@ public static bool SynchronizeTo(this IEntryGradeLevelReasonDescriptor source, I // Detect primary key changes if ( - (target.EntryGradeLevelReasonDescriptorId != source.EntryGradeLevelReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EntryGradeLevelReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -23901,13 +23272,6 @@ public static bool SynchronizeTo(this IEntryGradeLevelReasonDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -23955,9 +23319,6 @@ public static void MapTo(this IEntryGradeLevelReasonDescriptor source, IEntryGra if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -24017,7 +23378,8 @@ public static bool SynchronizeTo(this IEntryTypeDescriptor source, IEntryTypeDes // Detect primary key changes if ( - (target.EntryTypeDescriptorId != source.EntryTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EntryTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -24062,13 +23424,6 @@ public static bool SynchronizeTo(this IEntryTypeDescriptor source, IEntryTypeDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -24116,9 +23471,6 @@ public static void MapTo(this IEntryTypeDescriptor source, IEntryTypeDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -24178,7 +23530,8 @@ public static bool SynchronizeTo(this IEvaluationDelayReasonDescriptor source, I // Detect primary key changes if ( - (target.EvaluationDelayReasonDescriptorId != source.EvaluationDelayReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EvaluationDelayReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -24223,13 +23576,6 @@ public static bool SynchronizeTo(this IEvaluationDelayReasonDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -24277,9 +23623,6 @@ public static void MapTo(this IEvaluationDelayReasonDescriptor source, IEvaluati if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -24478,7 +23821,8 @@ public static bool SynchronizeTo(this IEventCircumstanceDescriptor source, IEven // Detect primary key changes if ( - (target.EventCircumstanceDescriptorId != source.EventCircumstanceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on EventCircumstanceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -24523,13 +23867,6 @@ public static bool SynchronizeTo(this IEventCircumstanceDescriptor source, IEven isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -24577,169 +23914,157 @@ public static void MapTo(this IEventCircumstanceDescriptor source, IEventCircums if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - - if (mappingContract?.IsShortDescriptionSupported != false) - target.ShortDescription = source.ShortDescription; - - // Copy non-PK properties - - // Copy Aggregate Reference Data - - - // ---------------------------------- - // Map One-to-one relationships - // ---------------------------------- - - // Map inherited lists - - // Map lists - - - // Convert source to an ETag, if appropriate - if (target is IHasETag entityWithETag) - entityWithETag.ETag = GeneratedArtifactStaticDependencies.ETagProvider.GetETag(source); - - // Copy/assign LastModifiedDate, if appropriate - if (target is IDateVersionedEntity targetDateVersionedEntity) - { - if (source is IHasETag etagSource) - { - // Convert resource's supplied eTag value to entity's LastModifiedDate - targetDateVersionedEntity.LastModifiedDate = GeneratedArtifactStaticDependencies.ETagProvider.GetDateTime(etagSource.ETag); - } - else if (source is IDateVersionedEntity sourceDateVersionedEntity) - { - // Copy LastModifiedDate, when mapping from entities to resources/entities - targetDateVersionedEntity.LastModifiedDate = sourceDateVersionedEntity.LastModifiedDate; - } - } - } - } - -} -// Aggregate: ExitWithdrawTypeDescriptor - -namespace EdFi.Ods.Entities.Common.EdFi //.ExitWithdrawTypeDescriptorAggregate -{ - [ExcludeFromCodeCoverage] - public static class ExitWithdrawTypeDescriptorMapper - { - private static readonly FullName _fullName_edfi_ExitWithdrawTypeDescriptor = new FullName("edfi", "ExitWithdrawTypeDescriptor"); - - public static bool SynchronizeTo(this IExitWithdrawTypeDescriptor source, IExitWithdrawTypeDescriptor target) - { - bool isModified = false; - - // Get the mapping contract for knowing what values to synchronize through to target entity - var mappingContract = (ExitWithdrawTypeDescriptorMappingContract) GeneratedArtifactStaticDependencies - .MappingContractProvider - .GetMappingContract(_fullName_edfi_ExitWithdrawTypeDescriptor); - - // Detect primary key changes - if ( - (target.ExitWithdrawTypeDescriptorId != source.ExitWithdrawTypeDescriptorId)) - { - // Disallow PK column updates on ExitWithdrawTypeDescriptor - throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); - } - - - // Copy inherited non-PK properties - - - if ((mappingContract?.IsCodeValueSupported != false) - && target.CodeValue != source.CodeValue) - { - target.CodeValue = source.CodeValue; - isModified = true; - } - - if ((mappingContract?.IsDescriptionSupported != false) - && target.Description != source.Description) - { - target.Description = source.Description; - isModified = true; - } - - if ((mappingContract?.IsEffectiveBeginDateSupported != false) - && target.EffectiveBeginDate != source.EffectiveBeginDate) - { - target.EffectiveBeginDate = source.EffectiveBeginDate; - isModified = true; - } - - if ((mappingContract?.IsEffectiveEndDateSupported != false) - && target.EffectiveEndDate != source.EffectiveEndDate) - { - target.EffectiveEndDate = source.EffectiveEndDate; - isModified = true; - } - - if ((mappingContract?.IsNamespaceSupported != false) - && target.Namespace != source.Namespace) - { - target.Namespace = source.Namespace; - isModified = true; - } - - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - - if ((mappingContract?.IsShortDescriptionSupported != false) - && target.ShortDescription != source.ShortDescription) - { - target.ShortDescription = source.ShortDescription; - isModified = true; - } - - // Copy non-PK properties - - - // Synch inherited lists - - // Sync lists - - return isModified; - } - - public static void MapTo(this IExitWithdrawTypeDescriptor source, IExitWithdrawTypeDescriptor target, Action onMapped) - { - // Get the mapping contract for determining what values to map through to target - var mappingContract = (ExitWithdrawTypeDescriptorMappingContract) GeneratedArtifactStaticDependencies - .MappingContractProvider - .GetMappingContract(_fullName_edfi_ExitWithdrawTypeDescriptor); - - // Copy resource Id - target.Id = source.Id; - - // Copy contextual primary key values - target.ExitWithdrawTypeDescriptorId = source.ExitWithdrawTypeDescriptorId; - - // Copy inherited non-PK properties - - if (mappingContract?.IsCodeValueSupported != false) - target.CodeValue = source.CodeValue; - - if (mappingContract?.IsDescriptionSupported != false) - target.Description = source.Description; - - if (mappingContract?.IsEffectiveBeginDateSupported != false) - target.EffectiveBeginDate = source.EffectiveBeginDate; - - if (mappingContract?.IsEffectiveEndDateSupported != false) - target.EffectiveEndDate = source.EffectiveEndDate; - - if (mappingContract?.IsNamespaceSupported != false) - target.Namespace = source.Namespace; - - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; + if (mappingContract?.IsShortDescriptionSupported != false) + target.ShortDescription = source.ShortDescription; + + // Copy non-PK properties + + // Copy Aggregate Reference Data + + + // ---------------------------------- + // Map One-to-one relationships + // ---------------------------------- + + // Map inherited lists + + // Map lists + + + // Convert source to an ETag, if appropriate + if (target is IHasETag entityWithETag) + entityWithETag.ETag = GeneratedArtifactStaticDependencies.ETagProvider.GetETag(source); + + // Copy/assign LastModifiedDate, if appropriate + if (target is IDateVersionedEntity targetDateVersionedEntity) + { + if (source is IHasETag etagSource) + { + // Convert resource's supplied eTag value to entity's LastModifiedDate + targetDateVersionedEntity.LastModifiedDate = GeneratedArtifactStaticDependencies.ETagProvider.GetDateTime(etagSource.ETag); + } + else if (source is IDateVersionedEntity sourceDateVersionedEntity) + { + // Copy LastModifiedDate, when mapping from entities to resources/entities + targetDateVersionedEntity.LastModifiedDate = sourceDateVersionedEntity.LastModifiedDate; + } + } + } + } + +} +// Aggregate: ExitWithdrawTypeDescriptor + +namespace EdFi.Ods.Entities.Common.EdFi //.ExitWithdrawTypeDescriptorAggregate +{ + [ExcludeFromCodeCoverage] + public static class ExitWithdrawTypeDescriptorMapper + { + private static readonly FullName _fullName_edfi_ExitWithdrawTypeDescriptor = new FullName("edfi", "ExitWithdrawTypeDescriptor"); + + public static bool SynchronizeTo(this IExitWithdrawTypeDescriptor source, IExitWithdrawTypeDescriptor target) + { + bool isModified = false; + + // Get the mapping contract for knowing what values to synchronize through to target entity + var mappingContract = (ExitWithdrawTypeDescriptorMappingContract) GeneratedArtifactStaticDependencies + .MappingContractProvider + .GetMappingContract(_fullName_edfi_ExitWithdrawTypeDescriptor); + + // Detect primary key changes + if ( + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) + { + // Disallow PK column updates on ExitWithdrawTypeDescriptor + throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); + } + + + // Copy inherited non-PK properties + + + if ((mappingContract?.IsCodeValueSupported != false) + && target.CodeValue != source.CodeValue) + { + target.CodeValue = source.CodeValue; + isModified = true; + } + + if ((mappingContract?.IsDescriptionSupported != false) + && target.Description != source.Description) + { + target.Description = source.Description; + isModified = true; + } + + if ((mappingContract?.IsEffectiveBeginDateSupported != false) + && target.EffectiveBeginDate != source.EffectiveBeginDate) + { + target.EffectiveBeginDate = source.EffectiveBeginDate; + isModified = true; + } + + if ((mappingContract?.IsEffectiveEndDateSupported != false) + && target.EffectiveEndDate != source.EffectiveEndDate) + { + target.EffectiveEndDate = source.EffectiveEndDate; + isModified = true; + } + + if ((mappingContract?.IsNamespaceSupported != false) + && target.Namespace != source.Namespace) + { + target.Namespace = source.Namespace; + isModified = true; + } + + if ((mappingContract?.IsShortDescriptionSupported != false) + && target.ShortDescription != source.ShortDescription) + { + target.ShortDescription = source.ShortDescription; + isModified = true; + } + + // Copy non-PK properties + + + // Synch inherited lists + + // Sync lists + + return isModified; + } + + public static void MapTo(this IExitWithdrawTypeDescriptor source, IExitWithdrawTypeDescriptor target, Action onMapped) + { + // Get the mapping contract for determining what values to map through to target + var mappingContract = (ExitWithdrawTypeDescriptorMappingContract) GeneratedArtifactStaticDependencies + .MappingContractProvider + .GetMappingContract(_fullName_edfi_ExitWithdrawTypeDescriptor); + + // Copy resource Id + target.Id = source.Id; + + // Copy contextual primary key values + target.ExitWithdrawTypeDescriptorId = source.ExitWithdrawTypeDescriptorId; + + // Copy inherited non-PK properties + + if (mappingContract?.IsCodeValueSupported != false) + target.CodeValue = source.CodeValue; + + if (mappingContract?.IsDescriptionSupported != false) + target.Description = source.Description; + + if (mappingContract?.IsEffectiveBeginDateSupported != false) + target.EffectiveBeginDate = source.EffectiveBeginDate; + + if (mappingContract?.IsEffectiveEndDateSupported != false) + target.EffectiveEndDate = source.EffectiveEndDate; + + if (mappingContract?.IsNamespaceSupported != false) + target.Namespace = source.Namespace; if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -24917,7 +24242,8 @@ public static bool SynchronizeTo(this IFinancialCollectionDescriptor source, IFi // Detect primary key changes if ( - (target.FinancialCollectionDescriptorId != source.FinancialCollectionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on FinancialCollectionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -24962,13 +24288,6 @@ public static bool SynchronizeTo(this IFinancialCollectionDescriptor source, IFi isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -25016,9 +24335,6 @@ public static void MapTo(this IFinancialCollectionDescriptor source, IFinancialC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -26513,7 +25829,8 @@ public static bool SynchronizeTo(this IGradebookEntryTypeDescriptor source, IGra // Detect primary key changes if ( - (target.GradebookEntryTypeDescriptorId != source.GradebookEntryTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GradebookEntryTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -26558,13 +25875,6 @@ public static bool SynchronizeTo(this IGradebookEntryTypeDescriptor source, IGra isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -26612,9 +25922,6 @@ public static void MapTo(this IGradebookEntryTypeDescriptor source, IGradebookEn if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -26674,7 +25981,8 @@ public static bool SynchronizeTo(this IGradeLevelDescriptor source, IGradeLevelD // Detect primary key changes if ( - (target.GradeLevelDescriptorId != source.GradeLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GradeLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -26719,13 +26027,6 @@ public static bool SynchronizeTo(this IGradeLevelDescriptor source, IGradeLevelD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -26773,9 +26074,6 @@ public static void MapTo(this IGradeLevelDescriptor source, IGradeLevelDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -26835,7 +26133,8 @@ public static bool SynchronizeTo(this IGradePointAverageTypeDescriptor source, I // Detect primary key changes if ( - (target.GradePointAverageTypeDescriptorId != source.GradePointAverageTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GradePointAverageTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -26880,13 +26179,6 @@ public static bool SynchronizeTo(this IGradePointAverageTypeDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -26934,9 +26226,6 @@ public static void MapTo(this IGradePointAverageTypeDescriptor source, IGradePoi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -26996,7 +26285,8 @@ public static bool SynchronizeTo(this IGradeTypeDescriptor source, IGradeTypeDes // Detect primary key changes if ( - (target.GradeTypeDescriptorId != source.GradeTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GradeTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -27041,13 +26331,6 @@ public static bool SynchronizeTo(this IGradeTypeDescriptor source, IGradeTypeDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -27095,9 +26378,6 @@ public static void MapTo(this IGradeTypeDescriptor source, IGradeTypeDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -27298,7 +26578,8 @@ public static bool SynchronizeTo(this IGradingPeriodDescriptor source, IGradingP // Detect primary key changes if ( - (target.GradingPeriodDescriptorId != source.GradingPeriodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GradingPeriodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -27343,13 +26624,6 @@ public static bool SynchronizeTo(this IGradingPeriodDescriptor source, IGradingP isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -27397,9 +26671,6 @@ public static void MapTo(this IGradingPeriodDescriptor source, IGradingPeriodDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -28446,7 +27717,8 @@ public static bool SynchronizeTo(this IGraduationPlanTypeDescriptor source, IGra // Detect primary key changes if ( - (target.GraduationPlanTypeDescriptorId != source.GraduationPlanTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GraduationPlanTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -28491,13 +27763,6 @@ public static bool SynchronizeTo(this IGraduationPlanTypeDescriptor source, IGra isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -28545,9 +27810,6 @@ public static void MapTo(this IGraduationPlanTypeDescriptor source, IGraduationP if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -28607,7 +27869,8 @@ public static bool SynchronizeTo(this IGunFreeSchoolsActReportingStatusDescripto // Detect primary key changes if ( - (target.GunFreeSchoolsActReportingStatusDescriptorId != source.GunFreeSchoolsActReportingStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on GunFreeSchoolsActReportingStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -28652,13 +27915,6 @@ public static bool SynchronizeTo(this IGunFreeSchoolsActReportingStatusDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -28706,9 +27962,6 @@ public static void MapTo(this IGunFreeSchoolsActReportingStatusDescriptor source if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -28768,7 +28021,8 @@ public static bool SynchronizeTo(this IHomelessPrimaryNighttimeResidenceDescript // Detect primary key changes if ( - (target.HomelessPrimaryNighttimeResidenceDescriptorId != source.HomelessPrimaryNighttimeResidenceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on HomelessPrimaryNighttimeResidenceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -28813,13 +28067,6 @@ public static bool SynchronizeTo(this IHomelessPrimaryNighttimeResidenceDescript isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -28867,9 +28114,6 @@ public static void MapTo(this IHomelessPrimaryNighttimeResidenceDescriptor sourc if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -28929,7 +28173,8 @@ public static bool SynchronizeTo(this IHomelessProgramServiceDescriptor source, // Detect primary key changes if ( - (target.HomelessProgramServiceDescriptorId != source.HomelessProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on HomelessProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -28974,13 +28219,6 @@ public static bool SynchronizeTo(this IHomelessProgramServiceDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -29028,9 +28266,6 @@ public static void MapTo(this IHomelessProgramServiceDescriptor source, IHomeles if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -29090,7 +28325,8 @@ public static bool SynchronizeTo(this IIDEAPartDescriptor source, IIDEAPartDescr // Detect primary key changes if ( - (target.IDEAPartDescriptorId != source.IDEAPartDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IDEAPartDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -29135,13 +28371,6 @@ public static bool SynchronizeTo(this IIDEAPartDescriptor source, IIDEAPartDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -29189,9 +28418,6 @@ public static void MapTo(this IIDEAPartDescriptor source, IIDEAPartDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -29251,7 +28477,8 @@ public static bool SynchronizeTo(this IIdentificationDocumentUseDescriptor sourc // Detect primary key changes if ( - (target.IdentificationDocumentUseDescriptorId != source.IdentificationDocumentUseDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IdentificationDocumentUseDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -29296,13 +28523,6 @@ public static bool SynchronizeTo(this IIdentificationDocumentUseDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -29350,9 +28570,6 @@ public static void MapTo(this IIdentificationDocumentUseDescriptor source, IIden if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -29412,7 +28629,8 @@ public static bool SynchronizeTo(this IIncidentLocationDescriptor source, IIncid // Detect primary key changes if ( - (target.IncidentLocationDescriptorId != source.IncidentLocationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IncidentLocationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -29457,13 +28675,6 @@ public static bool SynchronizeTo(this IIncidentLocationDescriptor source, IIncid isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -29511,9 +28722,6 @@ public static void MapTo(this IIncidentLocationDescriptor source, IIncidentLocat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -29573,7 +28781,8 @@ public static bool SynchronizeTo(this IIndicatorDescriptor source, IIndicatorDes // Detect primary key changes if ( - (target.IndicatorDescriptorId != source.IndicatorDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IndicatorDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -29618,13 +28827,6 @@ public static bool SynchronizeTo(this IIndicatorDescriptor source, IIndicatorDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -29672,9 +28874,6 @@ public static void MapTo(this IIndicatorDescriptor source, IIndicatorDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -29734,7 +28933,8 @@ public static bool SynchronizeTo(this IIndicatorGroupDescriptor source, IIndicat // Detect primary key changes if ( - (target.IndicatorGroupDescriptorId != source.IndicatorGroupDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IndicatorGroupDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -29779,13 +28979,6 @@ public static bool SynchronizeTo(this IIndicatorGroupDescriptor source, IIndicat isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -29833,9 +29026,6 @@ public static void MapTo(this IIndicatorGroupDescriptor source, IIndicatorGroupD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -29895,7 +29085,8 @@ public static bool SynchronizeTo(this IIndicatorLevelDescriptor source, IIndicat // Detect primary key changes if ( - (target.IndicatorLevelDescriptorId != source.IndicatorLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on IndicatorLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -29940,13 +29131,6 @@ public static bool SynchronizeTo(this IIndicatorLevelDescriptor source, IIndicat isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -29994,9 +29178,6 @@ public static void MapTo(this IIndicatorLevelDescriptor source, IIndicatorLevelD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -30056,7 +29237,8 @@ public static bool SynchronizeTo(this IInstitutionTelephoneNumberTypeDescriptor // Detect primary key changes if ( - (target.InstitutionTelephoneNumberTypeDescriptorId != source.InstitutionTelephoneNumberTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InstitutionTelephoneNumberTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -30101,13 +29283,6 @@ public static bool SynchronizeTo(this IInstitutionTelephoneNumberTypeDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -30155,9 +29330,6 @@ public static void MapTo(this IInstitutionTelephoneNumberTypeDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -30217,7 +29389,8 @@ public static bool SynchronizeTo(this IInteractivityStyleDescriptor source, IInt // Detect primary key changes if ( - (target.InteractivityStyleDescriptorId != source.InteractivityStyleDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InteractivityStyleDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -30262,13 +29435,6 @@ public static bool SynchronizeTo(this IInteractivityStyleDescriptor source, IInt isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -30316,9 +29482,6 @@ public static void MapTo(this IInteractivityStyleDescriptor source, IInteractivi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -30378,7 +29541,8 @@ public static bool SynchronizeTo(this IInternetAccessDescriptor source, IInterne // Detect primary key changes if ( - (target.InternetAccessDescriptorId != source.InternetAccessDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InternetAccessDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -30423,13 +29587,6 @@ public static bool SynchronizeTo(this IInternetAccessDescriptor source, IInterne isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -30477,9 +29634,6 @@ public static void MapTo(this IInternetAccessDescriptor source, IInternetAccessD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -30539,7 +29693,8 @@ public static bool SynchronizeTo(this IInternetAccessTypeInResidenceDescriptor s // Detect primary key changes if ( - (target.InternetAccessTypeInResidenceDescriptorId != source.InternetAccessTypeInResidenceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InternetAccessTypeInResidenceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -30584,13 +29739,6 @@ public static bool SynchronizeTo(this IInternetAccessTypeInResidenceDescriptor s isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -30638,9 +29786,6 @@ public static void MapTo(this IInternetAccessTypeInResidenceDescriptor source, I if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -30700,7 +29845,8 @@ public static bool SynchronizeTo(this IInternetPerformanceInResidenceDescriptor // Detect primary key changes if ( - (target.InternetPerformanceInResidenceDescriptorId != source.InternetPerformanceInResidenceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InternetPerformanceInResidenceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -30745,13 +29891,6 @@ public static bool SynchronizeTo(this IInternetPerformanceInResidenceDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -30799,9 +29938,6 @@ public static void MapTo(this IInternetPerformanceInResidenceDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -31921,7 +31057,8 @@ public static bool SynchronizeTo(this IInterventionClassDescriptor source, IInte // Detect primary key changes if ( - (target.InterventionClassDescriptorId != source.InterventionClassDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InterventionClassDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -31966,13 +31103,6 @@ public static bool SynchronizeTo(this IInterventionClassDescriptor source, IInte isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -32020,9 +31150,6 @@ public static void MapTo(this IInterventionClassDescriptor source, IIntervention if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -32082,7 +31209,8 @@ public static bool SynchronizeTo(this IInterventionEffectivenessRatingDescriptor // Detect primary key changes if ( - (target.InterventionEffectivenessRatingDescriptorId != source.InterventionEffectivenessRatingDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on InterventionEffectivenessRatingDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -32127,13 +31255,6 @@ public static bool SynchronizeTo(this IInterventionEffectivenessRatingDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -32181,9 +31302,6 @@ public static void MapTo(this IInterventionEffectivenessRatingDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -33880,7 +32998,8 @@ public static bool SynchronizeTo(this ILanguageDescriptor source, ILanguageDescr // Detect primary key changes if ( - (target.LanguageDescriptorId != source.LanguageDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LanguageDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -33925,13 +33044,6 @@ public static bool SynchronizeTo(this ILanguageDescriptor source, ILanguageDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -33979,9 +33091,6 @@ public static void MapTo(this ILanguageDescriptor source, ILanguageDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -34041,7 +33150,8 @@ public static bool SynchronizeTo(this ILanguageInstructionProgramServiceDescript // Detect primary key changes if ( - (target.LanguageInstructionProgramServiceDescriptorId != source.LanguageInstructionProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LanguageInstructionProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -34086,13 +33196,6 @@ public static bool SynchronizeTo(this ILanguageInstructionProgramServiceDescript isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -34140,9 +33243,6 @@ public static void MapTo(this ILanguageInstructionProgramServiceDescriptor sourc if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -34202,7 +33302,8 @@ public static bool SynchronizeTo(this ILanguageUseDescriptor source, ILanguageUs // Detect primary key changes if ( - (target.LanguageUseDescriptorId != source.LanguageUseDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LanguageUseDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -34247,13 +33348,6 @@ public static bool SynchronizeTo(this ILanguageUseDescriptor source, ILanguageUs isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -34301,9 +33395,6 @@ public static void MapTo(this ILanguageUseDescriptor source, ILanguageUseDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -35115,7 +34206,8 @@ public static bool SynchronizeTo(this ILearningStandardCategoryDescriptor source // Detect primary key changes if ( - (target.LearningStandardCategoryDescriptorId != source.LearningStandardCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LearningStandardCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -35160,13 +34252,6 @@ public static bool SynchronizeTo(this ILearningStandardCategoryDescriptor source isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -35214,9 +34299,6 @@ public static void MapTo(this ILearningStandardCategoryDescriptor source, ILearn if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -35407,7 +34489,8 @@ public static bool SynchronizeTo(this ILearningStandardEquivalenceStrengthDescri // Detect primary key changes if ( - (target.LearningStandardEquivalenceStrengthDescriptorId != source.LearningStandardEquivalenceStrengthDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LearningStandardEquivalenceStrengthDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -35452,13 +34535,6 @@ public static bool SynchronizeTo(this ILearningStandardEquivalenceStrengthDescri isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -35506,9 +34582,6 @@ public static void MapTo(this ILearningStandardEquivalenceStrengthDescriptor sou if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -35568,7 +34641,8 @@ public static bool SynchronizeTo(this ILearningStandardScopeDescriptor source, I // Detect primary key changes if ( - (target.LearningStandardScopeDescriptorId != source.LearningStandardScopeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LearningStandardScopeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -35613,13 +34687,6 @@ public static bool SynchronizeTo(this ILearningStandardScopeDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -35667,9 +34734,6 @@ public static void MapTo(this ILearningStandardScopeDescriptor source, ILearning if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -35729,7 +34793,8 @@ public static bool SynchronizeTo(this ILevelOfEducationDescriptor source, ILevel // Detect primary key changes if ( - (target.LevelOfEducationDescriptorId != source.LevelOfEducationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LevelOfEducationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -35774,13 +34839,6 @@ public static bool SynchronizeTo(this ILevelOfEducationDescriptor source, ILevel isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -35828,9 +34886,6 @@ public static void MapTo(this ILevelOfEducationDescriptor source, ILevelOfEducat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -35890,7 +34945,8 @@ public static bool SynchronizeTo(this ILicenseStatusDescriptor source, ILicenseS // Detect primary key changes if ( - (target.LicenseStatusDescriptorId != source.LicenseStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LicenseStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -35935,13 +34991,6 @@ public static bool SynchronizeTo(this ILicenseStatusDescriptor source, ILicenseS isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -35989,9 +35038,6 @@ public static void MapTo(this ILicenseStatusDescriptor source, ILicenseStatusDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -36051,7 +35097,8 @@ public static bool SynchronizeTo(this ILicenseTypeDescriptor source, ILicenseTyp // Detect primary key changes if ( - (target.LicenseTypeDescriptorId != source.LicenseTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LicenseTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -36096,13 +35143,6 @@ public static bool SynchronizeTo(this ILicenseTypeDescriptor source, ILicenseTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -36150,9 +35190,6 @@ public static void MapTo(this ILicenseTypeDescriptor source, ILicenseTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -36212,7 +35249,8 @@ public static bool SynchronizeTo(this ILimitedEnglishProficiencyDescriptor sourc // Detect primary key changes if ( - (target.LimitedEnglishProficiencyDescriptorId != source.LimitedEnglishProficiencyDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LimitedEnglishProficiencyDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -36257,13 +35295,6 @@ public static bool SynchronizeTo(this ILimitedEnglishProficiencyDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -36311,9 +35342,6 @@ public static void MapTo(this ILimitedEnglishProficiencyDescriptor source, ILimi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -36968,7 +35996,8 @@ public static bool SynchronizeTo(this ILocaleDescriptor source, ILocaleDescripto // Detect primary key changes if ( - (target.LocaleDescriptorId != source.LocaleDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LocaleDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -37013,13 +36042,6 @@ public static bool SynchronizeTo(this ILocaleDescriptor source, ILocaleDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -37067,9 +36089,6 @@ public static void MapTo(this ILocaleDescriptor source, ILocaleDescriptor target if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -37686,7 +36705,8 @@ public static bool SynchronizeTo(this ILocalEducationAgencyCategoryDescriptor so // Detect primary key changes if ( - (target.LocalEducationAgencyCategoryDescriptorId != source.LocalEducationAgencyCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on LocalEducationAgencyCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -37731,13 +36751,6 @@ public static bool SynchronizeTo(this ILocalEducationAgencyCategoryDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -37785,9 +36798,6 @@ public static void MapTo(this ILocalEducationAgencyCategoryDescriptor source, IL if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -38229,7 +37239,8 @@ public static bool SynchronizeTo(this IMagnetSpecialProgramEmphasisSchoolDescrip // Detect primary key changes if ( - (target.MagnetSpecialProgramEmphasisSchoolDescriptorId != source.MagnetSpecialProgramEmphasisSchoolDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MagnetSpecialProgramEmphasisSchoolDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -38274,13 +37285,6 @@ public static bool SynchronizeTo(this IMagnetSpecialProgramEmphasisSchoolDescrip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -38328,9 +37332,6 @@ public static void MapTo(this IMagnetSpecialProgramEmphasisSchoolDescriptor sour if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -38390,7 +37391,8 @@ public static bool SynchronizeTo(this IMediumOfInstructionDescriptor source, IMe // Detect primary key changes if ( - (target.MediumOfInstructionDescriptorId != source.MediumOfInstructionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MediumOfInstructionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -38435,13 +37437,6 @@ public static bool SynchronizeTo(this IMediumOfInstructionDescriptor source, IMe isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -38489,9 +37484,6 @@ public static void MapTo(this IMediumOfInstructionDescriptor source, IMediumOfIn if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -38551,7 +37543,8 @@ public static bool SynchronizeTo(this IMethodCreditEarnedDescriptor source, IMet // Detect primary key changes if ( - (target.MethodCreditEarnedDescriptorId != source.MethodCreditEarnedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MethodCreditEarnedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -38596,13 +37589,6 @@ public static bool SynchronizeTo(this IMethodCreditEarnedDescriptor source, IMet isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -38650,9 +37636,6 @@ public static void MapTo(this IMethodCreditEarnedDescriptor source, IMethodCredi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -38712,7 +37695,8 @@ public static bool SynchronizeTo(this IMigrantEducationProgramServiceDescriptor // Detect primary key changes if ( - (target.MigrantEducationProgramServiceDescriptorId != source.MigrantEducationProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MigrantEducationProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -38757,13 +37741,6 @@ public static bool SynchronizeTo(this IMigrantEducationProgramServiceDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -38811,9 +37788,6 @@ public static void MapTo(this IMigrantEducationProgramServiceDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -38873,7 +37847,8 @@ public static bool SynchronizeTo(this IModelEntityDescriptor source, IModelEntit // Detect primary key changes if ( - (target.ModelEntityDescriptorId != source.ModelEntityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ModelEntityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -38918,13 +37893,6 @@ public static bool SynchronizeTo(this IModelEntityDescriptor source, IModelEntit isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -38972,9 +37940,6 @@ public static void MapTo(this IModelEntityDescriptor source, IModelEntityDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -39034,7 +37999,8 @@ public static bool SynchronizeTo(this IMonitoredDescriptor source, IMonitoredDes // Detect primary key changes if ( - (target.MonitoredDescriptorId != source.MonitoredDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on MonitoredDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -39079,13 +38045,6 @@ public static bool SynchronizeTo(this IMonitoredDescriptor source, IMonitoredDes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -39133,9 +38092,6 @@ public static void MapTo(this IMonitoredDescriptor source, IMonitoredDescriptor if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -39195,7 +38151,8 @@ public static bool SynchronizeTo(this INeglectedOrDelinquentProgramDescriptor so // Detect primary key changes if ( - (target.NeglectedOrDelinquentProgramDescriptorId != source.NeglectedOrDelinquentProgramDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on NeglectedOrDelinquentProgramDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -39240,13 +38197,6 @@ public static bool SynchronizeTo(this INeglectedOrDelinquentProgramDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -39294,9 +38244,6 @@ public static void MapTo(this INeglectedOrDelinquentProgramDescriptor source, IN if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -39356,7 +38303,8 @@ public static bool SynchronizeTo(this INeglectedOrDelinquentProgramServiceDescri // Detect primary key changes if ( - (target.NeglectedOrDelinquentProgramServiceDescriptorId != source.NeglectedOrDelinquentProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on NeglectedOrDelinquentProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -39401,13 +38349,6 @@ public static bool SynchronizeTo(this INeglectedOrDelinquentProgramServiceDescri isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -39455,169 +38396,157 @@ public static void MapTo(this INeglectedOrDelinquentProgramServiceDescriptor sou if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - - if (mappingContract?.IsShortDescriptionSupported != false) - target.ShortDescription = source.ShortDescription; - - // Copy non-PK properties - - // Copy Aggregate Reference Data - - - // ---------------------------------- - // Map One-to-one relationships - // ---------------------------------- - - // Map inherited lists - - // Map lists - - - // Convert source to an ETag, if appropriate - if (target is IHasETag entityWithETag) - entityWithETag.ETag = GeneratedArtifactStaticDependencies.ETagProvider.GetETag(source); - - // Copy/assign LastModifiedDate, if appropriate - if (target is IDateVersionedEntity targetDateVersionedEntity) - { - if (source is IHasETag etagSource) - { - // Convert resource's supplied eTag value to entity's LastModifiedDate - targetDateVersionedEntity.LastModifiedDate = GeneratedArtifactStaticDependencies.ETagProvider.GetDateTime(etagSource.ETag); - } - else if (source is IDateVersionedEntity sourceDateVersionedEntity) - { - // Copy LastModifiedDate, when mapping from entities to resources/entities - targetDateVersionedEntity.LastModifiedDate = sourceDateVersionedEntity.LastModifiedDate; - } - } - } - } - -} -// Aggregate: NetworkPurposeDescriptor - -namespace EdFi.Ods.Entities.Common.EdFi //.NetworkPurposeDescriptorAggregate -{ - [ExcludeFromCodeCoverage] - public static class NetworkPurposeDescriptorMapper - { - private static readonly FullName _fullName_edfi_NetworkPurposeDescriptor = new FullName("edfi", "NetworkPurposeDescriptor"); - - public static bool SynchronizeTo(this INetworkPurposeDescriptor source, INetworkPurposeDescriptor target) - { - bool isModified = false; - - // Get the mapping contract for knowing what values to synchronize through to target entity - var mappingContract = (NetworkPurposeDescriptorMappingContract) GeneratedArtifactStaticDependencies - .MappingContractProvider - .GetMappingContract(_fullName_edfi_NetworkPurposeDescriptor); - - // Detect primary key changes - if ( - (target.NetworkPurposeDescriptorId != source.NetworkPurposeDescriptorId)) - { - // Disallow PK column updates on NetworkPurposeDescriptor - throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); - } - - - // Copy inherited non-PK properties - - - if ((mappingContract?.IsCodeValueSupported != false) - && target.CodeValue != source.CodeValue) - { - target.CodeValue = source.CodeValue; - isModified = true; - } - - if ((mappingContract?.IsDescriptionSupported != false) - && target.Description != source.Description) - { - target.Description = source.Description; - isModified = true; - } - - if ((mappingContract?.IsEffectiveBeginDateSupported != false) - && target.EffectiveBeginDate != source.EffectiveBeginDate) - { - target.EffectiveBeginDate = source.EffectiveBeginDate; - isModified = true; - } - - if ((mappingContract?.IsEffectiveEndDateSupported != false) - && target.EffectiveEndDate != source.EffectiveEndDate) - { - target.EffectiveEndDate = source.EffectiveEndDate; - isModified = true; - } - - if ((mappingContract?.IsNamespaceSupported != false) - && target.Namespace != source.Namespace) - { - target.Namespace = source.Namespace; - isModified = true; - } - - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - - if ((mappingContract?.IsShortDescriptionSupported != false) - && target.ShortDescription != source.ShortDescription) - { - target.ShortDescription = source.ShortDescription; - isModified = true; - } - - // Copy non-PK properties - - - // Synch inherited lists - - // Sync lists - - return isModified; - } - - public static void MapTo(this INetworkPurposeDescriptor source, INetworkPurposeDescriptor target, Action onMapped) - { - // Get the mapping contract for determining what values to map through to target - var mappingContract = (NetworkPurposeDescriptorMappingContract) GeneratedArtifactStaticDependencies - .MappingContractProvider - .GetMappingContract(_fullName_edfi_NetworkPurposeDescriptor); - - // Copy resource Id - target.Id = source.Id; - - // Copy contextual primary key values - target.NetworkPurposeDescriptorId = source.NetworkPurposeDescriptorId; - - // Copy inherited non-PK properties - - if (mappingContract?.IsCodeValueSupported != false) - target.CodeValue = source.CodeValue; - - if (mappingContract?.IsDescriptionSupported != false) - target.Description = source.Description; - - if (mappingContract?.IsEffectiveBeginDateSupported != false) - target.EffectiveBeginDate = source.EffectiveBeginDate; - - if (mappingContract?.IsEffectiveEndDateSupported != false) - target.EffectiveEndDate = source.EffectiveEndDate; - - if (mappingContract?.IsNamespaceSupported != false) - target.Namespace = source.Namespace; - - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; + if (mappingContract?.IsShortDescriptionSupported != false) + target.ShortDescription = source.ShortDescription; + + // Copy non-PK properties + + // Copy Aggregate Reference Data + + + // ---------------------------------- + // Map One-to-one relationships + // ---------------------------------- + + // Map inherited lists + + // Map lists + + + // Convert source to an ETag, if appropriate + if (target is IHasETag entityWithETag) + entityWithETag.ETag = GeneratedArtifactStaticDependencies.ETagProvider.GetETag(source); + + // Copy/assign LastModifiedDate, if appropriate + if (target is IDateVersionedEntity targetDateVersionedEntity) + { + if (source is IHasETag etagSource) + { + // Convert resource's supplied eTag value to entity's LastModifiedDate + targetDateVersionedEntity.LastModifiedDate = GeneratedArtifactStaticDependencies.ETagProvider.GetDateTime(etagSource.ETag); + } + else if (source is IDateVersionedEntity sourceDateVersionedEntity) + { + // Copy LastModifiedDate, when mapping from entities to resources/entities + targetDateVersionedEntity.LastModifiedDate = sourceDateVersionedEntity.LastModifiedDate; + } + } + } + } + +} +// Aggregate: NetworkPurposeDescriptor + +namespace EdFi.Ods.Entities.Common.EdFi //.NetworkPurposeDescriptorAggregate +{ + [ExcludeFromCodeCoverage] + public static class NetworkPurposeDescriptorMapper + { + private static readonly FullName _fullName_edfi_NetworkPurposeDescriptor = new FullName("edfi", "NetworkPurposeDescriptor"); + + public static bool SynchronizeTo(this INetworkPurposeDescriptor source, INetworkPurposeDescriptor target) + { + bool isModified = false; + + // Get the mapping contract for knowing what values to synchronize through to target entity + var mappingContract = (NetworkPurposeDescriptorMappingContract) GeneratedArtifactStaticDependencies + .MappingContractProvider + .GetMappingContract(_fullName_edfi_NetworkPurposeDescriptor); + + // Detect primary key changes + if ( + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) + { + // Disallow PK column updates on NetworkPurposeDescriptor + throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); + } + + + // Copy inherited non-PK properties + + + if ((mappingContract?.IsCodeValueSupported != false) + && target.CodeValue != source.CodeValue) + { + target.CodeValue = source.CodeValue; + isModified = true; + } + + if ((mappingContract?.IsDescriptionSupported != false) + && target.Description != source.Description) + { + target.Description = source.Description; + isModified = true; + } + + if ((mappingContract?.IsEffectiveBeginDateSupported != false) + && target.EffectiveBeginDate != source.EffectiveBeginDate) + { + target.EffectiveBeginDate = source.EffectiveBeginDate; + isModified = true; + } + + if ((mappingContract?.IsEffectiveEndDateSupported != false) + && target.EffectiveEndDate != source.EffectiveEndDate) + { + target.EffectiveEndDate = source.EffectiveEndDate; + isModified = true; + } + + if ((mappingContract?.IsNamespaceSupported != false) + && target.Namespace != source.Namespace) + { + target.Namespace = source.Namespace; + isModified = true; + } + + if ((mappingContract?.IsShortDescriptionSupported != false) + && target.ShortDescription != source.ShortDescription) + { + target.ShortDescription = source.ShortDescription; + isModified = true; + } + + // Copy non-PK properties + + + // Synch inherited lists + + // Sync lists + + return isModified; + } + + public static void MapTo(this INetworkPurposeDescriptor source, INetworkPurposeDescriptor target, Action onMapped) + { + // Get the mapping contract for determining what values to map through to target + var mappingContract = (NetworkPurposeDescriptorMappingContract) GeneratedArtifactStaticDependencies + .MappingContractProvider + .GetMappingContract(_fullName_edfi_NetworkPurposeDescriptor); + + // Copy resource Id + target.Id = source.Id; + + // Copy contextual primary key values + target.NetworkPurposeDescriptorId = source.NetworkPurposeDescriptorId; + + // Copy inherited non-PK properties + + if (mappingContract?.IsCodeValueSupported != false) + target.CodeValue = source.CodeValue; + + if (mappingContract?.IsDescriptionSupported != false) + target.Description = source.Description; + + if (mappingContract?.IsEffectiveBeginDateSupported != false) + target.EffectiveBeginDate = source.EffectiveBeginDate; + + if (mappingContract?.IsEffectiveEndDateSupported != false) + target.EffectiveEndDate = source.EffectiveEndDate; + + if (mappingContract?.IsNamespaceSupported != false) + target.Namespace = source.Namespace; if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -40800,7 +39729,8 @@ public static bool SynchronizeTo(this IOperationalStatusDescriptor source, IOper // Detect primary key changes if ( - (target.OperationalStatusDescriptorId != source.OperationalStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on OperationalStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -40845,13 +39775,6 @@ public static bool SynchronizeTo(this IOperationalStatusDescriptor source, IOper isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -40899,9 +39822,6 @@ public static void MapTo(this IOperationalStatusDescriptor source, IOperationalS if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -41394,7 +40314,8 @@ public static bool SynchronizeTo(this IOtherNameTypeDescriptor source, IOtherNam // Detect primary key changes if ( - (target.OtherNameTypeDescriptorId != source.OtherNameTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on OtherNameTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -41439,13 +40360,6 @@ public static bool SynchronizeTo(this IOtherNameTypeDescriptor source, IOtherNam isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -41493,9 +40407,6 @@ public static void MapTo(this IOtherNameTypeDescriptor source, IOtherNameTypeDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -41555,7 +40466,8 @@ public static bool SynchronizeTo(this IParticipationDescriptor source, IParticip // Detect primary key changes if ( - (target.ParticipationDescriptorId != source.ParticipationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ParticipationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -41600,13 +40512,6 @@ public static bool SynchronizeTo(this IParticipationDescriptor source, IParticip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -41654,9 +40559,6 @@ public static void MapTo(this IParticipationDescriptor source, IParticipationDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -41716,7 +40618,8 @@ public static bool SynchronizeTo(this IParticipationStatusDescriptor source, IPa // Detect primary key changes if ( - (target.ParticipationStatusDescriptorId != source.ParticipationStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ParticipationStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -41761,13 +40664,6 @@ public static bool SynchronizeTo(this IParticipationStatusDescriptor source, IPa isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -41815,9 +40711,6 @@ public static void MapTo(this IParticipationStatusDescriptor source, IParticipat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -41877,7 +40770,8 @@ public static bool SynchronizeTo(this IPerformanceBaseConversionDescriptor sourc // Detect primary key changes if ( - (target.PerformanceBaseConversionDescriptorId != source.PerformanceBaseConversionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PerformanceBaseConversionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -41922,13 +40816,6 @@ public static bool SynchronizeTo(this IPerformanceBaseConversionDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -41976,9 +40863,6 @@ public static void MapTo(this IPerformanceBaseConversionDescriptor source, IPerf if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -42038,7 +40922,8 @@ public static bool SynchronizeTo(this IPerformanceLevelDescriptor source, IPerfo // Detect primary key changes if ( - (target.PerformanceLevelDescriptorId != source.PerformanceLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PerformanceLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42083,13 +40968,6 @@ public static bool SynchronizeTo(this IPerformanceLevelDescriptor source, IPerfo isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42137,9 +41015,6 @@ public static void MapTo(this IPerformanceLevelDescriptor source, IPerformanceLe if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -42289,7 +41164,8 @@ public static bool SynchronizeTo(this IPersonalInformationVerificationDescriptor // Detect primary key changes if ( - (target.PersonalInformationVerificationDescriptorId != source.PersonalInformationVerificationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PersonalInformationVerificationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42334,13 +41210,6 @@ public static bool SynchronizeTo(this IPersonalInformationVerificationDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42388,9 +41257,6 @@ public static void MapTo(this IPersonalInformationVerificationDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -42450,7 +41316,8 @@ public static bool SynchronizeTo(this IPlatformTypeDescriptor source, IPlatformT // Detect primary key changes if ( - (target.PlatformTypeDescriptorId != source.PlatformTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PlatformTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42495,13 +41362,6 @@ public static bool SynchronizeTo(this IPlatformTypeDescriptor source, IPlatformT isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42549,9 +41409,6 @@ public static void MapTo(this IPlatformTypeDescriptor source, IPlatformTypeDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -42611,7 +41468,8 @@ public static bool SynchronizeTo(this IPopulationServedDescriptor source, IPopul // Detect primary key changes if ( - (target.PopulationServedDescriptorId != source.PopulationServedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PopulationServedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42656,13 +41514,6 @@ public static bool SynchronizeTo(this IPopulationServedDescriptor source, IPopul isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42710,9 +41561,6 @@ public static void MapTo(this IPopulationServedDescriptor source, IPopulationSer if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -42772,7 +41620,8 @@ public static bool SynchronizeTo(this IPostingResultDescriptor source, IPostingR // Detect primary key changes if ( - (target.PostingResultDescriptorId != source.PostingResultDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PostingResultDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -42817,13 +41666,6 @@ public static bool SynchronizeTo(this IPostingResultDescriptor source, IPostingR isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -42871,9 +41713,6 @@ public static void MapTo(this IPostingResultDescriptor source, IPostingResultDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -43041,7 +41880,8 @@ public static bool SynchronizeTo(this IPostSecondaryEventCategoryDescriptor sour // Detect primary key changes if ( - (target.PostSecondaryEventCategoryDescriptorId != source.PostSecondaryEventCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PostSecondaryEventCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -43086,13 +41926,6 @@ public static bool SynchronizeTo(this IPostSecondaryEventCategoryDescriptor sour isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -43140,9 +41973,6 @@ public static void MapTo(this IPostSecondaryEventCategoryDescriptor source, IPos if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -43528,7 +42358,8 @@ public static bool SynchronizeTo(this IPostSecondaryInstitutionLevelDescriptor s // Detect primary key changes if ( - (target.PostSecondaryInstitutionLevelDescriptorId != source.PostSecondaryInstitutionLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PostSecondaryInstitutionLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -43573,13 +42404,6 @@ public static bool SynchronizeTo(this IPostSecondaryInstitutionLevelDescriptor s isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -43627,9 +42451,6 @@ public static void MapTo(this IPostSecondaryInstitutionLevelDescriptor source, I if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -43689,7 +42510,8 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceAccessDescriptor sou // Detect primary key changes if ( - (target.PrimaryLearningDeviceAccessDescriptorId != source.PrimaryLearningDeviceAccessDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PrimaryLearningDeviceAccessDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -43734,13 +42556,6 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceAccessDescriptor sou isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -43788,9 +42603,6 @@ public static void MapTo(this IPrimaryLearningDeviceAccessDescriptor source, IPr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -43850,7 +42662,8 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceAwayFromSchoolDescri // Detect primary key changes if ( - (target.PrimaryLearningDeviceAwayFromSchoolDescriptorId != source.PrimaryLearningDeviceAwayFromSchoolDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PrimaryLearningDeviceAwayFromSchoolDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -43895,13 +42708,6 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceAwayFromSchoolDescri isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -43949,9 +42755,6 @@ public static void MapTo(this IPrimaryLearningDeviceAwayFromSchoolDescriptor sou if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -44011,7 +42814,8 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceProviderDescriptor s // Detect primary key changes if ( - (target.PrimaryLearningDeviceProviderDescriptorId != source.PrimaryLearningDeviceProviderDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PrimaryLearningDeviceProviderDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -44056,13 +42860,6 @@ public static bool SynchronizeTo(this IPrimaryLearningDeviceProviderDescriptor s isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -44110,9 +42907,6 @@ public static void MapTo(this IPrimaryLearningDeviceProviderDescriptor source, I if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -44172,7 +42966,8 @@ public static bool SynchronizeTo(this IProficiencyDescriptor source, IProficienc // Detect primary key changes if ( - (target.ProficiencyDescriptorId != source.ProficiencyDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProficiencyDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -44217,13 +43012,6 @@ public static bool SynchronizeTo(this IProficiencyDescriptor source, IProficienc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -44271,9 +43059,6 @@ public static void MapTo(this IProficiencyDescriptor source, IProficiencyDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -44710,7 +43495,8 @@ public static bool SynchronizeTo(this IProgramAssignmentDescriptor source, IProg // Detect primary key changes if ( - (target.ProgramAssignmentDescriptorId != source.ProgramAssignmentDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgramAssignmentDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -44755,13 +43541,6 @@ public static bool SynchronizeTo(this IProgramAssignmentDescriptor source, IProg isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -44809,9 +43588,6 @@ public static void MapTo(this IProgramAssignmentDescriptor source, IProgramAssig if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -44871,7 +43647,8 @@ public static bool SynchronizeTo(this IProgramCharacteristicDescriptor source, I // Detect primary key changes if ( - (target.ProgramCharacteristicDescriptorId != source.ProgramCharacteristicDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgramCharacteristicDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -44916,13 +43693,6 @@ public static bool SynchronizeTo(this IProgramCharacteristicDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -44970,9 +43740,6 @@ public static void MapTo(this IProgramCharacteristicDescriptor source, IProgramC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -45981,7 +44748,8 @@ public static bool SynchronizeTo(this IProgramEvaluationPeriodDescriptor source, // Detect primary key changes if ( - (target.ProgramEvaluationPeriodDescriptorId != source.ProgramEvaluationPeriodDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgramEvaluationPeriodDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46026,13 +44794,6 @@ public static bool SynchronizeTo(this IProgramEvaluationPeriodDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46080,9 +44841,6 @@ public static void MapTo(this IProgramEvaluationPeriodDescriptor source, IProgra if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -46142,7 +44900,8 @@ public static bool SynchronizeTo(this IProgramEvaluationTypeDescriptor source, I // Detect primary key changes if ( - (target.ProgramEvaluationTypeDescriptorId != source.ProgramEvaluationTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgramEvaluationTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46187,13 +44946,6 @@ public static bool SynchronizeTo(this IProgramEvaluationTypeDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46241,9 +44993,6 @@ public static void MapTo(this IProgramEvaluationTypeDescriptor source, IProgramE if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -46303,7 +45052,8 @@ public static bool SynchronizeTo(this IProgramSponsorDescriptor source, IProgram // Detect primary key changes if ( - (target.ProgramSponsorDescriptorId != source.ProgramSponsorDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgramSponsorDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46348,13 +45098,6 @@ public static bool SynchronizeTo(this IProgramSponsorDescriptor source, IProgram isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46402,9 +45145,6 @@ public static void MapTo(this IProgramSponsorDescriptor source, IProgramSponsorD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -46464,7 +45204,8 @@ public static bool SynchronizeTo(this IProgramTypeDescriptor source, IProgramTyp // Detect primary key changes if ( - (target.ProgramTypeDescriptorId != source.ProgramTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgramTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46509,13 +45250,6 @@ public static bool SynchronizeTo(this IProgramTypeDescriptor source, IProgramTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46563,9 +45297,6 @@ public static void MapTo(this IProgramTypeDescriptor source, IProgramTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -46625,7 +45356,8 @@ public static bool SynchronizeTo(this IProgressDescriptor source, IProgressDescr // Detect primary key changes if ( - (target.ProgressDescriptorId != source.ProgressDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgressDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46670,13 +45402,6 @@ public static bool SynchronizeTo(this IProgressDescriptor source, IProgressDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46724,9 +45449,6 @@ public static void MapTo(this IProgressDescriptor source, IProgressDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -46786,7 +45508,8 @@ public static bool SynchronizeTo(this IProgressLevelDescriptor source, IProgress // Detect primary key changes if ( - (target.ProgressLevelDescriptorId != source.ProgressLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProgressLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -46831,13 +45554,6 @@ public static bool SynchronizeTo(this IProgressLevelDescriptor source, IProgress isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -46885,9 +45601,6 @@ public static void MapTo(this IProgressLevelDescriptor source, IProgressLevelDes if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47134,7 +45847,8 @@ public static bool SynchronizeTo(this IProviderCategoryDescriptor source, IProvi // Detect primary key changes if ( - (target.ProviderCategoryDescriptorId != source.ProviderCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProviderCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47179,13 +45893,6 @@ public static bool SynchronizeTo(this IProviderCategoryDescriptor source, IProvi isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47233,9 +45940,6 @@ public static void MapTo(this IProviderCategoryDescriptor source, IProviderCateg if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47295,7 +45999,8 @@ public static bool SynchronizeTo(this IProviderProfitabilityDescriptor source, I // Detect primary key changes if ( - (target.ProviderProfitabilityDescriptorId != source.ProviderProfitabilityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProviderProfitabilityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47340,13 +46045,6 @@ public static bool SynchronizeTo(this IProviderProfitabilityDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47394,9 +46092,6 @@ public static void MapTo(this IProviderProfitabilityDescriptor source, IProvider if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47456,7 +46151,8 @@ public static bool SynchronizeTo(this IProviderStatusDescriptor source, IProvide // Detect primary key changes if ( - (target.ProviderStatusDescriptorId != source.ProviderStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ProviderStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47501,13 +46197,6 @@ public static bool SynchronizeTo(this IProviderStatusDescriptor source, IProvide isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47555,9 +46244,6 @@ public static void MapTo(this IProviderStatusDescriptor source, IProviderStatusD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47617,7 +46303,8 @@ public static bool SynchronizeTo(this IPublicationStatusDescriptor source, IPubl // Detect primary key changes if ( - (target.PublicationStatusDescriptorId != source.PublicationStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on PublicationStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47662,13 +46349,6 @@ public static bool SynchronizeTo(this IPublicationStatusDescriptor source, IPubl isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47716,9 +46396,6 @@ public static void MapTo(this IPublicationStatusDescriptor source, IPublicationS if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47778,7 +46455,8 @@ public static bool SynchronizeTo(this IQuestionFormDescriptor source, IQuestionF // Detect primary key changes if ( - (target.QuestionFormDescriptorId != source.QuestionFormDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on QuestionFormDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47823,13 +46501,6 @@ public static bool SynchronizeTo(this IQuestionFormDescriptor source, IQuestionF isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -47877,9 +46548,6 @@ public static void MapTo(this IQuestionFormDescriptor source, IQuestionFormDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -47939,7 +46607,8 @@ public static bool SynchronizeTo(this IRaceDescriptor source, IRaceDescriptor ta // Detect primary key changes if ( - (target.RaceDescriptorId != source.RaceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RaceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -47984,13 +46653,6 @@ public static bool SynchronizeTo(this IRaceDescriptor source, IRaceDescriptor ta isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -48038,9 +46700,6 @@ public static void MapTo(this IRaceDescriptor source, IRaceDescriptor target, Ac if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -48100,7 +46759,8 @@ public static bool SynchronizeTo(this IRatingLevelDescriptor source, IRatingLeve // Detect primary key changes if ( - (target.RatingLevelDescriptorId != source.RatingLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RatingLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -48145,13 +46805,6 @@ public static bool SynchronizeTo(this IRatingLevelDescriptor source, IRatingLeve isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -48199,9 +46852,6 @@ public static void MapTo(this IRatingLevelDescriptor source, IRatingLevelDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -48261,7 +46911,8 @@ public static bool SynchronizeTo(this IReasonExitedDescriptor source, IReasonExi // Detect primary key changes if ( - (target.ReasonExitedDescriptorId != source.ReasonExitedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ReasonExitedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -48306,13 +46957,6 @@ public static bool SynchronizeTo(this IReasonExitedDescriptor source, IReasonExi isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -48360,9 +47004,6 @@ public static void MapTo(this IReasonExitedDescriptor source, IReasonExitedDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -48422,7 +47063,8 @@ public static bool SynchronizeTo(this IReasonNotTestedDescriptor source, IReason // Detect primary key changes if ( - (target.ReasonNotTestedDescriptorId != source.ReasonNotTestedDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ReasonNotTestedDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -48467,13 +47109,6 @@ public static bool SynchronizeTo(this IReasonNotTestedDescriptor source, IReason isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -48521,9 +47156,6 @@ public static void MapTo(this IReasonNotTestedDescriptor source, IReasonNotTeste if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -48583,7 +47215,8 @@ public static bool SynchronizeTo(this IRecognitionTypeDescriptor source, IRecogn // Detect primary key changes if ( - (target.RecognitionTypeDescriptorId != source.RecognitionTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RecognitionTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -48628,13 +47261,6 @@ public static bool SynchronizeTo(this IRecognitionTypeDescriptor source, IRecogn isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -48682,9 +47308,6 @@ public static void MapTo(this IRecognitionTypeDescriptor source, IRecognitionTyp if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -48744,7 +47367,8 @@ public static bool SynchronizeTo(this IRelationDescriptor source, IRelationDescr // Detect primary key changes if ( - (target.RelationDescriptorId != source.RelationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RelationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -48789,13 +47413,6 @@ public static bool SynchronizeTo(this IRelationDescriptor source, IRelationDescr isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -48843,9 +47460,6 @@ public static void MapTo(this IRelationDescriptor source, IRelationDescriptor ta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -48905,7 +47519,8 @@ public static bool SynchronizeTo(this IRepeatIdentifierDescriptor source, IRepea // Detect primary key changes if ( - (target.RepeatIdentifierDescriptorId != source.RepeatIdentifierDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RepeatIdentifierDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -48950,13 +47565,6 @@ public static bool SynchronizeTo(this IRepeatIdentifierDescriptor source, IRepea isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -49004,9 +47612,6 @@ public static void MapTo(this IRepeatIdentifierDescriptor source, IRepeatIdentif if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -49518,7 +48123,8 @@ public static bool SynchronizeTo(this IReporterDescriptionDescriptor source, IRe // Detect primary key changes if ( - (target.ReporterDescriptionDescriptorId != source.ReporterDescriptionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ReporterDescriptionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -49563,13 +48169,6 @@ public static bool SynchronizeTo(this IReporterDescriptionDescriptor source, IRe isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -49617,9 +48216,6 @@ public static void MapTo(this IReporterDescriptionDescriptor source, IReporterDe if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -49679,7 +48275,8 @@ public static bool SynchronizeTo(this IReportingTagDescriptor source, IReporting // Detect primary key changes if ( - (target.ReportingTagDescriptorId != source.ReportingTagDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ReportingTagDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -49724,13 +48321,6 @@ public static bool SynchronizeTo(this IReportingTagDescriptor source, IReporting isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -49778,9 +48368,6 @@ public static void MapTo(this IReportingTagDescriptor source, IReportingTagDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -49840,7 +48427,8 @@ public static bool SynchronizeTo(this IResidencyStatusDescriptor source, IReside // Detect primary key changes if ( - (target.ResidencyStatusDescriptorId != source.ResidencyStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ResidencyStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -49885,13 +48473,6 @@ public static bool SynchronizeTo(this IResidencyStatusDescriptor source, IReside isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -49939,9 +48520,6 @@ public static void MapTo(this IResidencyStatusDescriptor source, IResidencyStatu if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -50001,7 +48579,8 @@ public static bool SynchronizeTo(this IResponseIndicatorDescriptor source, IResp // Detect primary key changes if ( - (target.ResponseIndicatorDescriptorId != source.ResponseIndicatorDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ResponseIndicatorDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -50046,13 +48625,6 @@ public static bool SynchronizeTo(this IResponseIndicatorDescriptor source, IResp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -50100,9 +48672,6 @@ public static void MapTo(this IResponseIndicatorDescriptor source, IResponseIndi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -50162,7 +48731,8 @@ public static bool SynchronizeTo(this IResponsibilityDescriptor source, IRespons // Detect primary key changes if ( - (target.ResponsibilityDescriptorId != source.ResponsibilityDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ResponsibilityDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -50207,13 +48777,6 @@ public static bool SynchronizeTo(this IResponsibilityDescriptor source, IRespons isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -50261,9 +48824,6 @@ public static void MapTo(this IResponsibilityDescriptor source, IResponsibilityD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -50626,7 +49186,8 @@ public static bool SynchronizeTo(this IRestraintEventReasonDescriptor source, IR // Detect primary key changes if ( - (target.RestraintEventReasonDescriptorId != source.RestraintEventReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RestraintEventReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -50671,13 +49232,6 @@ public static bool SynchronizeTo(this IRestraintEventReasonDescriptor source, IR isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -50725,9 +49279,6 @@ public static void MapTo(this IRestraintEventReasonDescriptor source, IRestraint if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -50787,7 +49338,8 @@ public static bool SynchronizeTo(this IResultDatatypeTypeDescriptor source, IRes // Detect primary key changes if ( - (target.ResultDatatypeTypeDescriptorId != source.ResultDatatypeTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ResultDatatypeTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -50832,13 +49384,6 @@ public static bool SynchronizeTo(this IResultDatatypeTypeDescriptor source, IRes isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -50886,9 +49431,6 @@ public static void MapTo(this IResultDatatypeTypeDescriptor source, IResultDatat if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -50948,7 +49490,8 @@ public static bool SynchronizeTo(this IRetestIndicatorDescriptor source, IRetest // Detect primary key changes if ( - (target.RetestIndicatorDescriptorId != source.RetestIndicatorDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on RetestIndicatorDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -50993,13 +49536,6 @@ public static bool SynchronizeTo(this IRetestIndicatorDescriptor source, IRetest isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -51047,9 +49583,6 @@ public static void MapTo(this IRetestIndicatorDescriptor source, IRetestIndicato if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -51599,7 +50132,8 @@ public static bool SynchronizeTo(this ISchoolCategoryDescriptor source, ISchoolC // Detect primary key changes if ( - (target.SchoolCategoryDescriptorId != source.SchoolCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SchoolCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -51644,13 +50178,6 @@ public static bool SynchronizeTo(this ISchoolCategoryDescriptor source, ISchoolC isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -51698,9 +50225,6 @@ public static void MapTo(this ISchoolCategoryDescriptor source, ISchoolCategoryD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -51760,7 +50284,8 @@ public static bool SynchronizeTo(this ISchoolChoiceBasisDescriptor source, IScho // Detect primary key changes if ( - (target.SchoolChoiceBasisDescriptorId != source.SchoolChoiceBasisDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SchoolChoiceBasisDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -51805,13 +50330,6 @@ public static bool SynchronizeTo(this ISchoolChoiceBasisDescriptor source, IScho isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -51859,9 +50377,6 @@ public static void MapTo(this ISchoolChoiceBasisDescriptor source, ISchoolChoice if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -51921,7 +50436,8 @@ public static bool SynchronizeTo(this ISchoolChoiceImplementStatusDescriptor sou // Detect primary key changes if ( - (target.SchoolChoiceImplementStatusDescriptorId != source.SchoolChoiceImplementStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SchoolChoiceImplementStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -51966,13 +50482,6 @@ public static bool SynchronizeTo(this ISchoolChoiceImplementStatusDescriptor sou isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -52020,9 +50529,6 @@ public static void MapTo(this ISchoolChoiceImplementStatusDescriptor source, ISc if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -52082,7 +50588,8 @@ public static bool SynchronizeTo(this ISchoolFoodServiceProgramServiceDescriptor // Detect primary key changes if ( - (target.SchoolFoodServiceProgramServiceDescriptorId != source.SchoolFoodServiceProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SchoolFoodServiceProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -52127,13 +50634,6 @@ public static bool SynchronizeTo(this ISchoolFoodServiceProgramServiceDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -52181,9 +50681,6 @@ public static void MapTo(this ISchoolFoodServiceProgramServiceDescriptor source, if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -52243,7 +50740,8 @@ public static bool SynchronizeTo(this ISchoolTypeDescriptor source, ISchoolTypeD // Detect primary key changes if ( - (target.SchoolTypeDescriptorId != source.SchoolTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SchoolTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -52288,13 +50786,6 @@ public static bool SynchronizeTo(this ISchoolTypeDescriptor source, ISchoolTypeD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -52342,9 +50833,6 @@ public static void MapTo(this ISchoolTypeDescriptor source, ISchoolTypeDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -53360,7 +51848,8 @@ public static bool SynchronizeTo(this ISectionCharacteristicDescriptor source, I // Detect primary key changes if ( - (target.SectionCharacteristicDescriptorId != source.SectionCharacteristicDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SectionCharacteristicDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -53405,13 +51894,6 @@ public static bool SynchronizeTo(this ISectionCharacteristicDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -53459,9 +51941,6 @@ public static void MapTo(this ISectionCharacteristicDescriptor source, ISectionC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -53521,7 +52000,8 @@ public static bool SynchronizeTo(this ISectionTypeDescriptor source, ISectionTyp // Detect primary key changes if ( - (target.SectionTypeDescriptorId != source.SectionTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SectionTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -53566,13 +52046,6 @@ public static bool SynchronizeTo(this ISectionTypeDescriptor source, ISectionTyp isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -53620,9 +52093,6 @@ public static void MapTo(this ISectionTypeDescriptor source, ISectionTypeDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -53682,7 +52152,8 @@ public static bool SynchronizeTo(this ISeparationDescriptor source, ISeparationD // Detect primary key changes if ( - (target.SeparationDescriptorId != source.SeparationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SeparationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -53727,13 +52198,6 @@ public static bool SynchronizeTo(this ISeparationDescriptor source, ISeparationD isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -53781,9 +52245,6 @@ public static void MapTo(this ISeparationDescriptor source, ISeparationDescripto if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -53843,7 +52304,8 @@ public static bool SynchronizeTo(this ISeparationReasonDescriptor source, ISepar // Detect primary key changes if ( - (target.SeparationReasonDescriptorId != source.SeparationReasonDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SeparationReasonDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -53888,13 +52350,6 @@ public static bool SynchronizeTo(this ISeparationReasonDescriptor source, ISepar isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -53942,9 +52397,6 @@ public static void MapTo(this ISeparationReasonDescriptor source, ISeparationRea if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -54004,7 +52456,8 @@ public static bool SynchronizeTo(this IServiceDescriptor source, IServiceDescrip // Detect primary key changes if ( - (target.ServiceDescriptorId != source.ServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on ServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -54049,13 +52502,6 @@ public static bool SynchronizeTo(this IServiceDescriptor source, IServiceDescrip isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -54103,9 +52549,6 @@ public static void MapTo(this IServiceDescriptor source, IServiceDescriptor targ if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -54517,7 +52960,8 @@ public static bool SynchronizeTo(this ISexDescriptor source, ISexDescriptor targ // Detect primary key changes if ( - (target.SexDescriptorId != source.SexDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SexDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -54562,13 +53006,6 @@ public static bool SynchronizeTo(this ISexDescriptor source, ISexDescriptor targ isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -54616,9 +53053,6 @@ public static void MapTo(this ISexDescriptor source, ISexDescriptor target, Acti if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -54865,7 +53299,8 @@ public static bool SynchronizeTo(this ISourceSystemDescriptor source, ISourceSys // Detect primary key changes if ( - (target.SourceSystemDescriptorId != source.SourceSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SourceSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -54910,13 +53345,6 @@ public static bool SynchronizeTo(this ISourceSystemDescriptor source, ISourceSys isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -54964,9 +53392,6 @@ public static void MapTo(this ISourceSystemDescriptor source, ISourceSystemDescr if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -55026,7 +53451,8 @@ public static bool SynchronizeTo(this ISpecialEducationProgramServiceDescriptor // Detect primary key changes if ( - (target.SpecialEducationProgramServiceDescriptorId != source.SpecialEducationProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SpecialEducationProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -55071,171 +53497,155 @@ public static bool SynchronizeTo(this ISpecialEducationProgramServiceDescriptor isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - - if ((mappingContract?.IsShortDescriptionSupported != false) - && target.ShortDescription != source.ShortDescription) - { - target.ShortDescription = source.ShortDescription; - isModified = true; - } - - // Copy non-PK properties - - - // Synch inherited lists - - // Sync lists - - return isModified; - } - - public static void MapTo(this ISpecialEducationProgramServiceDescriptor source, ISpecialEducationProgramServiceDescriptor target, Action onMapped) - { - // Get the mapping contract for determining what values to map through to target - var mappingContract = (SpecialEducationProgramServiceDescriptorMappingContract) GeneratedArtifactStaticDependencies - .MappingContractProvider - .GetMappingContract(_fullName_edfi_SpecialEducationProgramServiceDescriptor); - - // Copy resource Id - target.Id = source.Id; - - // Copy contextual primary key values - target.SpecialEducationProgramServiceDescriptorId = source.SpecialEducationProgramServiceDescriptorId; - - // Copy inherited non-PK properties - - if (mappingContract?.IsCodeValueSupported != false) - target.CodeValue = source.CodeValue; - - if (mappingContract?.IsDescriptionSupported != false) - target.Description = source.Description; - - if (mappingContract?.IsEffectiveBeginDateSupported != false) - target.EffectiveBeginDate = source.EffectiveBeginDate; - - if (mappingContract?.IsEffectiveEndDateSupported != false) - target.EffectiveEndDate = source.EffectiveEndDate; - - if (mappingContract?.IsNamespaceSupported != false) - target.Namespace = source.Namespace; - - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - - if (mappingContract?.IsShortDescriptionSupported != false) - target.ShortDescription = source.ShortDescription; - - // Copy non-PK properties - - // Copy Aggregate Reference Data - - - // ---------------------------------- - // Map One-to-one relationships - // ---------------------------------- - - // Map inherited lists - - // Map lists - - - // Convert source to an ETag, if appropriate - if (target is IHasETag entityWithETag) - entityWithETag.ETag = GeneratedArtifactStaticDependencies.ETagProvider.GetETag(source); - - // Copy/assign LastModifiedDate, if appropriate - if (target is IDateVersionedEntity targetDateVersionedEntity) - { - if (source is IHasETag etagSource) - { - // Convert resource's supplied eTag value to entity's LastModifiedDate - targetDateVersionedEntity.LastModifiedDate = GeneratedArtifactStaticDependencies.ETagProvider.GetDateTime(etagSource.ETag); - } - else if (source is IDateVersionedEntity sourceDateVersionedEntity) - { - // Copy LastModifiedDate, when mapping from entities to resources/entities - targetDateVersionedEntity.LastModifiedDate = sourceDateVersionedEntity.LastModifiedDate; - } - } - } - } - -} -// Aggregate: SpecialEducationSettingDescriptor - -namespace EdFi.Ods.Entities.Common.EdFi //.SpecialEducationSettingDescriptorAggregate -{ - [ExcludeFromCodeCoverage] - public static class SpecialEducationSettingDescriptorMapper - { - private static readonly FullName _fullName_edfi_SpecialEducationSettingDescriptor = new FullName("edfi", "SpecialEducationSettingDescriptor"); - - public static bool SynchronizeTo(this ISpecialEducationSettingDescriptor source, ISpecialEducationSettingDescriptor target) - { - bool isModified = false; - - // Get the mapping contract for knowing what values to synchronize through to target entity - var mappingContract = (SpecialEducationSettingDescriptorMappingContract) GeneratedArtifactStaticDependencies - .MappingContractProvider - .GetMappingContract(_fullName_edfi_SpecialEducationSettingDescriptor); - - // Detect primary key changes - if ( - (target.SpecialEducationSettingDescriptorId != source.SpecialEducationSettingDescriptorId)) - { - // Disallow PK column updates on SpecialEducationSettingDescriptor - throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); - } - - - // Copy inherited non-PK properties - - - if ((mappingContract?.IsCodeValueSupported != false) - && target.CodeValue != source.CodeValue) - { - target.CodeValue = source.CodeValue; - isModified = true; - } - - if ((mappingContract?.IsDescriptionSupported != false) - && target.Description != source.Description) - { - target.Description = source.Description; - isModified = true; - } - - if ((mappingContract?.IsEffectiveBeginDateSupported != false) - && target.EffectiveBeginDate != source.EffectiveBeginDate) - { - target.EffectiveBeginDate = source.EffectiveBeginDate; - isModified = true; - } - - if ((mappingContract?.IsEffectiveEndDateSupported != false) - && target.EffectiveEndDate != source.EffectiveEndDate) - { - target.EffectiveEndDate = source.EffectiveEndDate; - isModified = true; - } - - if ((mappingContract?.IsNamespaceSupported != false) - && target.Namespace != source.Namespace) - { - target.Namespace = source.Namespace; - isModified = true; - } - - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) + if ((mappingContract?.IsShortDescriptionSupported != false) + && target.ShortDescription != source.ShortDescription) { - target.PriorDescriptorId = source.PriorDescriptorId; + target.ShortDescription = source.ShortDescription; + isModified = true; + } + + // Copy non-PK properties + + + // Synch inherited lists + + // Sync lists + + return isModified; + } + + public static void MapTo(this ISpecialEducationProgramServiceDescriptor source, ISpecialEducationProgramServiceDescriptor target, Action onMapped) + { + // Get the mapping contract for determining what values to map through to target + var mappingContract = (SpecialEducationProgramServiceDescriptorMappingContract) GeneratedArtifactStaticDependencies + .MappingContractProvider + .GetMappingContract(_fullName_edfi_SpecialEducationProgramServiceDescriptor); + + // Copy resource Id + target.Id = source.Id; + + // Copy contextual primary key values + target.SpecialEducationProgramServiceDescriptorId = source.SpecialEducationProgramServiceDescriptorId; + + // Copy inherited non-PK properties + + if (mappingContract?.IsCodeValueSupported != false) + target.CodeValue = source.CodeValue; + + if (mappingContract?.IsDescriptionSupported != false) + target.Description = source.Description; + + if (mappingContract?.IsEffectiveBeginDateSupported != false) + target.EffectiveBeginDate = source.EffectiveBeginDate; + + if (mappingContract?.IsEffectiveEndDateSupported != false) + target.EffectiveEndDate = source.EffectiveEndDate; + + if (mappingContract?.IsNamespaceSupported != false) + target.Namespace = source.Namespace; + + if (mappingContract?.IsShortDescriptionSupported != false) + target.ShortDescription = source.ShortDescription; + + // Copy non-PK properties + + // Copy Aggregate Reference Data + + + // ---------------------------------- + // Map One-to-one relationships + // ---------------------------------- + + // Map inherited lists + + // Map lists + + + // Convert source to an ETag, if appropriate + if (target is IHasETag entityWithETag) + entityWithETag.ETag = GeneratedArtifactStaticDependencies.ETagProvider.GetETag(source); + + // Copy/assign LastModifiedDate, if appropriate + if (target is IDateVersionedEntity targetDateVersionedEntity) + { + if (source is IHasETag etagSource) + { + // Convert resource's supplied eTag value to entity's LastModifiedDate + targetDateVersionedEntity.LastModifiedDate = GeneratedArtifactStaticDependencies.ETagProvider.GetDateTime(etagSource.ETag); + } + else if (source is IDateVersionedEntity sourceDateVersionedEntity) + { + // Copy LastModifiedDate, when mapping from entities to resources/entities + targetDateVersionedEntity.LastModifiedDate = sourceDateVersionedEntity.LastModifiedDate; + } + } + } + } + +} +// Aggregate: SpecialEducationSettingDescriptor + +namespace EdFi.Ods.Entities.Common.EdFi //.SpecialEducationSettingDescriptorAggregate +{ + [ExcludeFromCodeCoverage] + public static class SpecialEducationSettingDescriptorMapper + { + private static readonly FullName _fullName_edfi_SpecialEducationSettingDescriptor = new FullName("edfi", "SpecialEducationSettingDescriptor"); + + public static bool SynchronizeTo(this ISpecialEducationSettingDescriptor source, ISpecialEducationSettingDescriptor target) + { + bool isModified = false; + + // Get the mapping contract for knowing what values to synchronize through to target entity + var mappingContract = (SpecialEducationSettingDescriptorMappingContract) GeneratedArtifactStaticDependencies + .MappingContractProvider + .GetMappingContract(_fullName_edfi_SpecialEducationSettingDescriptor); + + // Detect primary key changes + if ( + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) + { + // Disallow PK column updates on SpecialEducationSettingDescriptor + throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); + } + + + // Copy inherited non-PK properties + + + if ((mappingContract?.IsCodeValueSupported != false) + && target.CodeValue != source.CodeValue) + { + target.CodeValue = source.CodeValue; + isModified = true; + } + + if ((mappingContract?.IsDescriptionSupported != false) + && target.Description != source.Description) + { + target.Description = source.Description; + isModified = true; + } + + if ((mappingContract?.IsEffectiveBeginDateSupported != false) + && target.EffectiveBeginDate != source.EffectiveBeginDate) + { + target.EffectiveBeginDate = source.EffectiveBeginDate; + isModified = true; + } + + if ((mappingContract?.IsEffectiveEndDateSupported != false) + && target.EffectiveEndDate != source.EffectiveEndDate) + { + target.EffectiveEndDate = source.EffectiveEndDate; + isModified = true; + } + + if ((mappingContract?.IsNamespaceSupported != false) + && target.Namespace != source.Namespace) + { + target.Namespace = source.Namespace; isModified = true; } @@ -55286,9 +53696,6 @@ public static void MapTo(this ISpecialEducationSettingDescriptor source, ISpecia if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -57793,7 +56200,8 @@ public static bool SynchronizeTo(this IStaffClassificationDescriptor source, ISt // Detect primary key changes if ( - (target.StaffClassificationDescriptorId != source.StaffClassificationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StaffClassificationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -57838,13 +56246,6 @@ public static bool SynchronizeTo(this IStaffClassificationDescriptor source, ISt isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -57892,9 +56293,6 @@ public static void MapTo(this IStaffClassificationDescriptor source, IStaffClass if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -59260,7 +57658,8 @@ public static bool SynchronizeTo(this IStaffIdentificationSystemDescriptor sourc // Detect primary key changes if ( - (target.StaffIdentificationSystemDescriptorId != source.StaffIdentificationSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StaffIdentificationSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -59305,13 +57704,6 @@ public static bool SynchronizeTo(this IStaffIdentificationSystemDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -59359,9 +57751,6 @@ public static void MapTo(this IStaffIdentificationSystemDescriptor source, IStaf if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -59548,7 +57937,8 @@ public static bool SynchronizeTo(this IStaffLeaveEventCategoryDescriptor source, // Detect primary key changes if ( - (target.StaffLeaveEventCategoryDescriptorId != source.StaffLeaveEventCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StaffLeaveEventCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -59593,13 +57983,6 @@ public static bool SynchronizeTo(this IStaffLeaveEventCategoryDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -59647,9 +58030,6 @@ public static void MapTo(this IStaffLeaveEventCategoryDescriptor source, IStaffL if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -60296,7 +58676,8 @@ public static bool SynchronizeTo(this IStateAbbreviationDescriptor source, IStat // Detect primary key changes if ( - (target.StateAbbreviationDescriptorId != source.StateAbbreviationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StateAbbreviationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -60341,13 +58722,6 @@ public static bool SynchronizeTo(this IStateAbbreviationDescriptor source, IStat isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -60395,9 +58769,6 @@ public static void MapTo(this IStateAbbreviationDescriptor source, IStateAbbrevi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -64208,7 +62579,8 @@ public static bool SynchronizeTo(this IStudentCharacteristicDescriptor source, I // Detect primary key changes if ( - (target.StudentCharacteristicDescriptorId != source.StudentCharacteristicDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StudentCharacteristicDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -64253,13 +62625,6 @@ public static bool SynchronizeTo(this IStudentCharacteristicDescriptor source, I isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -64307,9 +62672,6 @@ public static void MapTo(this IStudentCharacteristicDescriptor source, IStudentC if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -68562,7 +66924,8 @@ public static bool SynchronizeTo(this IStudentIdentificationSystemDescriptor sou // Detect primary key changes if ( - (target.StudentIdentificationSystemDescriptorId != source.StudentIdentificationSystemDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StudentIdentificationSystemDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -68607,13 +66970,6 @@ public static bool SynchronizeTo(this IStudentIdentificationSystemDescriptor sou isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -68661,9 +67017,6 @@ public static void MapTo(this IStudentIdentificationSystemDescriptor source, ISt if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -70230,7 +68583,8 @@ public static bool SynchronizeTo(this IStudentParticipationCodeDescriptor source // Detect primary key changes if ( - (target.StudentParticipationCodeDescriptorId != source.StudentParticipationCodeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on StudentParticipationCodeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -70275,13 +68629,6 @@ public static bool SynchronizeTo(this IStudentParticipationCodeDescriptor source isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -70329,9 +68676,6 @@ public static void MapTo(this IStudentParticipationCodeDescriptor source, IStude if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -74197,7 +72541,8 @@ public static bool SynchronizeTo(this ISubmissionStatusDescriptor source, ISubmi // Detect primary key changes if ( - (target.SubmissionStatusDescriptorId != source.SubmissionStatusDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SubmissionStatusDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -74242,13 +72587,6 @@ public static bool SynchronizeTo(this ISubmissionStatusDescriptor source, ISubmi isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -74296,9 +72634,6 @@ public static void MapTo(this ISubmissionStatusDescriptor source, ISubmissionSta if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -74358,7 +72693,8 @@ public static bool SynchronizeTo(this ISupporterMilitaryConnectionDescriptor sou // Detect primary key changes if ( - (target.SupporterMilitaryConnectionDescriptorId != source.SupporterMilitaryConnectionDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SupporterMilitaryConnectionDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -74403,13 +72739,6 @@ public static bool SynchronizeTo(this ISupporterMilitaryConnectionDescriptor sou isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -74457,9 +72786,6 @@ public static void MapTo(this ISupporterMilitaryConnectionDescriptor source, ISu if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -74689,7 +73015,8 @@ public static bool SynchronizeTo(this ISurveyCategoryDescriptor source, ISurveyC // Detect primary key changes if ( - (target.SurveyCategoryDescriptorId != source.SurveyCategoryDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SurveyCategoryDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -74734,13 +73061,6 @@ public static bool SynchronizeTo(this ISurveyCategoryDescriptor source, ISurveyC isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -74788,9 +73108,6 @@ public static void MapTo(this ISurveyCategoryDescriptor source, ISurveyCategoryD if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -74953,7 +73270,8 @@ public static bool SynchronizeTo(this ISurveyLevelDescriptor source, ISurveyLeve // Detect primary key changes if ( - (target.SurveyLevelDescriptorId != source.SurveyLevelDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on SurveyLevelDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -74998,13 +73316,6 @@ public static bool SynchronizeTo(this ISurveyLevelDescriptor source, ISurveyLeve isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -75052,9 +73363,6 @@ public static void MapTo(this ISurveyLevelDescriptor source, ISurveyLevelDescrip if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -76940,7 +75248,8 @@ public static bool SynchronizeTo(this ITeachingCredentialBasisDescriptor source, // Detect primary key changes if ( - (target.TeachingCredentialBasisDescriptorId != source.TeachingCredentialBasisDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TeachingCredentialBasisDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -76985,13 +75294,6 @@ public static bool SynchronizeTo(this ITeachingCredentialBasisDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77039,9 +75341,6 @@ public static void MapTo(this ITeachingCredentialBasisDescriptor source, ITeachi if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77101,7 +75400,8 @@ public static bool SynchronizeTo(this ITeachingCredentialDescriptor source, ITea // Detect primary key changes if ( - (target.TeachingCredentialDescriptorId != source.TeachingCredentialDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TeachingCredentialDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77146,13 +75446,6 @@ public static bool SynchronizeTo(this ITeachingCredentialDescriptor source, ITea isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77200,9 +75493,6 @@ public static void MapTo(this ITeachingCredentialDescriptor source, ITeachingCre if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77262,7 +75552,8 @@ public static bool SynchronizeTo(this ITechnicalSkillsAssessmentDescriptor sourc // Detect primary key changes if ( - (target.TechnicalSkillsAssessmentDescriptorId != source.TechnicalSkillsAssessmentDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TechnicalSkillsAssessmentDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77307,13 +75598,6 @@ public static bool SynchronizeTo(this ITechnicalSkillsAssessmentDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77361,9 +75645,6 @@ public static void MapTo(this ITechnicalSkillsAssessmentDescriptor source, ITech if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77423,7 +75704,8 @@ public static bool SynchronizeTo(this ITelephoneNumberTypeDescriptor source, ITe // Detect primary key changes if ( - (target.TelephoneNumberTypeDescriptorId != source.TelephoneNumberTypeDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TelephoneNumberTypeDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77468,13 +75750,6 @@ public static bool SynchronizeTo(this ITelephoneNumberTypeDescriptor source, ITe isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77522,9 +75797,6 @@ public static void MapTo(this ITelephoneNumberTypeDescriptor source, ITelephoneN if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77584,7 +75856,8 @@ public static bool SynchronizeTo(this ITermDescriptor source, ITermDescriptor ta // Detect primary key changes if ( - (target.TermDescriptorId != source.TermDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TermDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77629,13 +75902,6 @@ public static bool SynchronizeTo(this ITermDescriptor source, ITermDescriptor ta isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77683,9 +75949,6 @@ public static void MapTo(this ITermDescriptor source, ITermDescriptor target, Ac if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77745,7 +76008,8 @@ public static bool SynchronizeTo(this ITitleIPartAParticipantDescriptor source, // Detect primary key changes if ( - (target.TitleIPartAParticipantDescriptorId != source.TitleIPartAParticipantDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TitleIPartAParticipantDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77790,13 +76054,6 @@ public static bool SynchronizeTo(this ITitleIPartAParticipantDescriptor source, isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -77844,9 +76101,6 @@ public static void MapTo(this ITitleIPartAParticipantDescriptor source, ITitleIP if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -77906,7 +76160,8 @@ public static bool SynchronizeTo(this ITitleIPartAProgramServiceDescriptor sourc // Detect primary key changes if ( - (target.TitleIPartAProgramServiceDescriptorId != source.TitleIPartAProgramServiceDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TitleIPartAProgramServiceDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -77951,13 +76206,6 @@ public static bool SynchronizeTo(this ITitleIPartAProgramServiceDescriptor sourc isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -78005,9 +76253,6 @@ public static void MapTo(this ITitleIPartAProgramServiceDescriptor source, ITitl if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -78067,7 +76312,8 @@ public static bool SynchronizeTo(this ITitleIPartASchoolDesignationDescriptor so // Detect primary key changes if ( - (target.TitleIPartASchoolDesignationDescriptorId != source.TitleIPartASchoolDesignationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TitleIPartASchoolDesignationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -78112,13 +76358,6 @@ public static bool SynchronizeTo(this ITitleIPartASchoolDesignationDescriptor so isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -78166,9 +76405,6 @@ public static void MapTo(this ITitleIPartASchoolDesignationDescriptor source, IT if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -78228,7 +76464,8 @@ public static bool SynchronizeTo(this ITribalAffiliationDescriptor source, ITrib // Detect primary key changes if ( - (target.TribalAffiliationDescriptorId != source.TribalAffiliationDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on TribalAffiliationDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -78273,13 +76510,6 @@ public static bool SynchronizeTo(this ITribalAffiliationDescriptor source, ITrib isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -78327,9 +76557,6 @@ public static void MapTo(this ITribalAffiliationDescriptor source, ITribalAffili if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -78389,7 +76616,8 @@ public static bool SynchronizeTo(this IVisaDescriptor source, IVisaDescriptor ta // Detect primary key changes if ( - (target.VisaDescriptorId != source.VisaDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on VisaDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -78434,13 +76662,6 @@ public static bool SynchronizeTo(this IVisaDescriptor source, IVisaDescriptor ta isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -78488,9 +76709,6 @@ public static void MapTo(this IVisaDescriptor source, IVisaDescriptor target, Ac if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; @@ -78550,7 +76768,8 @@ public static bool SynchronizeTo(this IWeaponDescriptor source, IWeaponDescripto // Detect primary key changes if ( - (target.WeaponDescriptorId != source.WeaponDescriptorId)) + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) { // Disallow PK column updates on WeaponDescriptor throw new BadRequestException("Key values for this resource cannot be changed. Delete and recreate the resource item."); @@ -78595,13 +76814,6 @@ public static bool SynchronizeTo(this IWeaponDescriptor source, IWeaponDescripto isModified = true; } - if ((mappingContract?.IsPriorDescriptorIdSupported != false) - && target.PriorDescriptorId != source.PriorDescriptorId) - { - target.PriorDescriptorId = source.PriorDescriptorId; - isModified = true; - } - if ((mappingContract?.IsShortDescriptionSupported != false) && target.ShortDescription != source.ShortDescription) { @@ -78649,9 +76861,6 @@ public static void MapTo(this IWeaponDescriptor source, IWeaponDescriptor target if (mappingContract?.IsNamespaceSupported != false) target.Namespace = source.Namespace; - if (mappingContract?.IsPriorDescriptorIdSupported != false) - target.PriorDescriptorId = source.PriorDescriptorId; - if (mappingContract?.IsShortDescriptionSupported != false) target.ShortDescription = source.ShortDescription; diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Resources_Resources.generated.approved.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Resources_Resources.generated.approved.cs index ddd4298747..dd442f0f9c 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Resources_Resources.generated.approved.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen.Tests/Approval/5.0.0/DataStandard_500_ApprovalTests.Verify.Standard_Std_5.0.0_Resources_Resources.generated.approved.cs @@ -68,7 +68,7 @@ public class AbsenceEventCategoryDescriptor : Entities.Common.EdFi.IAbsenceEvent /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="absenceEventCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AbsenceEventCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -163,13 +163,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -339,7 +332,7 @@ public class AcademicHonorCategoryDescriptor : Entities.Common.EdFi.IAcademicHon /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="academicHonorCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AcademicHonorCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -434,13 +427,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -610,7 +596,7 @@ public class AcademicSubjectDescriptor : Entities.Common.EdFi.IAcademicSubjectDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="academicSubjectDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AcademicSubjectDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -705,13 +691,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -1309,7 +1288,7 @@ public class AccommodationDescriptor : Entities.Common.EdFi.IAccommodationDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="accommodationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AccommodationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -1404,13 +1383,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -2082,7 +2054,7 @@ public class AccountTypeDescriptor : Entities.Common.EdFi.IAccountTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="accountTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AccountTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -2177,13 +2149,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -2353,7 +2318,7 @@ public class AchievementCategoryDescriptor : Entities.Common.EdFi.IAchievementCa /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="achievementCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AchievementCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -2448,13 +2413,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -2624,7 +2582,7 @@ public class AdditionalCreditTypeDescriptor : Entities.Common.EdFi.IAdditionalCr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="additionalCreditTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AdditionalCreditTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -2719,13 +2677,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -2895,7 +2846,7 @@ public class AddressTypeDescriptor : Entities.Common.EdFi.IAddressTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="addressTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AddressTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -2990,13 +2941,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -3166,7 +3110,7 @@ public class AdministrationEnvironmentDescriptor : Entities.Common.EdFi.IAdminis /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="administrationEnvironmentDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AdministrationEnvironmentDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -3261,13 +3205,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -3437,7 +3374,7 @@ public class AdministrativeFundingControlDescriptor : Entities.Common.EdFi.IAdmi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="administrativeFundingControlDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AdministrativeFundingControlDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -3532,13 +3469,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -3708,7 +3638,7 @@ public class AncestryEthnicOriginDescriptor : Entities.Common.EdFi.IAncestryEthn /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="ancestryEthnicOriginDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AncestryEthnicOriginDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -3803,13 +3733,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -8302,7 +8225,7 @@ public class AssessmentCategoryDescriptor : Entities.Common.EdFi.IAssessmentCate /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -8397,13 +8320,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -8573,7 +8489,7 @@ public class AssessmentIdentificationSystemDescriptor : Entities.Common.EdFi.IAs /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentIdentificationSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentIdentificationSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -8668,13 +8584,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -9975,7 +9884,7 @@ public class AssessmentItemCategoryDescriptor : Entities.Common.EdFi.IAssessment /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentItemCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentItemCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -10070,13 +9979,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -10246,7 +10148,7 @@ public class AssessmentItemResultDescriptor : Entities.Common.EdFi.IAssessmentIt /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentItemResultDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentItemResultDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -10341,13 +10243,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -10517,7 +10412,7 @@ public class AssessmentPeriodDescriptor : Entities.Common.EdFi.IAssessmentPeriod /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentPeriodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentPeriodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -10612,13 +10507,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -10788,7 +10676,7 @@ public class AssessmentReportingMethodDescriptor : Entities.Common.EdFi.IAssessm /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assessmentReportingMethodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssessmentReportingMethodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -10883,13 +10771,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -12014,7 +11895,7 @@ public class AssignmentLateStatusDescriptor : Entities.Common.EdFi.IAssignmentLa /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="assignmentLateStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AssignmentLateStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -12109,13 +11990,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -12285,7 +12159,7 @@ public class AttemptStatusDescriptor : Entities.Common.EdFi.IAttemptStatusDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="attemptStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AttemptStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -12380,13 +12254,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -12556,7 +12423,7 @@ public class AttendanceEventCategoryDescriptor : Entities.Common.EdFi.IAttendanc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="attendanceEventCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int AttendanceEventCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -12651,13 +12518,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -13482,7 +13342,7 @@ public class BarrierToInternetAccessInResidenceDescriptor : Entities.Common.EdFi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="barrierToInternetAccessInResidenceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int BarrierToInternetAccessInResidenceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -13577,13 +13437,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -13753,7 +13606,7 @@ public class BehaviorDescriptor : Entities.Common.EdFi.IBehaviorDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="behaviorDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int BehaviorDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -13848,13 +13701,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -16937,7 +16783,7 @@ public class CalendarEventDescriptor : Entities.Common.EdFi.ICalendarEventDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="calendarEventDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CalendarEventDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17032,13 +16878,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -17208,7 +17047,7 @@ public class CalendarTypeDescriptor : Entities.Common.EdFi.ICalendarTypeDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="calendarTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CalendarTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17303,13 +17142,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -17479,7 +17311,7 @@ public class CareerPathwayDescriptor : Entities.Common.EdFi.ICareerPathwayDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="careerPathwayDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CareerPathwayDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17574,13 +17406,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -17750,7 +17575,7 @@ public class CharterApprovalAgencyTypeDescriptor : Entities.Common.EdFi.ICharter /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="charterApprovalAgencyTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CharterApprovalAgencyTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -17845,13 +17670,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -18021,7 +17839,7 @@ public class CharterStatusDescriptor : Entities.Common.EdFi.ICharterStatusDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="charterStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CharterStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -18116,13 +17934,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -19756,7 +19567,7 @@ public class CitizenshipStatusDescriptor : Entities.Common.EdFi.ICitizenshipStat /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="citizenshipStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CitizenshipStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -19851,13 +19662,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -20735,7 +20539,7 @@ public class ClassroomPositionDescriptor : Entities.Common.EdFi.IClassroomPositi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="classroomPositionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ClassroomPositionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -20830,13 +20634,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -21854,7 +21651,7 @@ public class CohortScopeDescriptor : Entities.Common.EdFi.ICohortScopeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="cohortScopeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CohortScopeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -21949,13 +21746,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -22125,7 +21915,7 @@ public class CohortTypeDescriptor : Entities.Common.EdFi.ICohortTypeDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="cohortTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CohortTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -22220,13 +22010,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -22396,7 +22179,7 @@ public class CohortYearTypeDescriptor : Entities.Common.EdFi.ICohortYearTypeDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="cohortYearTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CohortYearTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -22491,13 +22274,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -24474,7 +24250,7 @@ public class CompetencyLevelDescriptor : Entities.Common.EdFi.ICompetencyLevelDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="competencyLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CompetencyLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -24569,13 +24345,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -28596,7 +28365,7 @@ public class ContactTypeDescriptor : Entities.Common.EdFi.IContactTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="contactTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ContactTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -28691,13 +28460,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -28867,7 +28629,7 @@ public class ContentClassDescriptor : Entities.Common.EdFi.IContentClassDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="contentClassDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ContentClassDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -28962,13 +28724,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -29138,7 +28893,7 @@ public class ContinuationOfServicesReasonDescriptor : Entities.Common.EdFi.ICont /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="continuationOfServicesReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ContinuationOfServicesReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -29233,13 +28988,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -29409,7 +29157,7 @@ public class CostRateDescriptor : Entities.Common.EdFi.ICostRateDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="costRateDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CostRateDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -29504,13 +29252,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -29680,7 +29421,7 @@ public class CountryDescriptor : Entities.Common.EdFi.ICountryDescriptor, Entiti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="countryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CountryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -29775,13 +29516,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -32247,7 +31981,7 @@ public class CourseAttemptResultDescriptor : Entities.Common.EdFi.ICourseAttempt /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseAttemptResultDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseAttemptResultDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -32342,13 +32076,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -32518,7 +32245,7 @@ public class CourseDefinedByDescriptor : Entities.Common.EdFi.ICourseDefinedByDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseDefinedByDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseDefinedByDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -32613,13 +32340,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -32789,7 +32509,7 @@ public class CourseGPAApplicabilityDescriptor : Entities.Common.EdFi.ICourseGPAA /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseGPAApplicabilityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseGPAApplicabilityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -32884,13 +32604,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -33060,7 +32773,7 @@ public class CourseIdentificationSystemDescriptor : Entities.Common.EdFi.ICourse /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseIdentificationSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseIdentificationSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -33155,13 +32868,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -33331,7 +33037,7 @@ public class CourseLevelCharacteristicDescriptor : Entities.Common.EdFi.ICourseL /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseLevelCharacteristicDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseLevelCharacteristicDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -33426,13 +33132,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -35116,7 +34815,7 @@ public class CourseRepeatCodeDescriptor : Entities.Common.EdFi.ICourseRepeatCode /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="courseRepeatCodeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CourseRepeatCodeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -35211,13 +34910,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -39923,7 +39615,7 @@ public class CredentialFieldDescriptor : Entities.Common.EdFi.ICredentialFieldDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="credentialFieldDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CredentialFieldDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -40018,13 +39710,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -40194,7 +39879,7 @@ public class CredentialTypeDescriptor : Entities.Common.EdFi.ICredentialTypeDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="credentialTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CredentialTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -40289,13 +39974,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -40465,7 +40143,7 @@ public class CreditCategoryDescriptor : Entities.Common.EdFi.ICreditCategoryDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="creditCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CreditCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -40560,13 +40238,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -40736,7 +40407,7 @@ public class CreditTypeDescriptor : Entities.Common.EdFi.ICreditTypeDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="creditTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CreditTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -40831,13 +40502,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -41007,7 +40671,7 @@ public class CTEProgramServiceDescriptor : Entities.Common.EdFi.ICTEProgramServi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="cteProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CTEProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -41102,13 +40766,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -41278,7 +40935,7 @@ public class CurriculumUsedDescriptor : Entities.Common.EdFi.ICurriculumUsedDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="curriculumUsedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int CurriculumUsedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -41373,13 +41030,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -41549,7 +41199,7 @@ public class DeliveryMethodDescriptor : Entities.Common.EdFi.IDeliveryMethodDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="deliveryMethodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DeliveryMethodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -41644,13 +41294,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -42570,7 +42213,7 @@ public class DiagnosisDescriptor : Entities.Common.EdFi.IDiagnosisDescriptor, En /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="diagnosisDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DiagnosisDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -42665,13 +42308,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -42841,7 +42477,7 @@ public class DiplomaLevelDescriptor : Entities.Common.EdFi.IDiplomaLevelDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="diplomaLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DiplomaLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -42936,13 +42572,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -43112,7 +42741,7 @@ public class DiplomaTypeDescriptor : Entities.Common.EdFi.IDiplomaTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="diplomaTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DiplomaTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -43207,13 +42836,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -43383,7 +43005,7 @@ public class DisabilityDescriptor : Entities.Common.EdFi.IDisabilityDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disabilityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisabilityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -43478,13 +43100,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -43654,7 +43269,7 @@ public class DisabilityDesignationDescriptor : Entities.Common.EdFi.IDisabilityD /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disabilityDesignationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisabilityDesignationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -43749,13 +43364,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -43925,7 +43533,7 @@ public class DisabilityDeterminationSourceTypeDescriptor : Entities.Common.EdFi. /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disabilityDeterminationSourceTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisabilityDeterminationSourceTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -44020,13 +43628,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -45873,7 +45474,7 @@ public class DisciplineActionLengthDifferenceReasonDescriptor : Entities.Common. /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disciplineActionLengthDifferenceReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisciplineActionLengthDifferenceReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -45968,13 +45569,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -46144,7 +45738,7 @@ public class DisciplineDescriptor : Entities.Common.EdFi.IDisciplineDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disciplineDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisciplineDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -46239,13 +45833,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -47756,7 +47343,7 @@ public class DisciplineIncidentParticipationCodeDescriptor : Entities.Common.EdF /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="disciplineIncidentParticipationCodeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int DisciplineIncidentParticipationCodeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -47851,13 +47438,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -48027,7 +47607,7 @@ public class EducationalEnvironmentDescriptor : Entities.Common.EdFi.IEducationa /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educationalEnvironmentDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducationalEnvironmentDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -48122,13 +47702,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -53078,7 +52651,7 @@ public class EducationOrganizationAssociationTypeDescriptor : Entities.Common.Ed /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educationOrganizationAssociationTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducationOrganizationAssociationTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -53173,13 +52746,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -53349,7 +52915,7 @@ public class EducationOrganizationCategoryDescriptor : Entities.Common.EdFi.IEdu /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educationOrganizationCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducationOrganizationCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -53444,13 +53010,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -53620,7 +53179,7 @@ public class EducationOrganizationIdentificationSystemDescriptor : Entities.Comm /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educationOrganizationIdentificationSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducationOrganizationIdentificationSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -53715,13 +53274,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -55950,7 +55502,7 @@ public class EducationPlanDescriptor : Entities.Common.EdFi.IEducationPlanDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="educationPlanDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EducationPlanDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -56045,13 +55597,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -56908,7 +56453,7 @@ public class ElectronicMailTypeDescriptor : Entities.Common.EdFi.IElectronicMail /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="electronicMailTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ElectronicMailTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -57003,13 +56548,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -57179,7 +56717,7 @@ public class EligibilityDelayReasonDescriptor : Entities.Common.EdFi.IEligibilit /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="eligibilityDelayReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EligibilityDelayReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -57274,13 +56812,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -57450,7 +56981,7 @@ public class EligibilityEvaluationTypeDescriptor : Entities.Common.EdFi.IEligibi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="eligibilityEvaluationTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EligibilityEvaluationTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -57545,13 +57076,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -57721,7 +57245,7 @@ public class EmploymentStatusDescriptor : Entities.Common.EdFi.IEmploymentStatus /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="employmentStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EmploymentStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -57816,13 +57340,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -57992,7 +57509,7 @@ public class EnrollmentTypeDescriptor : Entities.Common.EdFi.IEnrollmentTypeDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="enrollmentTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EnrollmentTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -58087,13 +57604,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -58263,7 +57773,7 @@ public class EntryGradeLevelReasonDescriptor : Entities.Common.EdFi.IEntryGradeL /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="entryGradeLevelReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EntryGradeLevelReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -58358,13 +57868,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -58534,7 +58037,7 @@ public class EntryTypeDescriptor : Entities.Common.EdFi.IEntryTypeDescriptor, En /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="entryTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EntryTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -58629,13 +58132,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -58805,7 +58301,7 @@ public class EvaluationDelayReasonDescriptor : Entities.Common.EdFi.IEvaluationD /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="evaluationDelayReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EvaluationDelayReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -58900,13 +58396,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -59748,7 +59237,7 @@ public class EventCircumstanceDescriptor : Entities.Common.EdFi.IEventCircumstan /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="eventCircumstanceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int EventCircumstanceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -59843,13 +59332,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -60019,7 +59501,7 @@ public class ExitWithdrawTypeDescriptor : Entities.Common.EdFi.IExitWithdrawType /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="exitWithdrawTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ExitWithdrawTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -60114,13 +59596,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -60771,7 +60246,7 @@ public class FinancialCollectionDescriptor : Entities.Common.EdFi.IFinancialColl /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="financialCollectionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int FinancialCollectionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -60866,13 +60341,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -65142,7 +64610,7 @@ public class GradebookEntryTypeDescriptor : Entities.Common.EdFi.IGradebookEntry /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gradebookEntryTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GradebookEntryTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -65237,13 +64705,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -65413,7 +64874,7 @@ public class GradeLevelDescriptor : Entities.Common.EdFi.IGradeLevelDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gradeLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GradeLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -65508,13 +64969,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -65684,7 +65138,7 @@ public class GradePointAverageTypeDescriptor : Entities.Common.EdFi.IGradePointA /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gradePointAverageTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GradePointAverageTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -65779,13 +65233,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -65955,7 +65402,7 @@ public class GradeTypeDescriptor : Entities.Common.EdFi.IGradeTypeDescriptor, En /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gradeTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GradeTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -66050,13 +65497,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -66766,7 +66206,7 @@ public class GradingPeriodDescriptor : Entities.Common.EdFi.IGradingPeriodDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gradingPeriodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GradingPeriodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -66861,13 +66301,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -69897,7 +69330,7 @@ public class GraduationPlanTypeDescriptor : Entities.Common.EdFi.IGraduationPlan /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="graduationPlanTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GraduationPlanTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -69992,13 +69425,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -70168,7 +69594,7 @@ public class GunFreeSchoolsActReportingStatusDescriptor : Entities.Common.EdFi.I /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="gunFreeSchoolsActReportingStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int GunFreeSchoolsActReportingStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -70263,13 +69689,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -70439,7 +69858,7 @@ public class HomelessPrimaryNighttimeResidenceDescriptor : Entities.Common.EdFi. /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="homelessPrimaryNighttimeResidenceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int HomelessPrimaryNighttimeResidenceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -70534,13 +69953,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -70710,7 +70122,7 @@ public class HomelessProgramServiceDescriptor : Entities.Common.EdFi.IHomelessPr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="homelessProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int HomelessProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -70805,13 +70217,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -70981,7 +70386,7 @@ public class IDEAPartDescriptor : Entities.Common.EdFi.IIDEAPartDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="ideaPartDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IDEAPartDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -71076,13 +70481,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -71252,7 +70650,7 @@ public class IdentificationDocumentUseDescriptor : Entities.Common.EdFi.IIdentif /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="identificationDocumentUseDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IdentificationDocumentUseDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -71347,13 +70745,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -71523,7 +70914,7 @@ public class IncidentLocationDescriptor : Entities.Common.EdFi.IIncidentLocation /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="incidentLocationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IncidentLocationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -71618,13 +71009,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -71794,7 +71178,7 @@ public class IndicatorDescriptor : Entities.Common.EdFi.IIndicatorDescriptor, En /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="indicatorDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IndicatorDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -71889,13 +71273,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -72065,7 +71442,7 @@ public class IndicatorGroupDescriptor : Entities.Common.EdFi.IIndicatorGroupDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="indicatorGroupDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IndicatorGroupDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -72160,13 +71537,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -72336,7 +71706,7 @@ public class IndicatorLevelDescriptor : Entities.Common.EdFi.IIndicatorLevelDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="indicatorLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int IndicatorLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -72431,13 +71801,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -72607,7 +71970,7 @@ public class InstitutionTelephoneNumberTypeDescriptor : Entities.Common.EdFi.IIn /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="institutionTelephoneNumberTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InstitutionTelephoneNumberTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -72702,13 +72065,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -72878,7 +72234,7 @@ public class InteractivityStyleDescriptor : Entities.Common.EdFi.IInteractivityS /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="interactivityStyleDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InteractivityStyleDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -72973,13 +72329,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -73149,7 +72498,7 @@ public class InternetAccessDescriptor : Entities.Common.EdFi.IInternetAccessDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="internetAccessDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InternetAccessDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -73244,13 +72593,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -73420,7 +72762,7 @@ public class InternetAccessTypeInResidenceDescriptor : Entities.Common.EdFi.IInt /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="internetAccessTypeInResidenceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InternetAccessTypeInResidenceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -73515,13 +72857,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -73691,7 +73026,7 @@ public class InternetPerformanceInResidenceDescriptor : Entities.Common.EdFi.IIn /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="internetPerformanceInResidenceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InternetPerformanceInResidenceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -73786,13 +73121,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -77441,7 +76769,7 @@ public class InterventionClassDescriptor : Entities.Common.EdFi.IInterventionCla /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="interventionClassDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InterventionClassDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -77536,13 +76864,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -77712,7 +77033,7 @@ public class InterventionEffectivenessRatingDescriptor : Entities.Common.EdFi.II /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="interventionEffectivenessRatingDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int InterventionEffectivenessRatingDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -77807,13 +77128,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -83322,7 +82636,7 @@ public class LanguageDescriptor : Entities.Common.EdFi.ILanguageDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="languageDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LanguageDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -83417,13 +82731,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -83593,7 +82900,7 @@ public class LanguageInstructionProgramServiceDescriptor : Entities.Common.EdFi. /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="languageInstructionProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LanguageInstructionProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -83688,13 +82995,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -83864,7 +83164,7 @@ public class LanguageUseDescriptor : Entities.Common.EdFi.ILanguageUseDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="languageUseDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LanguageUseDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -83959,13 +83259,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -86086,7 +85379,7 @@ public class LearningStandardCategoryDescriptor : Entities.Common.EdFi.ILearning /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="learningStandardCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LearningStandardCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -86181,13 +85474,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -86859,7 +86145,7 @@ public class LearningStandardEquivalenceStrengthDescriptor : Entities.Common.EdF /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="learningStandardEquivalenceStrengthDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LearningStandardEquivalenceStrengthDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -86954,13 +86240,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -87130,7 +86409,7 @@ public class LearningStandardScopeDescriptor : Entities.Common.EdFi.ILearningSta /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="learningStandardScopeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LearningStandardScopeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -87225,13 +86504,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -87401,7 +86673,7 @@ public class LevelOfEducationDescriptor : Entities.Common.EdFi.ILevelOfEducation /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="levelOfEducationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LevelOfEducationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -87496,13 +86768,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -87672,7 +86937,7 @@ public class LicenseStatusDescriptor : Entities.Common.EdFi.ILicenseStatusDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="licenseStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LicenseStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -87767,13 +87032,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -87943,7 +87201,7 @@ public class LicenseTypeDescriptor : Entities.Common.EdFi.ILicenseTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="licenseTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LicenseTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -88038,13 +87296,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -88214,7 +87465,7 @@ public class LimitedEnglishProficiencyDescriptor : Entities.Common.EdFi.ILimited /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="limitedEnglishProficiencyDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LimitedEnglishProficiencyDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -88309,13 +87560,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -90995,7 +90239,7 @@ public class LocaleDescriptor : Entities.Common.EdFi.ILocaleDescriptor, Entities /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="localeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LocaleDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -91090,13 +90334,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -92783,7 +92020,7 @@ public class LocalEducationAgencyCategoryDescriptor : Entities.Common.EdFi.ILoca /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="localEducationAgencyCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int LocalEducationAgencyCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -92878,13 +92115,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -94572,7 +93802,7 @@ public class MagnetSpecialProgramEmphasisSchoolDescriptor : Entities.Common.EdFi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="magnetSpecialProgramEmphasisSchoolDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MagnetSpecialProgramEmphasisSchoolDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -94667,13 +93897,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -94843,7 +94066,7 @@ public class MediumOfInstructionDescriptor : Entities.Common.EdFi.IMediumOfInstr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="mediumOfInstructionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MediumOfInstructionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -94938,13 +94161,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -95114,7 +94330,7 @@ public class MethodCreditEarnedDescriptor : Entities.Common.EdFi.IMethodCreditEa /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="methodCreditEarnedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MethodCreditEarnedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -95209,13 +94425,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -95385,7 +94594,7 @@ public class MigrantEducationProgramServiceDescriptor : Entities.Common.EdFi.IMi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="migrantEducationProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MigrantEducationProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -95480,13 +94689,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -95656,7 +94858,7 @@ public class ModelEntityDescriptor : Entities.Common.EdFi.IModelEntityDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="modelEntityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ModelEntityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -95751,13 +94953,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -95927,7 +95122,7 @@ public class MonitoredDescriptor : Entities.Common.EdFi.IMonitoredDescriptor, En /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="monitoredDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int MonitoredDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -96022,13 +95217,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -96198,7 +95386,7 @@ public class NeglectedOrDelinquentProgramDescriptor : Entities.Common.EdFi.INegl /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="neglectedOrDelinquentProgramDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int NeglectedOrDelinquentProgramDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -96293,13 +95481,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -96469,7 +95650,7 @@ public class NeglectedOrDelinquentProgramServiceDescriptor : Entities.Common.EdF /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="neglectedOrDelinquentProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int NeglectedOrDelinquentProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -96564,13 +95745,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -96740,7 +95914,7 @@ public class NetworkPurposeDescriptor : Entities.Common.EdFi.INetworkPurposeDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="networkPurposeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int NetworkPurposeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -96835,13 +96009,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -100671,7 +99838,7 @@ public class OperationalStatusDescriptor : Entities.Common.EdFi.IOperationalStat /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="operationalStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int OperationalStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -100766,13 +99933,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -102298,7 +101458,7 @@ public class OtherNameTypeDescriptor : Entities.Common.EdFi.IOtherNameTypeDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="otherNameTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int OtherNameTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -102393,13 +101553,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -102569,7 +101722,7 @@ public class ParticipationDescriptor : Entities.Common.EdFi.IParticipationDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="participationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ParticipationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -102664,13 +101817,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -102840,7 +101986,7 @@ public class ParticipationStatusDescriptor : Entities.Common.EdFi.IParticipation /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="participationStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ParticipationStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -102935,13 +102081,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -103111,7 +102250,7 @@ public class PerformanceBaseConversionDescriptor : Entities.Common.EdFi.IPerform /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="performanceBaseConversionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PerformanceBaseConversionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -103206,13 +102345,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -103382,7 +102514,7 @@ public class PerformanceLevelDescriptor : Entities.Common.EdFi.IPerformanceLevel /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="performanceLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PerformanceLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -103477,13 +102609,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -103981,7 +103106,7 @@ public class PersonalInformationVerificationDescriptor : Entities.Common.EdFi.IP /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="personalInformationVerificationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PersonalInformationVerificationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -104076,13 +103201,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -104252,7 +103370,7 @@ public class PlatformTypeDescriptor : Entities.Common.EdFi.IPlatformTypeDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="platformTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PlatformTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -104347,13 +103465,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -104523,7 +103634,7 @@ public class PopulationServedDescriptor : Entities.Common.EdFi.IPopulationServed /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="populationServedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PopulationServedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -104618,13 +103729,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -104794,7 +103898,7 @@ public class PostingResultDescriptor : Entities.Common.EdFi.IPostingResultDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="postingResultDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PostingResultDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -104889,13 +103993,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -105559,7 +104656,7 @@ public class PostSecondaryEventCategoryDescriptor : Entities.Common.EdFi.IPostSe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="postSecondaryEventCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PostSecondaryEventCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -105654,13 +104751,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -106740,7 +105830,7 @@ public class PostSecondaryInstitutionLevelDescriptor : Entities.Common.EdFi.IPos /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="postSecondaryInstitutionLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PostSecondaryInstitutionLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -106835,13 +105925,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -107011,7 +106094,7 @@ public class PrimaryLearningDeviceAccessDescriptor : Entities.Common.EdFi.IPrima /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="primaryLearningDeviceAccessDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PrimaryLearningDeviceAccessDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -107106,13 +106189,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -107282,7 +106358,7 @@ public class PrimaryLearningDeviceAwayFromSchoolDescriptor : Entities.Common.EdF /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="primaryLearningDeviceAwayFromSchoolDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PrimaryLearningDeviceAwayFromSchoolDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -107377,13 +106453,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -107553,7 +106622,7 @@ public class PrimaryLearningDeviceProviderDescriptor : Entities.Common.EdFi.IPri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="primaryLearningDeviceProviderDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PrimaryLearningDeviceProviderDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -107648,13 +106717,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -107824,7 +106886,7 @@ public class ProficiencyDescriptor : Entities.Common.EdFi.IProficiencyDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="proficiencyDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProficiencyDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -107919,13 +106981,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -109437,7 +108492,7 @@ public class ProgramAssignmentDescriptor : Entities.Common.EdFi.IProgramAssignme /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="programAssignmentDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgramAssignmentDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -109532,13 +108587,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -109708,7 +108756,7 @@ public class ProgramCharacteristicDescriptor : Entities.Common.EdFi.IProgramChar /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="programCharacteristicDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgramCharacteristicDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -109803,13 +108851,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -113599,7 +112640,7 @@ public class ProgramEvaluationPeriodDescriptor : Entities.Common.EdFi.IProgramEv /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="programEvaluationPeriodDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgramEvaluationPeriodDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -113694,13 +112735,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -113870,7 +112904,7 @@ public class ProgramEvaluationTypeDescriptor : Entities.Common.EdFi.IProgramEval /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="programEvaluationTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgramEvaluationTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -113965,13 +112999,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -114141,7 +113168,7 @@ public class ProgramSponsorDescriptor : Entities.Common.EdFi.IProgramSponsorDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="programSponsorDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgramSponsorDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -114236,13 +113263,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -114412,7 +113432,7 @@ public class ProgramTypeDescriptor : Entities.Common.EdFi.IProgramTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="programTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgramTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -114507,13 +113527,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -114683,7 +113696,7 @@ public class ProgressDescriptor : Entities.Common.EdFi.IProgressDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="progressDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgressDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -114778,13 +113791,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -114954,7 +113960,7 @@ public class ProgressLevelDescriptor : Entities.Common.EdFi.IProgressLevelDescri /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="progressLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProgressLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -115049,13 +114055,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -115880,7 +114879,7 @@ public class ProviderCategoryDescriptor : Entities.Common.EdFi.IProviderCategory /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="providerCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProviderCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -115975,13 +114974,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -116151,7 +115143,7 @@ public class ProviderProfitabilityDescriptor : Entities.Common.EdFi.IProviderPro /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="providerProfitabilityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProviderProfitabilityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -116246,13 +115238,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -116422,7 +115407,7 @@ public class ProviderStatusDescriptor : Entities.Common.EdFi.IProviderStatusDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="providerStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ProviderStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -116517,13 +115502,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -116693,7 +115671,7 @@ public class PublicationStatusDescriptor : Entities.Common.EdFi.IPublicationStat /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="publicationStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int PublicationStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -116788,13 +115766,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -116964,7 +115935,7 @@ public class QuestionFormDescriptor : Entities.Common.EdFi.IQuestionFormDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="questionFormDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int QuestionFormDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -117059,13 +116030,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -117235,7 +116199,7 @@ public class RaceDescriptor : Entities.Common.EdFi.IRaceDescriptor, Entities.Com /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="raceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RaceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -117330,13 +116294,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -117506,7 +116463,7 @@ public class RatingLevelDescriptor : Entities.Common.EdFi.IRatingLevelDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="ratingLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RatingLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -117601,13 +116558,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -117777,7 +116727,7 @@ public class ReasonExitedDescriptor : Entities.Common.EdFi.IReasonExitedDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="reasonExitedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ReasonExitedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -117872,13 +116822,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -118048,7 +116991,7 @@ public class ReasonNotTestedDescriptor : Entities.Common.EdFi.IReasonNotTestedDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="reasonNotTestedDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ReasonNotTestedDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -118143,13 +117086,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -118319,7 +117255,7 @@ public class RecognitionTypeDescriptor : Entities.Common.EdFi.IRecognitionTypeDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="recognitionTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RecognitionTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -118414,13 +117350,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -118590,7 +117519,7 @@ public class RelationDescriptor : Entities.Common.EdFi.IRelationDescriptor, Enti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="relationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RelationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -118685,13 +117614,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -118861,7 +117783,7 @@ public class RepeatIdentifierDescriptor : Entities.Common.EdFi.IRepeatIdentifier /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="repeatIdentifierDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RepeatIdentifierDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -118956,13 +117878,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -121340,7 +120255,7 @@ public class ReporterDescriptionDescriptor : Entities.Common.EdFi.IReporterDescr /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="reporterDescriptionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ReporterDescriptionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -121435,13 +120350,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -121611,7 +120519,7 @@ public class ReportingTagDescriptor : Entities.Common.EdFi.IReportingTagDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="reportingTagDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ReportingTagDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -121706,13 +120614,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -121882,7 +120783,7 @@ public class ResidencyStatusDescriptor : Entities.Common.EdFi.IResidencyStatusDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="residencyStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ResidencyStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -121977,13 +120878,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -122153,7 +121047,7 @@ public class ResponseIndicatorDescriptor : Entities.Common.EdFi.IResponseIndicat /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="responseIndicatorDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ResponseIndicatorDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -122248,13 +121142,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -122424,7 +121311,7 @@ public class ResponsibilityDescriptor : Entities.Common.EdFi.IResponsibilityDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="responsibilityDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ResponsibilityDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -122519,13 +121406,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -123897,7 +122777,7 @@ public class RestraintEventReasonDescriptor : Entities.Common.EdFi.IRestraintEve /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="restraintEventReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RestraintEventReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -123992,13 +122872,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -124168,7 +123041,7 @@ public class ResultDatatypeTypeDescriptor : Entities.Common.EdFi.IResultDatatype /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="resultDatatypeTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ResultDatatypeTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -124263,13 +123136,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -124439,7 +123305,7 @@ public class RetestIndicatorDescriptor : Entities.Common.EdFi.IRetestIndicatorDe /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="retestIndicatorDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int RetestIndicatorDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -124534,13 +123400,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -126067,7 +124926,7 @@ public class SchoolCategoryDescriptor : Entities.Common.EdFi.ISchoolCategoryDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="schoolCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SchoolCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -126162,13 +125021,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -126338,7 +125190,7 @@ public class SchoolChoiceBasisDescriptor : Entities.Common.EdFi.ISchoolChoiceBas /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="schoolChoiceBasisDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SchoolChoiceBasisDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -126433,13 +125285,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -126609,7 +125454,7 @@ public class SchoolChoiceImplementStatusDescriptor : Entities.Common.EdFi.ISchoo /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="schoolChoiceImplementStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SchoolChoiceImplementStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -126704,13 +125549,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -126880,7 +125718,7 @@ public class SchoolFoodServiceProgramServiceDescriptor : Entities.Common.EdFi.IS /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="schoolFoodServiceProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SchoolFoodServiceProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -126975,13 +125813,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -127151,7 +125982,7 @@ public class SchoolTypeDescriptor : Entities.Common.EdFi.ISchoolTypeDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="schoolTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SchoolTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -127246,13 +126077,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -130947,7 +129771,7 @@ public class SectionCharacteristicDescriptor : Entities.Common.EdFi.ISectionChar /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="sectionCharacteristicDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SectionCharacteristicDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -131042,13 +129866,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -131218,7 +130035,7 @@ public class SectionTypeDescriptor : Entities.Common.EdFi.ISectionTypeDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="sectionTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SectionTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -131313,13 +130130,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -131489,7 +130299,7 @@ public class SeparationDescriptor : Entities.Common.EdFi.ISeparationDescriptor, /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="separationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SeparationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -131584,13 +130394,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -131760,7 +130563,7 @@ public class SeparationReasonDescriptor : Entities.Common.EdFi.ISeparationReason /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="separationReasonDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SeparationReasonDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -131855,13 +130658,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -132031,7 +130827,7 @@ public class ServiceDescriptor : Entities.Common.EdFi.IServiceDescriptor, Entiti /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="serviceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int ServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -132126,13 +130922,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -133645,7 +132434,7 @@ public class SexDescriptor : Entities.Common.EdFi.ISexDescriptor, Entities.Commo /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="sexDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SexDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -133740,13 +132529,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -134571,7 +133353,7 @@ public class SourceSystemDescriptor : Entities.Common.EdFi.ISourceSystemDescript /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="sourceSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SourceSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -134666,13 +133448,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -134842,7 +133617,7 @@ public class SpecialEducationProgramServiceDescriptor : Entities.Common.EdFi.ISp /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="specialEducationProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SpecialEducationProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -134937,13 +133712,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -135113,7 +133881,7 @@ public class SpecialEducationSettingDescriptor : Entities.Common.EdFi.ISpecialEd /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="specialEducationSettingDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SpecialEducationSettingDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -135208,13 +133976,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -141740,7 +140501,7 @@ public class StaffClassificationDescriptor : Entities.Common.EdFi.IStaffClassifi /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="staffClassificationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StaffClassificationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -141835,13 +140596,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -146289,7 +145043,7 @@ public class StaffIdentificationSystemDescriptor : Entities.Common.EdFi.IStaffId /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="staffIdentificationSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StaffIdentificationSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -146384,13 +145138,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -147008,7 +145755,7 @@ public class StaffLeaveEventCategoryDescriptor : Entities.Common.EdFi.IStaffLeav /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="staffLeaveEventCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StaffLeaveEventCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -147103,13 +145850,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -149805,7 +148545,7 @@ public class StateAbbreviationDescriptor : Entities.Common.EdFi.IStateAbbreviati /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="stateAbbreviationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StateAbbreviationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -149900,13 +148640,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -160064,7 +158797,7 @@ public class StudentCharacteristicDescriptor : Entities.Common.EdFi.IStudentChar /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="studentCharacteristicDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StudentCharacteristicDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -160159,13 +158892,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -174679,7 +173405,7 @@ public class StudentIdentificationSystemDescriptor : Entities.Common.EdFi.IStude /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="studentIdentificationSystemDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StudentIdentificationSystemDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -174774,13 +173500,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -180053,7 +178772,7 @@ public class StudentParticipationCodeDescriptor : Entities.Common.EdFi.IStudentP /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="studentParticipationCodeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int StudentParticipationCodeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -180148,13 +178867,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -194161,7 +192873,7 @@ public class SubmissionStatusDescriptor : Entities.Common.EdFi.ISubmissionStatus /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="submissionStatusDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SubmissionStatusDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -194256,13 +192968,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -194432,7 +193137,7 @@ public class SupporterMilitaryConnectionDescriptor : Entities.Common.EdFi.ISuppo /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="supporterMilitaryConnectionDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SupporterMilitaryConnectionDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -194527,13 +193232,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -195332,7 +194030,7 @@ public class SurveyCategoryDescriptor : Entities.Common.EdFi.ISurveyCategoryDesc /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="surveyCategoryDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SurveyCategoryDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -195427,13 +194125,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -196142,7 +194833,7 @@ public class SurveyLevelDescriptor : Entities.Common.EdFi.ISurveyLevelDescriptor /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="surveyLevelDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int SurveyLevelDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -196237,13 +194928,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -204415,7 +203099,7 @@ public class TeachingCredentialBasisDescriptor : Entities.Common.EdFi.ITeachingC /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="teachingCredentialBasisDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TeachingCredentialBasisDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -204510,13 +203194,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -204686,7 +203363,7 @@ public class TeachingCredentialDescriptor : Entities.Common.EdFi.ITeachingCreden /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="teachingCredentialDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TeachingCredentialDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -204781,13 +203458,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -204957,7 +203627,7 @@ public class TechnicalSkillsAssessmentDescriptor : Entities.Common.EdFi.ITechnic /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="technicalSkillsAssessmentDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TechnicalSkillsAssessmentDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -205052,13 +203722,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -205228,7 +203891,7 @@ public class TelephoneNumberTypeDescriptor : Entities.Common.EdFi.ITelephoneNumb /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="telephoneNumberTypeDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TelephoneNumberTypeDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -205323,13 +203986,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -205499,7 +204155,7 @@ public class TermDescriptor : Entities.Common.EdFi.ITermDescriptor, Entities.Com /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="termDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TermDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -205594,13 +204250,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -205770,7 +204419,7 @@ public class TitleIPartAParticipantDescriptor : Entities.Common.EdFi.ITitleIPart /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="titleIPartAParticipantDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TitleIPartAParticipantDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -205865,13 +204514,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -206041,7 +204683,7 @@ public class TitleIPartAProgramServiceDescriptor : Entities.Common.EdFi.ITitleIP /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="titleIPartAProgramServiceDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TitleIPartAProgramServiceDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -206136,13 +204778,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -206312,7 +204947,7 @@ public class TitleIPartASchoolDesignationDescriptor : Entities.Common.EdFi.ITitl /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="titleIPartASchoolDesignationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TitleIPartASchoolDesignationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -206407,13 +205042,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -206583,7 +205211,7 @@ public class TribalAffiliationDescriptor : Entities.Common.EdFi.ITribalAffiliati /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="tribalAffiliationDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int TribalAffiliationDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -206678,13 +205306,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -206854,7 +205475,7 @@ public class VisaDescriptor : Entities.Common.EdFi.IVisaDescriptor, Entities.Com /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="visaDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int VisaDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -206949,13 +205570,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// @@ -207125,7 +205739,7 @@ public class WeaponDescriptor : Entities.Common.EdFi.IWeaponDescriptor, Entities /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. /// // NOT in a reference, NOT a lookup column - [DataMember(Name="weaponDescriptorId"), NaturalKeyMember] + [JsonIgnore, NaturalKeyMember] public int WeaponDescriptorId { get; set; } int IDescriptor.DescriptorId @@ -207220,13 +205834,6 @@ public override int GetHashCode() [DataMember(Name="namespace")] public string Namespace { get; set; } - /// - /// A unique identifier used as Primary Key, not derived from business logic, when acting as Foreign Key, references the parent table. - /// - // NOT in a reference, NOT a lookup column - [DataMember(Name="priorDescriptorId")] - public int? PriorDescriptorId { get; set; } - /// /// A shortened description for the descriptor. /// diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Generators/EntityMapper.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Generators/EntityMapper.cs index b4be518279..bb5558144d 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Generators/EntityMapper.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Generators/EntityMapper.cs @@ -89,6 +89,7 @@ private object BuildMapper(ResourceClassBase resourceClass) IsEntityExtension = resourceClass.IsResourceExtensionClass, BaseClassName = resourceClass.Entity?.BaseEntity?.Name, AllowPrimaryKeyUpdates = resourceClass.Entity?.Identifier.IsUpdatable, + IsDescriptorEntity = resourceClass.Entity?.IsDescriptorEntity ?? false, AnnotatedLocalPrimaryKeyList = AnnotateLocalIdentifyingPropertyKeys(resourceClass.Entity), AnnotatedLocalPrimaryKeyHasStrings = resourceClass.Entity?.ContextualIdentifyingProperties.Any(p => p.PropertyType.IsString()), BackSynchedPrimaryKeyList = diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Generators/Resources/PropertyData.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Generators/Resources/PropertyData.cs index 252acf52ca..71f66c6472 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Generators/Resources/PropertyData.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Generators/Resources/PropertyData.cs @@ -133,6 +133,7 @@ public object Render() Misc = this[ResourceRenderer.MiscellaneousComment], StringComparer = this[ResourceRenderer.StringComparer], JsonPropertyName = Property.JsonPropertyName, + JsonIgnore = Property.JsonIgnore, PropertyName = propertyName, CSharpSafePropertyName = Property.PropertyName.MakeSafeForCSharpClass(Property.ParentFullName.Name), ParentName = parentName, diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Mustache/EntityMapper.mustache b/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Mustache/EntityMapper.mustache index 6f39b7c428..fafef6ef2e 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Mustache/EntityMapper.mustache +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Mustache/EntityMapper.mustache @@ -41,9 +41,15 @@ namespace {{NamespaceName}} //.{{AggregateName}}Aggregate {{/AnnotatedLocalPrimaryKeyHasStrings}} // Detect primary key changes if ( - {{#AnnotatedLocalPrimaryKeyList}} + {{#IsDescriptorEntity}} + !string.Equals(target.Namespace, source.Namespace, StringComparison.OrdinalIgnoreCase) + || !string.Equals(target.CodeValue, source.CodeValue, StringComparison.OrdinalIgnoreCase)) + {{/IsDescriptorEntity}} + {{^IsDescriptorEntity}} + {{#AnnotatedLocalPrimaryKeyList}} {{^IsFirst}}||{{/IsFirst}} {{#IsDescriptorUsage}}!string.Equals(target.{{PrimaryKeyName}}, source.{{PrimaryKeyName}}, StringComparison.OrdinalIgnoreCase){{/IsDescriptorUsage}}{{#IsString}}(!keyStringComparer.Equals(target.{{PrimaryKeyName}}, source.{{PrimaryKeyName}})){{/IsString}}{{^IsString}}{{^IsDescriptorUsage}}(target.{{PrimaryKeyName}} != source.{{PrimaryKeyName}}){{/IsDescriptorUsage}}{{/IsString}}{{#IsLast}}){{/IsLast}} - {{/AnnotatedLocalPrimaryKeyList}} + {{/AnnotatedLocalPrimaryKeyList}} + {{/IsDescriptorEntity}} { {{#AllowPrimaryKeyUpdates}} // Allow PK column updates on {{ModelName}} diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Mustache/Resources.mustache b/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Mustache/Resources.mustache index a9e610aae0..3df048fbe2 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Mustache/Resources.mustache +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Mustache/Resources.mustache @@ -447,7 +447,7 @@ namespace {{ResourceClassesNamespace}} /// {{{Description}}} /// {{{Misc}}} - [DataMember(Name="{{JsonPropertyName}}"), NaturalKeyMember]{{#IsDateOnlyProperty}}[JsonConverter(typeof(Iso8601UtcDateOnlyConverter))]{{/IsDateOnlyProperty}}{{#IsTimeSpanProperty}}[JsonConverter(typeof(UtcTimeConverter))]{{/IsTimeSpanProperty}} + [{{^JsonIgnore}}DataMember(Name="{{JsonPropertyName}}"){{/JsonIgnore}}{{#JsonIgnore}}JsonIgnore{{/JsonIgnore}}, NaturalKeyMember]{{#IsDateOnlyProperty}}[JsonConverter(typeof(Iso8601UtcDateOnlyConverter))]{{/IsDateOnlyProperty}}{{#IsTimeSpanProperty}}[JsonConverter(typeof(UtcTimeConverter))]{{/IsTimeSpanProperty}} public {{PropertyType}} {{PropertyName}} { get; set; } {{PropertyType}} I{{DerivedName}}.{{DerivedName}}Id diff --git a/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Processing/Impl/TemplateContextProvider.cs b/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Processing/Impl/TemplateContextProvider.cs index 575d5c0da0..4a70f77c8e 100644 --- a/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Processing/Impl/TemplateContextProvider.cs +++ b/Utilities/CodeGeneration/EdFi.Ods.CodeGen/Processing/Impl/TemplateContextProvider.cs @@ -14,6 +14,7 @@ using EdFi.Ods.Common.Conventions; using EdFi.Ods.Common.Dependencies; using EdFi.Ods.Common.Models; +using EdFi.Ods.Common.Models.Definitions.Transformers; using EdFi.Ods.Common.Models.Domain; namespace EdFi.Ods.CodeGen.Processing.Impl @@ -65,9 +66,14 @@ private TemplateContext GetTemplateContext(AssemblyData assemblyData) private IDomainModelProvider CreateDomainModelProvider(AssemblyData assemblyData) { // Always include EdFi, and only include the extension definition provider if we are generating in an extension schema context + var domainModelDefinitionsTransformers = new IDomainModelDefinitionsTransformer[] + { + new PriorDescriptorIdRemover() + }; + var domainModelProvider = new DomainModelProvider( GetDomainModelDefinitionProviders(assemblyData.SchemaName), - Array.Empty()); + domainModelDefinitionsTransformers); GeneratedArtifactStaticDependencies.Resolvers.Set(() => domainModelProvider);