From 9304bae29c6b6953169e888e41a4829e724097a5 Mon Sep 17 00:00:00 2001 From: damon Date: Tue, 8 Oct 2024 22:28:35 +0800 Subject: [PATCH] Correct summary spelling. --- Source/Euonia.Domain/Seedwork/IHasCreateTime.cs | 2 +- Source/Euonia.Domain/Seedwork/IHasSnowflakeId.cs | 10 +++++----- Source/Euonia.Domain/Seedwork/ITombstone.cs | 2 +- Source/Euonia.Repository.EfCore/DataContextBase.cs | 1 - 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/Source/Euonia.Domain/Seedwork/IHasCreateTime.cs b/Source/Euonia.Domain/Seedwork/IHasCreateTime.cs index ca2181a..53448a0 100644 --- a/Source/Euonia.Domain/Seedwork/IHasCreateTime.cs +++ b/Source/Euonia.Domain/Seedwork/IHasCreateTime.cs @@ -6,7 +6,7 @@ public interface IHasCreateTime { /// - /// Gets or sets the create time. + /// Gets or sets the creation time. /// DateTime CreateTime { get; set; } } \ No newline at end of file diff --git a/Source/Euonia.Domain/Seedwork/IHasSnowflakeId.cs b/Source/Euonia.Domain/Seedwork/IHasSnowflakeId.cs index 04513f6..29f0f9d 100644 --- a/Source/Euonia.Domain/Seedwork/IHasSnowflakeId.cs +++ b/Source/Euonia.Domain/Seedwork/IHasSnowflakeId.cs @@ -1,12 +1,12 @@ namespace Nerosoft.Euonia.Domain; /// -/// Represents the object identifier would generated using SnowflakeId. +/// Represents the object identifier would generate using SnowflakeId. /// public interface IHasSnowflakeId { - /// - /// Gets or sets the object identifier of Int64 type. - /// - long Id { get; set; } + /// + /// Gets or sets the object identifier of Int64 type. + /// + long Id { get; set; } } \ No newline at end of file diff --git a/Source/Euonia.Domain/Seedwork/ITombstone.cs b/Source/Euonia.Domain/Seedwork/ITombstone.cs index 078281d..50116e9 100644 --- a/Source/Euonia.Domain/Seedwork/ITombstone.cs +++ b/Source/Euonia.Domain/Seedwork/ITombstone.cs @@ -1,7 +1,7 @@ namespace Nerosoft.Euonia.Domain; /// -/// Represent the object can be delete logically. +/// Represent the object can be deleted logically. /// public interface ITombstone { diff --git a/Source/Euonia.Repository.EfCore/DataContextBase.cs b/Source/Euonia.Repository.EfCore/DataContextBase.cs index bfb3db0..215f533 100644 --- a/Source/Euonia.Repository.EfCore/DataContextBase.cs +++ b/Source/Euonia.Repository.EfCore/DataContextBase.cs @@ -145,7 +145,6 @@ protected virtual void SetEntryValues(IEnumerable entries) break; case EntityState.Modified: SetModifiedEntry(entry, time); - break; default: continue;