Skip to content

Commit

Permalink
correct typo in datetimeoffset
Browse files Browse the repository at this point in the history
  • Loading branch information
dpvreony committed Dec 19, 2023
1 parent 548bcbc commit def30b9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public sealed class EntityFrameworkModelGeneratorProcessor : BaseClassLevelCodeG
protected override IEnumerable<PropertyDeclarationSyntax> GetPropertyDeclarations(EntityFrameworkModelEntityGenerationModel entityGenerationModel)
{
var inheritDocSyntaxTrivia = RoslynGenerationHelpers.GetInheritDocSyntaxTrivia().ToArray();
var datetimeOffSetType = SyntaxFactory.ParseTypeName("System.DateTimeOffSet");
var datetimeOffSetType = SyntaxFactory.ParseTypeName("System.DateTimeOffset");
var ulongType = SyntaxFactory.ParseTypeName("ulong");

yield return RoslynGenerationHelpers.GetPropertyDeclarationSyntax(
Expand Down

0 comments on commit def30b9

Please sign in to comment.