Anyone know how to apply the correct Alias attribute to query tables with schema names?
I have a table called accounts.register
. I've tried using [Alias("accounts.register")]
as the class decorator attribute for Register class but this doesn't work.
If I change the schema to dbo
then I can remove the alias and everything works. Unfortunately I have a legacy system with many schemas so I need this to work.