I am using the standard ASP.NET membership table structure in SQL Server and have performed several queries manually in the management studio and have run this query
SELECT * FROM [aspnet_Users] WHERE UserId = '2ac5dd56-2630-406a-9fb8-d4445bc781da&cID=49'
Pay attention to & cID = 49 at the end - I copied this from the query string and forgot to delete this part.
However, to my surprise, he returned the data correctly (there is a user with ID 2ac5dd56-2630-406a-9fb8-d4445bc781da) - any idea why this works? In my opinion, this should not coincide or, most likely, with an error, since it will not be able to convert to Guid?
source share