We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f998e4b commit 6d1fed9Copy full SHA for 6d1fed9
src/BbQ.Events/Engine/DefaultProjectionEngine.cs
@@ -388,9 +388,8 @@ private static ProjectionOptions GetProjectionOptions(Type concreteType)
388
};
389
390
// Use ProjectionNameResolver for consistent name resolution
391
- // Since we don't have registered options (they would have been returned above),
392
- // pass null to get the type name
393
- options.ProjectionName = ProjectionNameResolver.Resolve(concreteType, null);
+ // Since ProjectionName is not explicitly set in options, the resolver will use the type name
+ options.ProjectionName = ProjectionNameResolver.Resolve(concreteType, options);
394
395
return options;
396
}
0 commit comments