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 ...
1
vote
1answer
98 views
Refresh DataContext in LINQPad
Hi there I am struggling to deal with the following situation using LINQPad
While(1 = 1)
{
MyEntity _me = MyEntities.FirstOrDefault();
foreach(ChildEntity ce in MyEntity.ChildEntities)
...
-1
votes
1answer
106 views
Multibinding using Window's DataContext
I'm trying to create drag adorner based on whether the Customer DependancyProperty of a Window is null. I have this in the Window's resources. The first part of the binding is set (the item being ...
0
votes
0answers
34 views
Pre-Filtered datacontext
I have a c# datacontext (dbml) that currently has a single table in it for a proof of concept..
What I want to do is expose this table to my web application but have the data pre-filtered using .net ...
9
votes
2answers
97 views
Can I access more than one table via the same DataContext object simultaneously?
Suppose I have a DataContext object and access two tables at the same time:
using( var context = new DataContext( connectionString ) ) {
foreach( firstTableEntry in ...
0
votes
1answer
196 views
WPF DataBinding - bind to code-behind variable which changes referenced object
What I want to do:
I have a ListBox bound to an ObservableCollection<MyClass>. When I select an item, I want to display some of its properties in some labels. What are the steps here? I have set ...
0
votes
0answers
56 views
How to declare SQL view in DataContext?
Firstly, I generally don't use views in my databases (stored procedures suffice), but I have run into a problem when using Telerik's Kendo UI Grid - it doesn't permit objects to be created explicitly ...
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 ...
-1
votes
1answer
60 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 ?
0
votes
1answer
132 views
Is Repeatedly Calling DataContext.GetChangeSet() Performant?
I can't seem to find documentation about the performance of the GetChangeSet() function of LINQ-to-SQL's DataContext class. I see a lot of code in our own organization and posted around the web making ...
0
votes
1answer
163 views
Strongly Typed Data Context Must Declare a Body Error
Receiving this error:
Error 4 'ZoneUpdates.Models.PgeDataContext.PgeDataContext(string, System.Data.Linq.Mapping.MappingSource)' must declare a body because it is not marked abstract, extern, or ...
0
votes
0answers
69 views
mono ado.net datacontext onloaded not called
Is there any particular reason why the OnLoaded method does not get called when using ado.net for mono? Seems to work fine on windows.
At first I hand coded everything then I let Visual Studio ...
1
vote
1answer
114 views
DataContext Scope Best-Practice
when using Linq-to-Sql, Visual Studio creates a DataContext class for you. I'm wondering when to instantiate this context, in one of my projects I used one DataContext instanse for about 300 CRUD ...
0
votes
1answer
66 views
Removing/deleting a table from a datacontext
I want to display a list of the tables/classes in a datacontext, select several and delete them from the datacontext. I know how to get the list of tables, but how do I programmatically delete/remove ...
2
votes
2answers
625 views
Default datacontext
Having the xaml below in MainWindow.xaml:
<Window x:Class="TestDependency.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
0
votes
3answers
323 views
Linq to SQL Extended Data Classes - Share a DataContext
I'm using the partial classes feature of Linq2SQL to add some helper methods to my objects.
The problem is that I need to perform some additional database queries in these helper methods, so I have ...
9
votes
1answer
2k views
How to make Entity Framework Data Context Readonly
I need to expose an Entity Framework Data Context to 3rd party plugins. The purpose is to allow these plugins to fetch data only and not to let them issue inserts, updates or deletes or any other ...
1
vote
1answer
395 views
The Name 'insert name here' does not exist in the current context
I don't get why is that the "dbo" in this query
var searchUser = from user in dbo.Accounts
where user.accnt_user == txtUser.Text &&
...
0
votes
1answer
204 views
LinqPad row id not getting updated after SubmitChanges()
Node n = new Node(){
Title = "test"
};
Nodes.InsertOnSubmit(n);
SubmitChanges();
n.Id.Dump();
It will dump 0.
In the database table, the row is inserted with the correct (auto-incremented) id. ...
3
votes
1answer
150 views
Using LINQ to SQL where database tables can have extra columns
Our development team would like to use LINQ to SQL in our data access layer. An issue we've run into is that the SQL Server database we're accessing can sometimes have additional columns in certain ...
2
votes
1answer
195 views
LinqToSql DataContext cache and memory usage
I was wondering if the LINQ to SQL DataContext cache use WeakReference or a similar system to avoid using too much memory after a few requests?
Does this behavior depends on the ObjectTrackingEnabled ...
2
votes
3answers
175 views
Is there something wrong limiting the DataContext to the ViewModel of the Window?
I don't feel comfortable letting any object being the DataContext of my views. As I'm following the MVVM pattern all windows have their own VM. What I plan to do is the following (taken from a window ...
1
vote
2answers
161 views
Error when inserting in to SQL Server through System.Data.Linq.DataContext
I have a big bunch of inserts that I do through DataContext in transaction.
I inserting two types of objects: A and B.
I do execute many sql inserts like:
INSERT INTO A (...) VALUES ...
3
votes
0answers
235 views
SqlCE CoTaskMemFree exception
I couldnt find anyone else on SO that had this same problem, and google hasnt helped much. Might be a good one for some of you wizards out there.
We have designed a service that receives data real ...
6
votes
1answer
1k views
Wiring up the MVVM View and ViewModel using Declarative DataContext for Design-Time and Data Template for Runtime?
Is it possible to wire up the View and ViewModel using both a Declarative DataContext and a Data Template?
Goal: I want to wire Views with a one ViewModel for design-time and another at run-time. ...
5
votes
2answers
3k views
Bind to parent DataContext within DataTemplate
I'm trying to bind MenuItem's Command to command contained in UserControl.DataContext. I've found couple of similar question, but solution according to them is failing to me:
<UserControl ...>
...
1
vote
2answers
1k views
I got a null reference exception on a Linq To SQL data context and I don't even really know where to start
I just deployed a users and roles asp database to a website and I'm getting this exception
Object reference not set to an instance of an object.
Description: An unhandled exception occurred during ...
2
votes
1answer
489 views
Linq-to-SQL: foreign key not accessible until transaction is committed
I've found that with Linq-to-SQL, when you create a new object you can not access a foreign-key member until you have called SubmitChanges on the context the new object is being "created with." I ...
5
votes
2answers
331 views
Why is it bad to implicitly commit a Unit of Work in a Dispose() method?
I wrote a UnitOfWork implementation that does not expose a public Commit() method. Instead the UnitOfWork implements IDisposable and the Commit is executed in the Dispose() method. I don't see any ...
0
votes
2answers
287 views
Redirecting Page whilst still executing slow Linq.DataContext.SubmitChanges() in ASP.NET
For an Intranet application I have a web page save function that can lead to substantial action on several database tables. I am using Linq2SQL and some 20 seconds of browser idle get swallowed up by ...
1
vote
2answers
120 views
insert in one DataContext, submit in another
I have two System.Data.Linq.DataContext instances of same type. There is a table Table1 in DataContext. I add an object in first DataContext instance to the Table1 using the InsertOnSubmit method and ...
1
vote
3answers
927 views
Not all records update on DataContext.SubmitChanges() (Linq to SQL)
In short, one specific record in one table updates while multiple, additional modifications in the same table do not.
theStat updates OK upon .SubmitChanges()
statToIncrease instances do not update ...
2
votes
5answers
832 views
LINQ: Relations do not get updated after SubmitChanges and Refresh
I found something weird. Let's say I have a Car model and a Company model.
So my Car model has a CompanyId row.
Let's say I change a Car's CompanyId then I SubmitChanges on the DataContext.
Here's ...
2
votes
2answers
404 views
DataContext disposed before updating foreign key field
I'm having some problems with DataContexts using linq to sql for an asp.net c# web application.
I first had problems with exceptions being thrown as I didn't dispose of the DataContext, same errors ...
0
votes
1answer
234 views
Exception when trying to create/use an inner transaction
My application (WCF service) uses LINQ data contexts and recently we've decided to wrap everything in a transaction. Seems to work pretty well; each call into the service has its own transaction so if ...
0
votes
2answers
900 views
Datacontext lost with dynamic xaml in WPF
I have a window with a simple frame element within it (we'll call it "myFrame"). Within the Window.Loaded I am parsing a string variable (loaded from an external source) with XamlReader.Parse(string) ...
0
votes
2answers
409 views
Unity with a Linq to Sql DataContext. RegisterType or RegisterInstance
Here's the basic setup. On an ASP.Net website, there are a few pages that display reports from data that comes from a database. All the data comes via stored procedures that is accessed usign Linq to ...
1
vote
1answer
153 views
LINQ - how to make change tracking work when entity passed to another class as property
Here's the scenario:
I have an ASP.NET user control that runs a LINQ query, stores the results in a generic List, then dynamically loads another user control (into a Placeholder) and passes one of ...
0
votes
2answers
725 views
What's the Oracle equivalent of System.Data.Linq.DataContext?
I am implementing the IRepository interface against an Oracle database.
public interface IDinnerRepository {
IQueryable<Dinner> FindAllDinners();
IQueryable<Dinner> ...
2
votes
2answers
387 views
Is the DataContext class specific to SQL Server?
The MSDN page for the DataContext class says:
Represents the main entry point for the LINQ to SQL framework.
Yet it looks like the constructors will take any ADO.NET IDBConnection. Am I right ...
6
votes
3answers
2k views
Data Context's SubmitChanges method causing a entity reference to be set to null
I know this looks a bit long but i tried to explain the problem as throughly as i could.
We are having a very 'exotic' problem with the linq to sql data context class. We have a n-tiered ...
0
votes
2answers
786 views
Trouble putting Statement Lambda inside a LINQ query
I'm trying to inject some inline work as a Statement Lambda into a LINQ query select like so...
// NOTE: mcontext.Gettype() == System.Data.Linq.DataContext
// Okay - compiles, nothing unusual
var ...
0
votes
2answers
381 views
How to get datacontext from stackpanel
I have:
<StackPanel DataContext="{Binding Path =MyContext}">
<TextBox Text="{Binding Path =Content}" x:Name="tbName" IsReadOnly="False">
</TextBox>
<CheckBox ...
1
vote
3answers
605 views
SQL Server timeout exception when extending Linq partial methods
In .NET 4.0 and Linq to SQL, I am trying to use a partial class to "trigger" changes from within an update method (an existing DBML method). For simplicity, imagine a table Things with columns Id and ...
0
votes
1answer
353 views
Use DataContext to create schema in an existing blank database file?
With a DataContext and a blank file-based database that already exists, is it possible to write the Data Context classes (i.e. the ones I added to the designer) to create the db schema?
With a data ...
0
votes
2answers
273 views
Helping linqtosql datacontext use implicit conversion between varchar column in the database and table and a custom data type in my application
I am creating an mssql database table, "Orders", that will contain a varchar(50) field, "Value" containing a string that represents a slightly complex data type, "OrderValue".
I am using a linqtosql ...
0
votes
1answer
387 views
“Attach or Add an entity that is not new…loaded from another DataContext. This is not supported.” Problem on insert of linker object
Similar error as other questions, but not quite the same, I am not trying to attach anything.
What I am trying to do is insert a new row into a linking table, specifically UserAccomplishment. ...
1
vote
1answer
661 views
Using LINQ GetChangeSet() to show user what happened
Say I have a L2S Update and I would like to display what changed to the user. Where does GetChangeSet() get populated? Immediately after I assign values or after context.SubmitChanges()?
If the ...
2
votes
3answers
864 views
LINQ Datacontext Disposal Issues
I am getting a Cannot access object: DataContext after it's been disposed in the below DAL method. I thought that I would be okay calling dispose there. result is an IEnumurable and I thought it was ...
1
vote
2answers
564 views
Validation (with custom ErrorTemplate) for a DataTemplate
I can't figure this guy out / in desperate need of assistance.
I have an ItemsControl and a DataTemplate as the ItemTemplate
i.e.
<DataTemplate>
<StackPanel>
<TextBox ...


