|
ModelControllerT, UGet(String) Method
|
Gets all records from associated table, filtered to parent key ID if provided
Namespace: GSF.Web.ModelAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.207-beta
Syntax [RouteAttribute("{parentID?}")]
[HttpGetAttribute]
public virtual IHttpActionResult Get(
string parentID = null
)
<RouteAttribute("{parentID?}")>
<HttpGetAttribute>
Public Overridable Function Get (
Optional parentID As String = Nothing
) As IHttpActionResult
public:
[RouteAttribute(L"{parentID?}")]
[HttpGetAttribute]
virtual IHttpActionResult^ Get(
String^ parentID = nullptr
)
[<RouteAttribute("{parentID?}")>]
[<HttpGetAttribute>]
abstract Get :
?parentID : string
(* Defaults:
let _parentID = defaultArg parentID null
*)
-> IHttpActionResult
[<RouteAttribute("{parentID?}")>]
[<HttpGetAttribute>]
override Get :
?parentID : string
(* Defaults:
let _parentID = defaultArg parentID null
*)
-> IHttpActionResult
View SourceParameters
- parentID String (Optional)
- Parent ID to be used if Table has a set Parent Key
Return Value
IHttpActionResultIHttpActionResult containing
IEnumerableT or
ExceptionSee Also