When designing a database, one fundamental decision is how to generate unique identifiers for your tables. This choice often comes down to two data types: GUID (Globally Unique Identifier) or INT with ...
On SQL Server, when a Guid property is value-generated, we use the special SequentialGuidValueGenerator; but when a string property is value-generated, we fall back to the core ValueGeneratorSelector, ...