A DataContext is used in WPF, Silverlight and various other .NET technologies. When used with WPF or Silverlight, a DataContext is an object holding the data that the form (or page in case of Silverlight) uses as a display source for its UI elements.
0
votes
2answers
102 views
reusing queries in 2 datacontext using dependency injection
I have a web application that uses linq-to-sql queries (will soon be upgraded to linq-to-EF compiled queries) and for which there's data context and a database already in place. I want to create a ...
0
votes
0answers
79 views
DataContext: Same Tables Structure but different table names for different department
This post is similar to this article but yet different.
My question this is:
Within a databse, I have two different sets of tables with identical structure, but different names.
For example:
Table ...
0
votes
1answer
129 views
How to wire up data context in modular application?
I am writing an application, WPF, using PRISM. I'm new so apologies if this question is poor form:
I have a module that up to now has a user control for displaying a list of inspections. My module ...
0
votes
2answers
25 views
switch DataContext according to departmentID
My company has 2 departments which sell air tickets to different categories of customers.
the two departments' ticket database are different but the tables inside them are identical.
I want to in ...
0
votes
1answer
466 views
Setting DataContext using StaticResource
I am trying to set the ViewModel as the DataContext of the View using the following XAML code:
<UserControl.DataContext>
<local:MyViewModel />
</UserControl.DataContext>
...
3
votes
1answer
227 views
Nested DataContext
I have 2 nested DataContexts in following code (DataContext and ItemsSource):
<TabItem Header="Something" Name="myTabItemName" d:DataContext="{Binding myViewModel}">
<Grid>
...
0
votes
0answers
107 views
DataContext.GetChangeSet shows updates but not inserts
I am using Linq to SQL with stored procedures to query a simple database. On my form I have a datagridview with some controls for some query fields. Users type in street name/number/direction etc. ...
0
votes
1answer
38 views
Datacontext using in Template to Root
I want to turn the buttons in a datagrid visible or collapsed, dependend on a local window property.
The following item works at LayoutRoot
<navigation:Page ...
0
votes
1answer
116 views
DataContext.Submit and TransactionScope
Please explain me pseudocode below.
My idea is: 3-nd SubmitChanges will commit o.Status and will not commit o.TransactionId, and my object will get corrupted in database (I mean it will not be ...
1
vote
1answer
109 views
Having trouble with EF code first and mvc 3.0 relationships
I'm getting the following error when running my application. I'm forcing the application to do a DropCreateDatabaseAlways for my context so I'm not sure why it would say that I'm trying to insert ...
0
votes
1answer
78 views
New DataContext per second
I'm making a server for a game and I need to save everyone's second so I made :-
private static void SubmitChanges() {
while(true) {
try {
using(GameDBDataContext db = new ...
0
votes
0answers
127 views
no response from server
I'm using LINQ to SQL (data context) of Microsoft. I also created stored procedure using SQL server 2008. When I call the stored procedure from within the c# code :
_context.Get_Data(params...)
...
0
votes
1answer
200 views
System.InvalidOperationException: An entity can only be attached as modified
am trying to update table called "Hero" , am using DataContext , here is how the codes looks like:-
//linq to sql table (automatic generated)
...
0
votes
2answers
86 views
Modifying object in Collection in SelectedItem of TreeView
Object Model:
Client has many studies has many subjects has many records. The treeview holds the clients/studies/subjects and the records are in the MainDataGrid.
Problem: When I modify one of the ...
3
votes
2answers
212 views
LINQ To SQL Thread Safety
I want to ask whether the following code is thread safe:
Consider that Save1 and Save2 will be executed concurrently. Is there any problem with the thread safety of the datacontext?
public class ...
0
votes
1answer
98 views
How bind button inside user control to another ViewModel
I'm working on project that based on WPF and MVVM.
I have some UserControl (summaryView) which has DataContext to ViewModel(SummaryVM).
I want put a button in summaryView and set the button ...
0
votes
2answers
210 views
Linq and DataContext
Would it be ok to have only one DataContext per app and share that through an singleton?
I ask this because i would like to have the DataContext in every form but i realized that, if i change some ...
0
votes
1answer
317 views
Linq DataContext InsertOnSubmit statement Inserts only NULL values in the table
Please help!!!
I have this simple piece of code, I don't have a clue why is not doing what is supposed to do which is insert the data contained in the class, I have not idea what am I doing wrong, ...
0
votes
0answers
132 views
DataContext update and rollback
I'm having a problem with my DataContext. In the following code snippet, I first delete existing objects in my datacontext, and later in same code, adding new again. The problem is, since I'm using ...
0
votes
4answers
255 views
Usercontrol using wrong Datacontext
I have a UserControl that is used in a parent control in this way:
<Views:TranslationTextInput Translation="{Binding SelectedEntity.Name}"/>
The parent control DataContext is a ViewModel ...
2
votes
1answer
288 views
Set ImageSource through ViewModel not working
I have a WPF application in which I use several images. Most of the images are set in the XAML-code as they will not change anymore. The Build Action of all my image-files are set to "Resource" and ...
2
votes
5answers
161 views
Linq2Sql static Datacontext in DAL
I am new to Linq to sql. And my question is simple.
Is it a good idea to have DataContext as public static member in DAL to act as singleton?
0
votes
1answer
287 views
Setting DataContext in TabControl
I have a TabControl that is bound to an observable collection of Employees like so
<TabControl ItemsSource="{Binding Employees}">
<TabControl.ContentTemplate>
...
1
vote
1answer
159 views
How do I extract ETAG from a WCF Dataservices response?
I've been trying to get an answer to this question for quite some time. Since the WCF Dataservice isn't thread safe, and often it needs to be recreated, once I query my datastore for a record, how do ...
0
votes
1answer
86 views
How to setup this query using DbContext
I have two tables in SQL server for customers and their addresses.
CREATE TABLE Customers
(
ID INT NOT NULL IDENTITY(1,1),
LastName VARCHAR(50) NOT NULL,
FirstName ...
0
votes
0answers
102 views
Binding inside Datagrid's column
I have UserControl with defined DependencyProperty:
<core:RObservableContentControl x:Class="UBP.Address.RWS.Presentation.RObjectAddressList"
...
2
votes
1answer
176 views
Binding to SelectedItem with a referenced ItemsSource
Intro
I have got a pool of different DataSources.
I've got Masks. Masks have got Indexlines. Each Indexline has a single DataSource from the pool associated:
Classes
public class DataSource
{
...
0
votes
0answers
68 views
using DataContext with Linq2SQL
I just started building an app an using Linq2SQL for the first time and have some basic questions. Probably someone can give me some hints ...
First some "facts".
The project is having about 60 ...
0
votes
2answers
840 views
How do I use INotifyPropertyChanged in WinRT?
I'm a total newbie, just learning the basics of DataContext and the MVVM model. I've now got a grid bound to a view model object which implements INotifyPropertyChanged, however it appears that ...
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())
{
...
0
votes
0answers
194 views
How to implement MVVM with a static class
I have a class written in this way
public class AudioPlayer : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
// This method is called by the Set accessor ...
0
votes
1answer
205 views
DataContext.Refresh exception
When I'm trying to use following codeblock:
private MarketingDBDataContext DB_Marketing;
public DBFacade()
{
DB_Marketing = new MarketingDBDataContext();
}
public ...
0
votes
0answers
160 views
LinqToSQL InsertOnSubmit Issue
I've class contact that has associate with class account and city. City has associate with class state, when I try to insert new contact data, the associated class is inserted too. How can this happen ...
3
votes
2answers
317 views
DataContext and binding self as RelativeSource
Can someone explain me the following XAML line?
DataContext="{Binding RelativeSource={RelativeSource Self}}"
Here the simple example of use.
How to replace that line with a C# code?
0
votes
1answer
339 views
Setting DataContext on DataGrids
I've developed an application with WPF and MVVM. In it I have a Window with a DataGrid. It's ViewModel contains some properties for the window and one property for the DataGrid (an ...
0
votes
0answers
32 views
MissingElementException
I need add table to my .dbml file to work with database using LINQ to SQL. I wrote sql script with creating table and creating stored procedures: Insert, Update and Delete. But when I try to make ...
0
votes
1answer
42 views
LinqToSQL Can't Update Twice
I try to update twice with same data but it throw exception
public void UpdateOnSubmit<T>(T data) where T : class
{
lock (_lockObj)
{
using (DataModel dx = ...
1
vote
1answer
335 views
DataContext not binding in Style.Trigger
So I have some code similar to the following: (Forgive any typos-- I tried to simplify in the SO editor for the post)
<my:CustomContentControl>
<my:CustomContentControl.Style>
...
0
votes
0answers
51 views
C#, Having trouble access compiled query Elements
I am having trouble accessing the element returned from a compiled query in the case where I do not want to return the whole table. For eaxmple......
The table is called HoursInADay
The fields in ...
2
votes
1answer
672 views
How to bind DataContext to ViewModel object in window resources
I'm trying to bind my usercontrol datacontext to the viewmodel object. For unknown reason setting the DataContext inside the Window.Resources as a result gives
System.Windows.Data Error: 3 : ...
-1
votes
3answers
196 views
Get DataContext From XAML
I deleted the CodeBehind of my MainWindow.xaml, cause I'm doing a small project where I literally must do that.
So I'm creating an instance of my ViewModel in this way over xaml:
...
2
votes
1answer
186 views
DataContext with MSAccess as Data Provider
I try use ms access as data provider but it give me exception.
static void Main(string[] args)
{
DataContext dx = new DataContext(@"Provider=Microsoft.ACE.OLEDB.12.0;Data ...
0
votes
1answer
113 views
Why DataContext for inner object is not updated?
I have question about DataContext changes and I build example for understand this aspect.
I have MainUserControl on MainWindow. MainUserControl consists of number of User Controls.
One of such User ...
2
votes
1answer
699 views
TreeView HierarchicalDataTemplate binding
I have a class SceneNode which contains a ObservableCollection. I want the entire tree to show up, however I can't seem to get this to work with databinding. Everything works perfectly if I just add ...
-1
votes
1answer
59 views
How can i use DataContext Class in .Net Framework 2.0?
I want to use DataContext Class in my project.
But i use .Net FrameWork 2.0. What can i do?
There is any option in .Net Framework 2.o to use instead of DataContext class ?
1
vote
1answer
112 views
Linq to SQL - Attribute based mapping - cannot instantiate new object with no arguments
I want to extend Linq's DataContext class to implement the ORM. Currently my model looks like this:
public class Trial : DataContext
{
public Trial(string connectionString) : ...
1
vote
1answer
464 views
LINQ to Microsoft SQL 2000 in C# using Visual Studio 2012
Is it possible to create a DataContext for connection to a Microsoft SQL Server 2000 using Visual Studio 2012?
2
votes
1answer
204 views
Azure Table InsertOrMerge Upsert: Can the to-be-merged object be dynamically created?
I need to merge a dynamic list of properties into what is already saved in Azure table. From my research "upsert" with "insert or merge" is the correct approach.
How do I get the C# language to ...
2
votes
1answer
162 views
Entity framework multiple contexts for logging
I've seen a fair few articles/posts that recommend not having more than one context per request when using EF.
Is it valid to have a second context for logging purposes such as 'user x did y', ...
1
vote
3answers
106 views
Select an item two or more times
I have a Listbox with its DataContext. When I select an item, I can't select the same again. This is not a problem when there are many objects, but sometimes, a post-service return me a list with only ...



