You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm connecting to a Postgres db using LinqPad 8 and Linq2DB. Some of my columns use a user-defined type, which Linq2DB presents as Object. Is there some way to inject a scaffold interceptor to map this type to String?
The text was updated successfully, but these errors were encountered:
Biggest issue for me related to this item is that citext is represented as object. To use it as a string, it has to be cast to a string which gets interpreted as a "text" type cast in postgresql. That of course stops indexes from being used.
I'm connecting to a Postgres db using LinqPad 8 and Linq2DB. Some of my columns use a user-defined type, which Linq2DB presents as
Object
. Is there some way to inject a scaffold interceptor to map this type toString
?The text was updated successfully, but these errors were encountered: