评估与Windows上的节点内联的脚本

时间:2016-12-22 10:33:12

标签: node.js windows

在Linux上以这种方式调用节点我得到:

node -e 'console.log("hi")'
# prints 'hi'

在Windows上执行相同的操作却不会产生任何效果。 为了完整性,这里是我正在使用的版本

  • Windows:node v6.9.1
  • Linux:node v4.4.7

1 个答案:

答案 0 :(得分:2)

使用双引号:

<EntityType Name="ContactDTO">
    <Key>
        <PropertyRef Name="Id" />
    </Key>
    <Property Name="Id" Type="Edm.Int32" />
    <Property Name="PersonId" Type="Edm.Int32" />
</EntityType>