DataManagerImplGet Method (String, String) |
Execute raw query
Namespace:
Unvired.Kernel.UWP.Database
Assembly:
Unvired.Kernel.UWP (in Unvired.Kernel.UWP.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic IEnumerable<Object> Get(
string tableName,
string whereClause
)
Public Function Get (
tableName As String,
whereClause As String
) As IEnumerable(Of Object)
public:
IEnumerable<Object^>^ Get(
String^ tableName,
String^ whereClause
)
member Get :
tableName : string *
whereClause : string -> IEnumerable<Object>
Parameters
- tableName
- Type: SystemString
Table name to query - whereClause
- Type: SystemString
Where clause for query
Return Value
Type:
IEnumerableObjectEnumerable objects of given type
See Also