Returns records of files that have the same table name and primary key of the table.

Namespace: Caisis.DataAccess
Assembly: Caisis.DataAccess (in Caisis.DataAccess.dll) Version: 4.0.4947.22627

Syntax

C#
public DataSet GetRecordsByTableAndTablePK(
	string tableName,
	int tablePrimaryKey
)
Visual Basic
Public Function GetRecordsByTableAndTablePK ( 
	tableName As String,
	tablePrimaryKey As Integer
) As DataSet
Visual C++
public:
DataSet^ GetRecordsByTableAndTablePK(
	String^ tableName, 
	int tablePrimaryKey
)

Parameters

tableName
Type: System..::..String
table name
tablePrimaryKey
Type: System..::..Int32
primary key of record in table

Return Value

Type: DataSet

[Missing <returns> documentation for "M:Caisis.DataAccess.FilesDa.GetRecordsByTableAndTablePK(System.String,System.Int32)"]

See Also