956 bug modifiedat createdat brake compatibility#1036
Open
Conversation
added 3 commits
February 11, 2026 13:49
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request standardizes the naming and usage of created and modified date properties across multiple classes and interfaces in the codebase. The changes replace previous
Created,Modified,CreatedAt, andModifiedAtproperties with consistently named_Createdand_Modifiedproperties, ensuring uniformity in how creation and modification timestamps are handled and displayed. Updates are made to interfaces, entity classes, repositories, UI components, and business logic to reflect this new convention.Core property renaming and standardization:
IBrowsableDataObjectinterface now usesDateTime _CreatedandDateTime _Modifiedinstead ofCreatedAtandModifiedAt, removing nullable types and legacy property names. (src/base/src/AXOpen.Base.Abstractions/Data/IBrowsableDataObject.cs)PersistentRecord,AxoDataEntity,Group,User) have been updated to use_Createdand_Modifiedproperties, removing old property names and compatibility layers. (src/data/src/AXOpen.Data/DataPersistentExchange/PersistentRecord.cs,src/data/src/AXOpen.Data/Entity/Pocos/AxoDataEntity.cs,src/security/src/AXOpen.Security/Entities/Group.cs,src/security/src/AXOpen.Security/Entities/User.cs) [1] [2] [3] [4]Repository and business logic updates:
RepositoryBaseclass now sets_Createdand_Modifiedproperties when creating or updating entities, replacing previous usage ofCreatedAtandModifiedAt. (src/base/src/AXOpen.Base.Abstractions/Data/RepositoryBase.cs) [1] [2]_Createdand_Modifiedproperties consistently. (src/security/src/AXOpen.Security/Entities/Group.cs,src/security/src/AXOpen.Security/Entities/User.cs,src/security/src/AXOpen.Security/Stores/UserStore.cs) [1] [2] [3]UI and display changes:
_Createdand_Modifiedproperties for display, ensuring UI reflects the updated property names. (src/Security/src/AXOpen.Security.Blazor/Pages/GroupManagement.razor,src/Security/src/AXOpen.Security.Blazor/Pages/UserManagement.razor) [1] [2] [3]Role and group management logic:
_Modifiedproperty. (src/security/src/AXOpen.Security/RoleGroupManager.cs) [1] [2] [3]These changes collectively improve code clarity and consistency regarding entity timestamp handling throughout the application.