Tagged Questions
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.
19
votes
7answers
33k views
Silverlight - Setting DataContext in XAML rather than in constructor?
How can I set the DataContext on my Grid in XAML, instead of in the constructor?
Here is how I do it in the constructor (LayoutRoot is the XAML Grid defined in the XAML):
this.LayoutRoot.DataContext ...
18
votes
4answers
1k views
Should I return IEnumerable<T> or IQueryable<T> from my DAL?
I know this could be opinion, but I'm looking for best practices.
As I understand, IQueryable implements IEnumerable, so in my DAL, I currently have method signatures like the following:
...
17
votes
3answers
2k views
Can I stop the dbml designer from adding a connection string to the dbml file?
We have a custom function AppSettings.GetConnectionString() which is always called to determine the connection string that should be used. How this function works is unimportant to the discussion. ...
15
votes
1answer
3k views
C# Linq-to-Sql - Should DataContext be disposed using IDisposable
I have several methods that deal with DB and all of them start by calling
FaierDbDataContext db = new FaierDbDataContext();
Since the Linq2Sql DataContext object implements IDisposable, should this ...
10
votes
4answers
3k views
Are Multiple DataContext classes ever appropriate?
In order to fully use LinqToSql in an ASP.net 3.5 application, it is necessary to create DataContext classes (which is usually done using the designer in VS 2008). From the UI perspective, the ...
9
votes
2answers
114 views
Why isn't my transaction escalating to DTC?
DTC is disabled on my machine. It is my understanding that this code should fail, because it uses two data contexts in the same transaction. So, why does it work? (Note: I tried this using .NET 3.5 ...
9
votes
3answers
404 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 ...
9
votes
3answers
1k views
Ninject and DataContext disposal
I'm using Ninject to retrieve my DataContext from the kernel and I was wondering if Ninject automatically disposes the DataContext, or how he handles the dispose() behaviour. From own experiences I ...
9
votes
3answers
739 views
Most efficient way to update with LINQ to SQL
Can I update my employee record as given in the function below or do I have to make a query of the employee collection first and then update the data?
public int updateEmployee(App3_EMPLOYEE ...
9
votes
5answers
2k views
In LINQ-SQL, wrap the DataContext is an using statement - pros cons
Can someone pitch in their opinion about pros/cons between wrapping the DataContext in an using statement or not in LINQ-SQL in terms of factors as performance, memory usage, ease of coding, right ...
9
votes
2answers
2k views
LinqPad, using multiple datacontexts
I am often comparing data in tables in different databases. These databases do NOT have the same schema. In TSQL, I can can reference them with the DB>user>table structure (DB1.dbo.Stores, ...
9
votes
5answers
3k views
LinqToSql declare and instantiate DataContext best practice?
What's the best practice in terms of setting up my DataContext for easy access in my extended LinqToSql classes?
For example, I have a "User" entity in my dbml and I want to add methods to that ...
8
votes
3answers
922 views
Exceptions by DataContext
I've been doing some searching on the internet, but I can't seem to find the awnser. What exceptions can a DataContext throw? Or to be more specific, what exceptions does the ...
8
votes
2answers
1k views
Use DataContext as CommandParameter in WPF
I want to pass the current DataContext (which is an instance of a ViewModel) as a CommandParameter on a WPF Button. What would be the syntax I should use?
<Button
x:Name="btnMain"
...
8
votes
1answer
1k views
What's wrong with “DataContext = this” in WPF user controls?
I read somewhere that setting DataContext = this in the constructor of a user control is bad practice (can't find where though). Why is this bad practice? What is the alternative?
8
votes
1answer
5k views
ItemSource vs Datacontext in wpf
Can any one give me the difference between Itemsource and DataContext of Listview in WPF?
With example
7
votes
4answers
630 views
How to handle nested datacontext in the BL?
public class TestBL
{
public static void AddFolder(string folderName)
{
using (var ts = new TransactionScope())
{
using (var dc = new TestDataContext())
...
7
votes
5answers
1k views
LinqToSql static DataContext in a web application
In a web application that I have run across, I found the following code to deal with the DataContext when dealing with LinqToSQL
public partial class DbDataContext
{
public static DbDataContext ...
7
votes
4answers
6k views
Simulating Cross Context Joins--LINQ/C#
Here's the issue:
I have 2 data contexts that I would like to do a join on. Now I know that LINQ doesn't allow joins from one context to another, and I know that 2 possible solutions would be to ...
7
votes
2answers
3k views
Who has the best answer for why DataContext and ItemsSource are not redundant?
In WPF Databinding, I understand that you have DataContext which tells an element what data it is going to bind to and ItemsSource which "does the binding".
But e.g. in this simple example it ...
6
votes
3answers
2k views
UserControl's DataContext
I'm creating a UserControl I want to use something like this:
<controls:ColorWithText Color="Red" Text="Red color" />
So far, I've implemented similar controls like this:
<UserControl ...
6
votes
3answers
995 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 ...
6
votes
4answers
5k views
How to use transactions with a datacontext
Can i use transactions with a datacontext, so i can rollback the state of the context after an error. And so yes, how does it work?
6
votes
1answer
732 views
Ignore read-only class properties when using DataContext.ExecuteQuery<T>
How do I tell a LINQ data context to ignore either specific properties, or all readonly properties, when binding a result set to an object?
I am working with some T-SQL statements that are difficult ...
6
votes
3answers
2k views
Get object's DataContext
If I have the LINQ objects:
public class SampleDataContext : DataContext {
public Table<Customer> Customers { get { return this.GetTable<Customer>(); } }
public SampleDataContext( ...
5
votes
1answer
185 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
3answers
127 views
WPF Data Binding Architecture Question
I'm trying to learn how to use WPF binding and the MVVM architecture. I'm running into some trouble with Dependency Properties. I've tried to control the visibility of an item on the view by binding ...
5
votes
2answers
358 views
What does LINQ-to-SQL Table<T>.Attach do?
What exactly does the LINQ-to-SQL method Table<T>.Attach() and Table<T>.AttachAll() and what is an example/situation for their proper usage?
Also, please check out this related question: ...
5
votes
2answers
105 views
Is it safe to pass Linq and a .ToList(), .Single(), etc to another method as a func parameter?
I needed to wrap some Linq queries with some Retry Policy logic.
Is it safe to pass this:
return WithRetry<User>(() =>
dataContext.Users.Where(u => u.UserID == ...
5
votes
1answer
561 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 ...
5
votes
2answers
255 views
RelayCommand called in “old” DataContext
I am using RelayCommands in my ViewModels to ged rid of the code behinds. The RelayCommands are working, except in this situation: the ViewModel in which the RelayCommands are defined is changed with ...
5
votes
4answers
310 views
Why would reusing a DataContext have a negative performance impact?
After a fair amount of research and some errors, I modified my code so that it creates a new DataContext each time the database is queried or data is inserted. And the database is queried frequently ...
5
votes
4answers
2k views
Where should I set the DataContext - code behind or xaml?
(honestly I searched and read all the 'related questions' that seemed relevant - i do hope i didn't "miss" this question from elsewhere but here goes...)
There are two different ways (at least) to ...
5
votes
2answers
962 views
How to regenerate (update) LINQ to SQL DataContext?
I use LINQ to SQL in a WPF project. I have made small changes in the database (changed datatype of the fields, which contain no data).
Now I want to regenerate (refresh) the LINQ to SQL DataContext ...
5
votes
2answers
2k views
Mimicking SQL Insert Trigger with LINQ-to-SQL
Using LINQ-to-SQL, I would like to automatically create child records when inserting the parent entity. Basically, mimicking how an SQL Insert trigger would work, but in-code so that some additional ...
5
votes
2answers
8k views
WPF Databinding: How do I access the “parent” data context?
I have a list (see below) contained in a window. The window's data context has two properties, Items & AllowItemCommand.
How do I get the binding for the Hyperlink's Command property needs to ...
5
votes
1answer
122 views
C#: How to see if a Linq2SQL entity is in the database
I would like to check if an entity is already added to the database. So, how can I see this difference between a and b?
var a = dataContext.Things.First(x => x.Name == something);
var b = new ...
5
votes
4answers
886 views
Inject same DataContext instance across several types with Unity
Suppose I have IRepository interface and its implementation SqlRepository that takes as an argument LINQ to SQL DataContext. Suppose as well that I have IService interface and its implementation ...
5
votes
3answers
8k views
MVVM Pattern, ViewModel DataContext question
I need to figure out how to communicate between ViewModels. I'm new to MVVM so please be kind.
Here's a dumbed down example
class definitions(assume that I have hooked the Child.PropertyChanged ...
5
votes
4answers
3k views
c#: How to pass linq-objects around
When showing my main window, I make a list of objects from linq-to-sql:
using (var context = new Data.TVShowDataContext())
{
Shows = new ObservableCollection<Data.Show>(context.Shows);
...
5
votes
2answers
6k views
LINQ-to-SQL: ExecuteQuery(Type, String) populates one field, but not the other
I've written an app that I use as an agent to query data from a database and automatically load it into my distributed web cache.
I do this by specifying an sql query and a type in a configuration. ...
5
votes
2answers
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 ...
4
votes
3answers
95 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 ...
4
votes
3answers
149 views
Lifetime of DataContext, LinqToSql
I have found on the Internet an article which presents how to implement repository pattern. The implementation looks similar like here:
class ProductRepository : IProductRepository
{
var ...
4
votes
1answer
248 views
Validating Child record in multi-level wpf view
Lets say I have a set of model classes like this:
public class Person
{
public string Name { get; set; }
public ObservableCollection<Job> Jobs { get; private set; }
}
public class Job
{
...
4
votes
3answers
471 views
How do I correctly manage the disposing of a DataContext?
I have a web service that is quite heavy on database access. It works fine in test, but as soon as I put it in production and ramp up the load it starts churning out errors that are raised when ...
4
votes
2answers
236 views
LINQ to SQL - Xml Field Problem - How low down can you intercept the generated TSQL?
Our development stumbled onto a major roadblock in terms of Linq to Sql and Sql 2005+ Xml Fields. We have an Xml blob field containing fields...
<Profile name-first="Terry" name-last="Aney" ...
4
votes
2answers
364 views
How did I wrong my DataContext?
I've been working with Linq-to-Sql for some time now, and what I usually do in a solution is the following:
In a project I create a dbml schema.
In another project I create a simple DataAccessLayer ...
4
votes
3answers
266 views
Opinion on reuse of db context in Linq
I have a class that uses linq to access the database. Some methods call others. For example:
class UserManager
{
public User[] getList()
{
using(var db = new MyContext())
{
...
4
votes
2answers
2k views
Difference between ItemsSource and DataContext as pertains to ListBox
I am not quite grokking the difference between ItemsSource and DataContext. Can someone explain it and back it up with examples? When would I use one or the other.
I am reading the docs and it says ...