-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Labels
Description
I would like to have a a feature request to add ROWGUIDCOL flag when creating table. This flag is used for replication in SqlServer.
Example SQL:
CREATE TABLE MyTable(
[MyTableId] [uniqueidentifier] ROWGUIDCOL NOT NULL,
...
Possible implementation:
db.CreateTable( "MyTable" )
.WithPrimaryKeyColumn( "MyTableId", System.Data.DbType.Guid ).HavingNewSequentialGuidAsDefault().WithRowGuid();
PS. Note that this is supported in SqlServer!
Reactions are currently unavailable