0

what determines on how GUID are mapped from sitecore using Glass.Mapper: uppercase vs lowercase?

Now I see it's lowercase but I can bet I had in the past uppercase.

Saint
  • 5,397
  • 22
  • 63
  • 107

1 Answers1

0

System.Guid is lowercase and Sitecore.Data.ID is uppercase. The two are interchangeable. new ID(Guid id) vs sitecoreId.Guid. This can be particularly important when working with indexes, as Sitecore ID's are typically stored as lowercase without braces and hyphens in the index. So in n index queries, you can use mySitecoreID.Guid.ToString('N')

mikaelnet
  • 654
  • 3
  • 10