GET api/DbContext/GetDbExists

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TransferStructure
NameDescriptionTypeAdditional information
tableName

string

None.

colName

string

None.

colType

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "tableName": "sample string 1",
    "colName": "sample string 2",
    "colType": "sample string 3"
  },
  {
    "tableName": "sample string 1",
    "colName": "sample string 2",
    "colType": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTransferStructure xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApiSazmani.Models">
  <TransferStructure>
    <colName>sample string 2</colName>
    <colType>sample string 3</colType>
    <tableName>sample string 1</tableName>
  </TransferStructure>
  <TransferStructure>
    <colName>sample string 2</colName>
    <colType>sample string 3</colType>
    <tableName>sample string 1</tableName>
  </TransferStructure>
</ArrayOfTransferStructure>