Skip to content

Commit

Permalink
Use type's full name as a topic name
Browse files Browse the repository at this point in the history
  • Loading branch information
SzymonPobiega committed Nov 14, 2019
1 parent bdbddc0 commit e34af9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NServiceBus.SqlServer/PubSub/TopicNames.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ namespace NServiceBus.Transport.SQLServer

static class TopicName
{
public static string From(Type type) => $"{type.Namespace}.{type.Name}";
public static string From(Type type) => type.FullName;
}
}

0 comments on commit e34af9c

Please sign in to comment.