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 |