Skip to content

Add support for the ROWGUIDCOL flag #67

@stsrki

Description

@stsrki

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!

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions