データベースにバインドされていないモデルにプロパティを含めることはできますか? 例えば:
Public Class Tbl_Forum_Topic
<Key()> Public Property FTopic_ID() As Integer
<ForeignKey("Tbl_Forum")> _
Public Property FTopic_Forum_ID() As Integer
Public Property FTopic_Employee_ID() As Integer
Public Property FTopic_Resource_ID() As Integer
Public Property FTopic_Title() As String
Public Property FTopic_Content() As String
Public Property FTopic_Create_Date() As Nullable(Of Date)
Public Property FTopic__Deleted() As Nullable(Of Boolean)
Public Property FTopic_Deleted_Date() As Nullable(Of Date)
Public Property FTopic_Status() As Nullable(Of Boolean)
Public Property FTopic_Publish() As Nullable(Of Boolean)
Public Overridable Property Tbl_Forum() As Tbl_Forum
Public Overridable Property Tbl_Forum_Replies() As ICollection(Of Tbl_Forum_Reply)
Public Overridable Property Last_Reply_User_Name() As String
End Class
最後の項目は と呼ばれLast_Reply_User_Name()
ます。私のデータベースにはありませんが、他のデータベース テーブルの値に基づいて設定するために、コントローラー アクションでループして計算を実行したいと考えています。Invalid column name 'Last_Reply_User_Name'.
このコードを試すとエラーが発生します。
ありがとうございました。