Skip to content

Commit

Permalink
fix: seeder dto ref corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
pdevito3 committed Dec 9, 2021
1 parent 3d982ef commit 5321cab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Craftsman/Builders/Seeders/SeederFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public static string GetEntitySeederFileText(string classNamespace, Entity entit
var entitiesClassPath = ClassPathHelper.EntityClassPath(solutionDirectory, "", entity.Plural, projectBaseName);
var dtoClassPath = ClassPathHelper.DtoClassPath(solutionDirectory, "", entity.Name, projectBaseName);
var dbContextClassPath = ClassPathHelper.DbContextClassPath(solutionDirectory, "", projectBaseName);
var entityForCreationDto = $"Fake{Utilities.GetDtoName(entity.Name, Dto.Creation)}";
var entityForCreationDto = $"{Utilities.GetDtoName(entity.Name, Dto.Creation)}";
if (dbContextName is null)
{
throw new ArgumentNullException(nameof(dbContextName));
Expand Down

0 comments on commit 5321cab

Please sign in to comment.