我正在使用 asp.net 动态数据站点。我为所有表启用了脚手架。它还显示外键。我想显示一个数据列而不是表中的外键。
Global.System.Data.Linq.Mapping.TableAttribute(Name:="dbo.ItemInProcess")
Partial Public Class ItemInProcess
Implements System.ComponentModel.INotifyPropertyChanging, System.ComponentModel.INotifyPropertyChanged
Private Shared emptyChangingEventArgs As PropertyChangingEventArgs = New PropertyChangingEventArgs(String.Empty)
Private _ItemInProcessID As Long
Private _ItemProcessDate As System.Nullable(Of Date)
Private _ItemProcessQuantity As System.Nullable(Of Integer)
Private _OutletID As System.Nullable(Of Long) '
此表 ItemsInProcess 包含 Outlet 表中的 _OutletID,我想显示 Outlet 表中的 OutletName 列。