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
{{ message }}
This repository was archived by the owner on Apr 5, 2019. It is now read-only.
In my implementation I have my entities configured into separate schemas. The filter I was messing around with however only looked up entities in the dbo schema. For example, the entity I was testing with is Manufacturers and it lives in the Inventory schema. The filter however would only create SQL like: [dbo].[Manufacturers] instead of [Inventory].[Manufacturers].
Is there something I'm missing that makes this happen or does it simply not work?
In my implementation I have my entities configured into separate schemas. The filter I was messing around with however only looked up entities in the
dboschema. For example, the entity I was testing with isManufacturersand it lives in theInventoryschema. The filter however would only create SQL like:[dbo].[Manufacturers]instead of[Inventory].[Manufacturers].Is there something I'm missing that makes this happen or does it simply not work?