MetaForeignKeyColumn.GetForeignKeyDetailsPath(Object) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the path for the details action page of the parent table of the specified foreign-key field.
public:
System::String ^ GetForeignKeyDetailsPath(System::Object ^ row);
public:
virtual System::String ^ GetForeignKeyDetailsPath(System::Object ^ row);
public string GetForeignKeyDetailsPath (object row);
member this.GetForeignKeyDetailsPath : obj -> string
abstract member GetForeignKeyDetailsPath : obj -> string
override this.GetForeignKeyDetailsPath : obj -> string
Public Function GetForeignKeyDetailsPath (row As Object) As String
Parameters
- row
- Object
The row that contains the foreign-key field.
Returns
The path for the details action page of the parent table of the specified foreign-key field.
Remarks
The GetForeignKeyDetailsPath method returns the path for the details action page based on the routes defined for the ASP.NET Dynamic Data application. This method returns an empty string, if row
is null
.
Using the GetForeignKeyDetailsPath method is the same as invoking the GetForeignKeyPath(String, Object) method passing the Details action as the first parameter.