Tagged Questions
1
vote
3answers
204 views
Is the DataContext part of Model in MVC or a part of Controller?
working on asp.net MVC from quite some time now
today stuck on a theoretical problem
going through some sample code on MSDN
I read something like this
public class SomeController()
{
public ...
0
votes
0answers
151 views
CRUD not working when Data Context Class = Add name variable in web.config
Unsuccessful:
Add Controller:
Data context class: MusicStoreEntities (MvcMusicStore.Models)
Web.config
connectionStrings
add name= MusicStoreEntities ...
With the following error message:
...
0
votes
5answers
437 views
ASP.NET MVC Controller recommendation for LINQ DataContext instantiation place
How should I instantiate the datacontext (entity fw) in a MVC Controller:
as a property in class
as a field in class
as a variable in Action
as abstract away your DbContext with the Repository ...
2
votes
1answer
315 views
MVC 4 late-bound DataContext entity LINQ reference
Long time listener, first time caller.
I'm probably taking the wrong approach to this, so any help would be fantastic.
I'm using C#, MVC 4, Code First, Entity Framework 4.3, & Razor.
I am ...
1
vote
1answer
230 views
Saving changes very slow via Datacontext
I am working on MVC3 .NET Project with Entity framework and SQL Azure Database.
When i try to save multiple records at once in a table it takes several minutes to finish the operation!
I use the ...
0
votes
0answers
329 views
Creating a DataContext with LinqToSql - Could Storing Collection in Class Result in Memory Issues?
I've ran into some problems in an application where the .net process is running out of memory. One change I made in the application has been adding a lot of Linq to Sql classes. I'm wondering if there ...
1
vote
1answer
721 views
Entity framework query for MVC
Im very newbie to the .net world... I'm going across some tutorials for MVC, where in I could see all the tutorials are writing the Model classes then creating the database(may be used for tutorial ...
3
votes
3answers
305 views
Performance consideration of destroying dataContext vs. keeping it open for future db access?
I'm using LINQ2SQL to handle my database needs in a ASP. Net MVC 3 project. I have a separate model which contains all my database access in its own class as follows:
public class ...
0
votes
1answer
606 views
Sequence Contains no elements Linq-to-Sql
i m having very strange problem in this simple linq query
return (from doc in db.umDocumentActions
where doc.sysDocument.ModuleID == modid
join roleaction in ...
0
votes
2answers
232 views
How can I keep an object that was returned from an already disposed of DataContext?
Get User Action
[HttpGet]
[ActionName("Index")]
public ActionResult Get(int id)
{
User u = UserCore.GetUser(id);
if (u == null)
return Content("user not found", "text/plain");
...
4
votes
2answers
1k views
Help Configure mvc mini profiler with Linq to Sql
i have configured mini profiler with asp.net mvc application. i also want to profile my db so i hooked it with L2S datacontext as in this example. it is working fine for some queries but on other ...
1
vote
0answers
568 views
Using different overload of DataContext in Linq-to-SQL [duplicate]
Possible Duplicate:
Help Configure mvc mini profiler with Linq to Sql
We have been using Linq-to-SQL for db persistence. Previously, I was instantiating my DataContext in my repositories ...
0
votes
3answers
1k views
LinqToSql MVC3 Update
I use ASP.NET MVC3 and as Data layer LinqToSql.
I`m a little bit confuse how can i edit an entity.
public ActionResult Edit(int id)
{
var product = _repository.GetById(id);
return ...
0
votes
3answers
217 views
LINQ to SQL Field Won't Update (Sometimes)
I have a MVC Web Application using the following approach:
public class MyController : Controller
{
public FooRepository fooRepository = new FooRepository();
public BarRepository ...
0
votes
2answers
746 views
Object reference not set to an instance of an object-datacontext
I am trying to publish asp.net mvc site on remote server I am getting the error as shown in figure. Any idea
2
votes
1answer
2k views
Getting around “DataContext accessed after Dispose” error in ASP.NET MVC View
I have an ASP.NET MVC 2 action that looks like this:
public ActionResult Index()
{
using(var db = new MyDataContext())
{
var welcomeSnippet = "test";
var ...
0
votes
1answer
181 views
How do I stop Ajax calls to SubmitChanges on DataContext from causing errors?
I have a .NET MVC application in which an HttpHandler logs requests in a database via Linq to Sql. 50% of the time, when I click a link to make an ajax request, the SubmitChanges() of the DataContext ...
0
votes
1answer
178 views
Subsonic3 and ASP.NET MVC: Is there something like DataContext.GetTable<T>?
Right now I'm working my way thru the SportsStore exercise of Sanderson's "Pro ASP.Net MVC 2 Framework" book (page 107) and the exercise has me implementing a Repository pattern backed by a DB store ...
0
votes
1answer
703 views
ASP.NET MVC2 RenderAction makes parent loose ViewModel context
I'm my Project Browser page I have 2 sub-elements that warrant their own controller (and not simply a user-control) - Upload and FileBrowser, and so I've added them using Html.RenderAction(Action, ...
0
votes
1answer
247 views
Merge an Object that wen outside the datacontext
I have the following question:
It is easy to insert an oBject in database with a form.
Just create an object
link it to the fields in your from.
Post back to controller,
create a new datacontext ...
0
votes
1answer
438 views
MVC2.NET pass object from viewmodel to view and access it
When working with Viewmodels from linq to sql I have an architectural problem.
When you have an object from your db (let's say "person"), and you load it in your viewmodel. After this in your view, ...
1
vote
0answers
315 views
Random DataReader errors and thread-specific DataContext allowing for changing DataLoadOptions
My .NET MVC project has reached the stage of testing with multiple users and I am getting seemingly random errors (from any screen in the site) relating to Linq2Sql DataReader issues, such as:
...
0
votes
3answers
382 views
Linq to SQL and Realtime Data
I have an application that needs to constantly (every 50ms), call to an MVC action, and pickup/drop off data.
I am using Linq to SQL and MVC because of how simple they are to implement, and I know ...
4
votes
1answer
593 views
Inheriting LINQ-to-SQL data context from base controller
My base controller class, BaseController, is inherited by public-facing controllers to access a shared data context between requests with LINQ-to-SQL.
Am I accessing my data context in an efficient ...
0
votes
3answers
56 views
Testing the context in asp.net mvc
I got pretty experienced with testing controllers, my question here is though, aren't we supposed to test the data context as well, and how ? I mean, there are a lot of relationships and constraints ...
5
votes
1answer
997 views
Using ASP.NET MVC, Linq To SQL, and StructureMap causing DataContext to cache data
I'll start by telling my project setup:
ASP.NET MVC 1.0
StructureMap 2.6.1
VB
I've created a bootstrapper class shown here:
Imports StructureMap
Imports DCS.Data
Imports DCS.Services
Public ...
4
votes
2answers
2k views
How do I correctly dispose a Linq to SQL DataContext in a Repository?
In a Rob Conery-style ASP.NET MVC application, you typically have a repository:
public class CustomerRepository
{
DataContext dc = new DataContext();
public IQueryable<Customer> ...
0
votes
2answers
1k views
Model - Partial class and Datacontext class are not communicating
I've created a one table contact DB, which has only 3 columns (Id, Name, and Phone). I've then created the ContactsDataContext using my table Contacts in the model folder. Finally, I create a partial ...
1
vote
2answers
2k views
Linq to Sql - DataContext design issues and considerations in ASP.NET MVC application
I am using "Single data context per atomic operation" approach while using Linq to Sql in an ASP.NET MVC application.
So far, I have been using a singleton datacontext, which I learnt has many ...
0
votes
3answers
133 views
Fetch Single Item Using DataContext
I'm doing the following:
public MyItem FetchSingleItem(int id)
{
string query = "SELECT Something FROM Somewhere WHERE MyField = {0}";
IEnumerable<MyItem> collection = ...
1
vote
3answers
2k views
Executing Method Against DataContext Returning Inserted ID
Is there any way to use DataContext to execute some explicit SQL and return the auto-increment primary key value of the inserted row without using ExecuteMethodCall? All I want to do is insert some ...
1
vote
1answer
364 views
How to publish ASP.NET MVC site using datacontext to external SQL Server?
I am playing with MVC and I made a simple site. I have an seperate machine running SQL Server Express and on it I have a simple table called "Log". The table has ID, Timestamp, and Message fields. I ...
1
vote
2answers
828 views
Why is my DataContext null in only one action?
I have a property on my BaseController called DataContext that holds my LINQ to SQL data context (or fake context for testing). When using a parameterless constructor (in other words, when a request ...
3
votes
4answers
311 views
What is wrong with putting Using Blocks in Repository?
I have using blocks in each method of my repository. If I want to cross reference methods, it seems it would be against best practices to initialize another Datacontext What am i doing wrong? If I ...
0
votes
2answers
686 views
MVC DataContext Ok to Share One Connection or Not
When is the "unit of work" no longer a "unit"? Which scenario is better on resources? THe first creates one connection wheras the second creates 4.
using (DataContext dc=new DataContext)
{
var ...
5
votes
3answers
1k views
How can I implement Caching Strategy in my Asp.net Mvc With linq2sql repository?
I dont know if I should use the httpcontext caching or the Enterprise Library Caching Application Block. Also, what is the best pattern for the caching Strategy when deleting or updating an entity ...

