Skip to content

Add support for the ROWGUIDCOL flag #67

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!

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions