โŒ - Property.Hotspot.Altitude
 
 

Globally unique identifier for the venue.

๐Ÿ†” Guid
  • ๐Ÿ”‘ What is Guid? The Guid property uniquely identifies every venue in the system. It is generated automatically and used to track, retrieve, and manage venues securely.
  • ๐Ÿ”„ How is it used? Developers and APIs rely on the Guid for referencing and updating venue records without risk of collision or ambiguity.
  • ๐Ÿ“ Tip: You’ll see Guid values in URLs, API calls, and database records for robust traceability.

C# Definition:

[Required]
[Description("Globally unique identifier for the venue")]
public Guid Guid { get; set; }

Entity Framework Configuration:

HasColumnName Guid
HasDefaultValueSql NEWID()
HasDefaultValue  
Default Value  
ValueGeneratedOnAdd true
IsRequired true
MaxLength  
Indexed true
Is Unique true
Composite Index Fields  
OnDelete  
Other EF Attributes