Access DbContext in Helper ClassOne DbContext per web request… why?Dependancy Injected DbContext is empty after populating DbContext created with new (EF7, ASP.NET 5, vnext)Right way to work with dbContextEntity Framework Core multiple connection strings on same DBContext?How to use a dbcontext in a static class? (ObjectDisposedException)ASP.NET Core - IModelBinder - Access controller DbContextBinding error from Class when adding extra column from SQL queryAccess DbContext service from background taskRender a Partial View in _layout.cshtml using the partialview model instance with DBContext dependency injectionUser Principal in Entity Framework Core DbContext
Drawing lines to nearest point
As programers say: Strive to be lazy
What is Plautus’s pun about frustum and frustrum?
When a land becomes a creature, is it untapped?
On what legal basis did the UK remove the 'European Union' from its passport?
On studying Computer Science vs. Software Engineering to become a proficient coder
How do I compare the result of "1d20+x, with advantage" to "1d20+y, without advantage", assuming x < y?
Why did the ICC decide not to probe alleged US atrocities in Afghanistan?
Is taking modulus on both sides of an equation valid?
How to compact two the parabol commands in the following example?
Extrude the faces of a cube symmetrically along XYZ
What are the components of a legend (in the sense of a tale, not a figure legend)?
How can a layman easily get the consensus view of what academia *thinks* about a subject?
Why was Endgame Thanos so different than Infinity War Thanos?
How can this pool heater gas line be disconnected?
How can dragons propel their breath attacks to a long distance
Why does the Earth follow an elliptical trajectory rather than a parabolic one?
Reaction of borax with NaOH
Exception propagation: When should I catch exceptions?
Are there variations of the regular runtimes of the Big-O-Notation?
What are the implications of the new alleged key recovery attack preprint on SIMON?
Is the schwa sound consistent?
How are one-time password generators like Google Authenticator different from having two passwords?
How does emacs `shell-mode` know to prompt for sudo?
Access DbContext in Helper Class
One DbContext per web request… why?Dependancy Injected DbContext is empty after populating DbContext created with new (EF7, ASP.NET 5, vnext)Right way to work with dbContextEntity Framework Core multiple connection strings on same DBContext?How to use a dbcontext in a static class? (ObjectDisposedException)ASP.NET Core - IModelBinder - Access controller DbContextBinding error from Class when adding extra column from SQL queryAccess DbContext service from background taskRender a Partial View in _layout.cshtml using the partialview model instance with DBContext dependency injectionUser Principal in Entity Framework Core DbContext
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am using Razorpages in ASP.NET Core
I have a simple detailsModel that brings in the different DbContext from Entity Framework (EF) using the constructor parameters.
this means that my DbContexts are available when performing different actions using the OnGetVerb and OnPostVerb.
I have created a helper class that I want to use to execute the actions as I need to call this code from other places as well, but when I call the helper class the DbContext is not available in the helper class.
await new Helpers.ApproveOrder().Approve(id);
This is my code
public class DetailsModel : PageModel
public Context1 _context1;
public Context2 _context2;
public Context3 _context3;
public IMemoryCache _cache;
public DetailsModel(Context1 context1, Context2 context2, Context3 context3, IMemoryCache memoryCache)
_context1 = context1;
_context2 = context2;
_context3 = context3;
_cache = memoryCache;
public async Task<IActionResult> OnGetApproveAsync(int id)
await new Helpers.ApproveOrder().Approve(id);
return Redirect("~/");
how can I fix this so that my dbContexts are also available in my helper class
entity-framework asp.net-core dbcontext razor-pages actionresult
add a comment |
I am using Razorpages in ASP.NET Core
I have a simple detailsModel that brings in the different DbContext from Entity Framework (EF) using the constructor parameters.
this means that my DbContexts are available when performing different actions using the OnGetVerb and OnPostVerb.
I have created a helper class that I want to use to execute the actions as I need to call this code from other places as well, but when I call the helper class the DbContext is not available in the helper class.
await new Helpers.ApproveOrder().Approve(id);
This is my code
public class DetailsModel : PageModel
public Context1 _context1;
public Context2 _context2;
public Context3 _context3;
public IMemoryCache _cache;
public DetailsModel(Context1 context1, Context2 context2, Context3 context3, IMemoryCache memoryCache)
_context1 = context1;
_context2 = context2;
_context3 = context3;
_cache = memoryCache;
public async Task<IActionResult> OnGetApproveAsync(int id)
await new Helpers.ApproveOrder().Approve(id);
return Redirect("~/");
how can I fix this so that my dbContexts are also available in my helper class
entity-framework asp.net-core dbcontext razor-pages actionresult
You can either pass the dbcontext into the method of your helper, or instead of newing up your helper you can inject it and it can take a constructor dependency on the dbcontext.
– Joe Audette
Mar 23 at 14:13
How do I inject it?
– Thomas Adrian
Mar 23 at 15:18
docs.microsoft.com/en-us/aspnet/core/fundamentals/…
– Joe Audette
Mar 23 at 17:37
Share us the code forHelpers
. What isHelpers.ApproveOrder().Approve
?
– Tao Zhou
Mar 25 at 5:03
add a comment |
I am using Razorpages in ASP.NET Core
I have a simple detailsModel that brings in the different DbContext from Entity Framework (EF) using the constructor parameters.
this means that my DbContexts are available when performing different actions using the OnGetVerb and OnPostVerb.
I have created a helper class that I want to use to execute the actions as I need to call this code from other places as well, but when I call the helper class the DbContext is not available in the helper class.
await new Helpers.ApproveOrder().Approve(id);
This is my code
public class DetailsModel : PageModel
public Context1 _context1;
public Context2 _context2;
public Context3 _context3;
public IMemoryCache _cache;
public DetailsModel(Context1 context1, Context2 context2, Context3 context3, IMemoryCache memoryCache)
_context1 = context1;
_context2 = context2;
_context3 = context3;
_cache = memoryCache;
public async Task<IActionResult> OnGetApproveAsync(int id)
await new Helpers.ApproveOrder().Approve(id);
return Redirect("~/");
how can I fix this so that my dbContexts are also available in my helper class
entity-framework asp.net-core dbcontext razor-pages actionresult
I am using Razorpages in ASP.NET Core
I have a simple detailsModel that brings in the different DbContext from Entity Framework (EF) using the constructor parameters.
this means that my DbContexts are available when performing different actions using the OnGetVerb and OnPostVerb.
I have created a helper class that I want to use to execute the actions as I need to call this code from other places as well, but when I call the helper class the DbContext is not available in the helper class.
await new Helpers.ApproveOrder().Approve(id);
This is my code
public class DetailsModel : PageModel
public Context1 _context1;
public Context2 _context2;
public Context3 _context3;
public IMemoryCache _cache;
public DetailsModel(Context1 context1, Context2 context2, Context3 context3, IMemoryCache memoryCache)
_context1 = context1;
_context2 = context2;
_context3 = context3;
_cache = memoryCache;
public async Task<IActionResult> OnGetApproveAsync(int id)
await new Helpers.ApproveOrder().Approve(id);
return Redirect("~/");
how can I fix this so that my dbContexts are also available in my helper class
entity-framework asp.net-core dbcontext razor-pages actionresult
entity-framework asp.net-core dbcontext razor-pages actionresult
asked Mar 23 at 11:48
Thomas AdrianThomas Adrian
2,50122448
2,50122448
You can either pass the dbcontext into the method of your helper, or instead of newing up your helper you can inject it and it can take a constructor dependency on the dbcontext.
– Joe Audette
Mar 23 at 14:13
How do I inject it?
– Thomas Adrian
Mar 23 at 15:18
docs.microsoft.com/en-us/aspnet/core/fundamentals/…
– Joe Audette
Mar 23 at 17:37
Share us the code forHelpers
. What isHelpers.ApproveOrder().Approve
?
– Tao Zhou
Mar 25 at 5:03
add a comment |
You can either pass the dbcontext into the method of your helper, or instead of newing up your helper you can inject it and it can take a constructor dependency on the dbcontext.
– Joe Audette
Mar 23 at 14:13
How do I inject it?
– Thomas Adrian
Mar 23 at 15:18
docs.microsoft.com/en-us/aspnet/core/fundamentals/…
– Joe Audette
Mar 23 at 17:37
Share us the code forHelpers
. What isHelpers.ApproveOrder().Approve
?
– Tao Zhou
Mar 25 at 5:03
You can either pass the dbcontext into the method of your helper, or instead of newing up your helper you can inject it and it can take a constructor dependency on the dbcontext.
– Joe Audette
Mar 23 at 14:13
You can either pass the dbcontext into the method of your helper, or instead of newing up your helper you can inject it and it can take a constructor dependency on the dbcontext.
– Joe Audette
Mar 23 at 14:13
How do I inject it?
– Thomas Adrian
Mar 23 at 15:18
How do I inject it?
– Thomas Adrian
Mar 23 at 15:18
docs.microsoft.com/en-us/aspnet/core/fundamentals/…
– Joe Audette
Mar 23 at 17:37
docs.microsoft.com/en-us/aspnet/core/fundamentals/…
– Joe Audette
Mar 23 at 17:37
Share us the code for
Helpers
. What is Helpers.ApproveOrder().Approve
?– Tao Zhou
Mar 25 at 5:03
Share us the code for
Helpers
. What is Helpers.ApproveOrder().Approve
?– Tao Zhou
Mar 25 at 5:03
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313421%2faccess-dbcontext-in-helper-class%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55313421%2faccess-dbcontext-in-helper-class%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
You can either pass the dbcontext into the method of your helper, or instead of newing up your helper you can inject it and it can take a constructor dependency on the dbcontext.
– Joe Audette
Mar 23 at 14:13
How do I inject it?
– Thomas Adrian
Mar 23 at 15:18
docs.microsoft.com/en-us/aspnet/core/fundamentals/…
– Joe Audette
Mar 23 at 17:37
Share us the code for
Helpers
. What isHelpers.ApproveOrder().Approve
?– Tao Zhou
Mar 25 at 5:03