任何人都可以告诉我Ryan Dahl使用的操作系统是什么?我见过他在他的演示中使用Mac,但我也听到他说Mac是sh*t.
我很好奇他作为Node.js的创建者使用的操作系统,因为这可能是最容易用于Node.js开发的.
如果没有人知道,或许只是告诉我什么操作系统被推荐用于Node.js开发.
SpaceShips和它们Sightings?我有以下对象:
public class SpaceShip
{
public int Id { get; set; }
public string DriveType { get; set; }
public List<Sighting> Sightings { get; set; }
}
public class Sighting
{
public int Id { get; set; }
public double Lat { get; set; }
public double Lon { get; set; }
}
Run Code Online (Sandbox Code Playgroud)
使用以下架构:
If Exists(Select * from sysobjects where name = 'Sightings')
Drop Table Sightings
If Exists(Select * from sysobjects where name = …Run Code Online (Sandbox Code Playgroud)