gpt4 book ai didi

vb.net - 在 VB 中的 ASP.NET MVC 5 中创建模型关系

转载 作者:行者123 更新时间:2023-12-01 15:58:40 26 4
gpt4 key购买 nike

我正在创建两个简单的模型“MusicStyle”和“Bands”,我想要一个Band有一个音乐风格。我能找到的所有示例都在 C# 中,我无法弄清楚 Visual Basic 中的正确语法。

这是我的两个类/模型的代码。


Public Class MusicStyle
Public Property MusicStyleID() As Integer
Public Property MusicStyleName() As String
End Class

Public Class Bands
Public Property BandsID() As Integer
Public Property BandsName() As String
Public Overridable Property MusicStyleID() As ICollection(Of MusicStyle)
End Class

出于某种原因,这会在 MusicStyle 表而不是 Bands 表中生成 FK,并且在 FK 的 View 中没有 HTML 控件。

Tables and Relations

最佳答案

您需要重构代码以实现正确的关系:

Public Class Band
Public Property BandID() As Integer
Public Property BandName() As String
'This is the FK
Public Property MusicStyleID() As Integer
<ForeignKey("MusicStyleID")>
Public Property MusicStyleRef() As MusicStyle
End Class

Public Class MusicStyle
Public Property MusicStyleID() As Integer
Public Property MusicStyleName() As String
Public Overridable Property Bands() As ICollection(Of Band)
End Class

关于vb.net - 在 VB 中的 ASP.NET MVC 5 中创建模型关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40306447/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com