Does anyone know exactly how this value is derived?
For half our team it seems to be “FistName.LastName”. For the other half it is “FirstName LastName”…
I thought I would be able to find this out in five seconds of googling but all I can find are vague statements that say “the current user” or “the current users alias”.
The MSDN article about query variables here describes it as being the current users alias but I have no idea what that means….
When running a query in Visual Studio, TFS is building an SQL query for it. If you run SQL Server Profiler on the
Tfs_DefaultCollectiondatabase you should notice a similar query:Note the use of
dbo.RebuildCallersViewsstored procedure which in turn serves the@userSidvariable and ultimately the temporaryI.[System.AssignedTo]column. Stored procedures in TFS database are protected so I couldn’t decipher what’s going beyond that.