Tagged Questions
0
votes
0answers
10 views
Can you use a DataContext directly with MySql without mapping to entities in a diagram?
Can you use a DataContext directly with MySql without mapping to entities in a diagram?
Meaning I want to instantiate a datacontext using the connectionstring to mysql, but without first reading out ...
0
votes
1answer
108 views
In ASP.net is it best to close off datacontext as soon as possible?
Given this code:
/// <summary>
/// Add to view count of this article
/// </summary>
public static void IncrementViewCount(int articleID)
{
using (var db = new MainContext())
{
...
1
vote
1answer
728 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 ...
0
votes
1answer
251 views
How do I SubmitChanges on multiple tables that are related in LinqToSql?
I'm making a Windows Phone 7.1 application, and I'm having a lot of trouble submitting changes to my database. Here is the structure of the tables in my database:
Day <-1-----*-> TrainingSession ...
0
votes
2answers
997 views
MVC3 Data Context Best Practice
This is an action I have in my controller. Is it considered bad practice to be creating and disposing a database connection (i.e. PhotoGalleryContext - which is a connection to a MySql database) ...
2
votes
1answer
163 views
Database Server Too Busy. Advice needed on opening DataContexts
I have this huge system started running yesterday. Thousands of people connecting simultaneously.. I'm Using SQL Server 2008 and .NET 3.5 (C#);
Today I noticed my db server was getting really slow ...
10
votes
3answers
1k views
Working with Cross Context Joins in LINQ-to-SQL
Initially I had written this query using LINQ-to-SQL
var result = from w in PatternDataContext.Windows
join cf in PatternDataContext.ControlFocus on w.WindowId equals cf.WindowId
join p in ...
6
votes
1answer
1k views
Multiple/Single *.edmx files per database
I have a project that interacts with a database through ADO.net Data Services. The database is large (almost 150 tables with dependencies). The project started a few years ago and there were DataSets ...
0
votes
1answer
103 views
How can I wrap tables into a more generic class for use with multiple data contexts?
I have two different DataContexts (SQL Databases) that have the same data, just with slightly different naming:
DB1: Serialnumber Productnumber
DB2: SerialNumber ProductNumber Result
So I want to be ...
0
votes
1answer
667 views
WPF: How to bind and update display with DataContext
I'm trying to do the following thing:
I have a TabControl with several tabs.
Each TabControlItem.Content points to PersonDetails which is a UserControl
Each BookDetails has a dependency property ...
4
votes
2answers
2k views
how to discard changes made to all linq tables?
I would like to discard all changes made to linq tables (this means -- I use linq, and data are changed on client side, the data on server are intact). How to do this?
EDIT: problem partially solved
...
0
votes
3answers
98 views
How do you dynamically plug a different database into your linq to sql data classes?
Suppose you have a single web portal application that is used by a number of different clients. For reasons of security and portability, each client's data must reside in a separate database. The ...

