MetaForeignKeyColumn.GetForeignKeyValues(Object) 方法
定义
检索值的集合,这些值表示指定行的外键。Retrieves a collection of values that represent the foreign keys for the specified row.
public:
System::Collections::Generic::IList<System::Object ^> ^ GetForeignKeyValues(System::Object ^ row);
public:
virtual System::Collections::Generic::IList<System::Object ^> ^ GetForeignKeyValues(System::Object ^ row);
public System.Collections.Generic.IList<object> GetForeignKeyValues (object row);
member this.GetForeignKeyValues : obj -> System.Collections.Generic.IList<obj>
abstract member GetForeignKeyValues : obj -> System.Collections.Generic.IList<obj>
override this.GetForeignKeyValues : obj -> System.Collections.Generic.IList<obj>
Public Function GetForeignKeyValues (row As Object) As IList(Of Object)
参数
- row
- Object
要检索其外键值的行。The row to retrieve the foreign-key values for.
返回
值的集合,这些值表示指定行的外键。A collection of values that represent the foreign keys for the specified row.
注解
GetForeignKeyValues方法返回的值与方法返回的值相同 GetForeignKeyString ,但格式不同。The GetForeignKeyValues method returns the same values that are returned by the GetForeignKeyString method, but in a different format.