Breeze-Sequelize with id autoGeneratedKeyType

I am trying to create MS SQL db with breeze-breeze sequelize and I like to generate IDs on the db server. My solution is focused on tempHire example from repo breeze samples

My Metadata.json looks like this:

{
    "metadataVersion": "1.0.5",
    "namingConvetion": "camelCase",
    "localQueryComparisonOptions": "caseInsensitiveSQL",
    "dataServices": [{
        "serviceName": "breeze/",
        "hasServerMetadata": true,
        "useJsonp": false
    }],
    "structuralTypes": [{

        "shortName": "User",
        "namespace": "Model",
        "autoGeneratedKeyType": "Identity",
        "defaultResourceName": "Users",
        "dataProperties": [{
            "nameOnServer": "id",
            "dataType": "Int32",
            "isPartOfKey": true,
            "isNullable": false
        }, {
            "name": "firstName",
            "dataType": "String"
        }, {
            "name": "lastName",
            "dataType": "String"
        }, {
            "name": "userName",
            "dataType": "String",
            "isNullable": false,
            "maxLength": 64,
            "validators": [{
                "name": "required"
            }, {
                "maxLength": 64,
                "name": "maxLength"
            }]
        }, {
            "name": "email",
            "dataType": "String"
        }]
    }],
    "resourceEntityTypeMap": {
        "Users": "User:#Model"
    }
}

      

although this will not create an ID column. the generated table looks like this script:

CREATE TABLE [User] (
    [id] INTEGER NOT NULL , 
    [firstName] NVARCHAR(255) DEFAULT NULL, 
    [lastName] NVARCHAR(255) DEFAULT NULL, 
    [userName] NVARCHAR(64) NOT NULL DEFAULT '', 
    [email] NVARCHAR(255) DEFAULT NULL, 
    PRIMARY KEY ([id])
)

      

In addition, there are some build options on the breeze server:

var dbConfig = {
    user: 'user',
    password: 'secret',
    dbName: 'dbname'
};

var sequelizeOptions = {
    host: 'hostname',
    dialect: 'mssql',
    port: 1433
};

function createSequelizeManager() {
    var metadata = readMetadata();
    var sm = new SequelizeManager(dbConfig, sequelizeOptions);
    sm.importMetadata(metadata);

    return sm;
}

var _sequelizeManager = createSequelizeManager();

_sequelizeManager.authenticate();

_sequelizeManager.sync(false /* createDb */)
    .then(seed)
    .then(function () {
        console.log('db init successful');
    });

      

My configuration is wrong? Is the id not available with mssql dialect? Am I doing something wrong?

+3


source to share


1 answer


There is nothing wrong with the configuration, I guess. I just found out there is a bug in MetadataMapper

from breeze-sequelize. I tested it with version 2.1.3 and 3.x version.

The autoIncrement attribute for sequelize will never be set. The if statement will never be true. I'll post this on github.;)

The fix would be the following code MetadataMapper.js

in line 134

:



  if (attributes.type.key == "INTEGER" || attributes.type.key =="BIGINT") {
    attributes.autoIncrement = true;
  }

      

In the original code, an if statement attributes.type== "INTEGER" || attributes.type=="BIGINT"

, where the type is never actually a string.

+3


source







All Articles