How can I use my GUID as an Input Parameter?
info
While Fluent does not support a GUID type as an input parameter, there are ways to go about utilizing that data in a format Fluent does support.
For details about which Input Parameters Fluent supports, please see Input Parameters Reference
There are two things you can try.
- Convert/cast the GUID to a String.
- Define a SQL View on your database server.
- Convert the GUID column in the database to string (varchar), and query the View instead of the table. This way the Designer doesn't know it is dealing with a GUID.