Skip to content

Commit

Permalink
add missing "." in classic index for local text key
Browse files Browse the repository at this point in the history
  • Loading branch information
volkanceylan committed Jul 28, 2023
1 parent a48b5de commit 2b02500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Serenity.Net.CodeGenerator/Models/EntityModel.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace Serenity.CodeGenerator;
namespace Serenity.CodeGenerator;

public class EntityModel
{
Expand Down Expand Up @@ -99,7 +99,7 @@ public string RootNamespaceDotModuleDot
public string ViewPageModulePath => "@/" + Module + "/" + ClassName + "/" + ClassName + "Page";
public string ServiceClassName => ClassName + "Service";
public string ServiceBaseUrl => ModuleSlash + ClassName;
public string EntityPluralTextKey => "Db" + DotModule + ClassName + ".EntityPlural";
public string EntityPluralTextKey => "Db" + DotModule + "." + ClassName + ".EntityPlural";

public IEnumerable<EntityField> AllFields => Fields.Concat(JoinFields);
public IEnumerable<EntityField> JoinFields => Joins.SelectMany(x => x.Fields);
Expand Down

0 comments on commit 2b02500

Please sign in to comment.