-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add to dbset but not create a table for it #4354
Comments
I think you want the feature we are already tracking with #1862 |
I think there is a subtly different scenario from what we track in #1862 in which you actually do want a type to become an entity in the model but you know that all your queries will be sourced using some I believe we have items tracking this, but I cannot find them at the moment 😄 |
I found this one that I believe is related to that scenario:
I think we had another issue about just ignoring the table for Migrations and |
Ok, I agree this one is probably a duplicate of #1862 then. Glad we have the other ones as well 😄 |
Think we have this covered by the other issues already mentioned |
Issue: a table named for my stored procedure is created because I am forced to register it in the dbset. If I add builder.ignore then I can't invoke the sp.
I have a stored procedure that I am invoking using the following syntax.
Since I have to add it to my dbCtx it creates a table called RoleAdminGridViewModel
My work around is to drop the table and name the procedure something different.
CREATE PROCEDURE uspGetRoleAdminGridViewModelSp
SELECT 1 As Primarykey
The text was updated successfully, but these errors were encountered: