FluentLinqToSql.Mappings.ColumnMapping.PrimaryKey C# (CSharp) Method

PrimaryKey() public method

Marks the column as part of the table's Primary Key.
public PrimaryKey ( ) : IColumnMapping
return IColumnMapping
        public IColumnMapping PrimaryKey()
        {
            return SetAttribute(Constants.IsPrimaryKey, "true");
        }