0
私はすべてのC#実装をGoogle上に持っているので、VB.Netに変換しましたが、エラーが発生した行を1行変換することはできません。Migratordotnet:VB.netで移行クラスを作成するには?
私のクラス:
Imports Migrator.Framework
[Migration(1)] ' Gives ERROR Here.. How to write this in VB.net ?
Public Class mig_001
Inherits Migration
Public Overrides Sub Up()
Database.AddTable("Planets",
New Column("Id", DbType.Int32, ColumnProperty.PrimaryKeyWithIdentity),
New Column("Name", DbType.String, 100, ColumnProperty.NotNull),
New Column("Diameter", DbType.Double),
New Column("Mass", DbType.Double),
New Column("SupportsLife", DbType.Boolean, False)
)
End Sub
Public Overrides Sub Down()
Database.RemoveTable("Planets")
End Sub
End Class
もう一度:
[Migration(1)] => How to write this in VB.net and what does it means in VB.net ?
私はそうMigratordotnet移行を欠場する、マイグレーションのバージョンのためにその義務の記事で読みました。
だからどうすればいいですか?このよう
ちなみに、これはVB6と何が関係していますか? –
間違っています! –