Tagged Questions

0
votes
3answers
30 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 = t …
1
vote
1answer
18 views

What is purpose of UpdateObject for Linq to REST?

When one is using ADO.NET Data Services and consuming it via the Linq to REST (formerly Project Astoria), it doesn't seem to be as intuitive as it could be. Namely, with normal Li …
0
votes
1answer
24 views

In Memory DataContext

Is it possible to get a LINQ to SQL DataContext to run completely in-memory? Without it touching the database? I am doing some very rapid prototyping, and want to minimize the sur …
0
votes
1answer
27 views

LINQ To SQL exception with Attach(): Cannot add an entity with a key that is alredy in use

Consider this typical disconnected scenario: load a Customer object from SQL Server using LINQ To SQL user edits the entity, and the presentation tier sends back the entity modi …
0
votes
1answer
250 views

Passing DataContext to User Control in WPF

I have a usercontrol that acts as a container for a ContentControl. The user control container has a listview control that I want to use to update controls in a dynamically added u …
0
votes
3answers
409 views

“Property ‘Path’ does not have a value”

I'm using the following xaml to fill the dataContext: DataContext="{Binding RelativeSource={RelativeSource TemplatedParent}}" The application works fine, but Cider complains tha …
0
votes
1answer
23 views

Unity: Using same datacontext in application_BeginRequest?

Hi there, Previously i managed to setup my unity to provide a new DataContext each time to my Repository project. It works great. But for example, I am in a WCF method which ope …
1
vote
3answers
58 views

UNITY: passing in a new datacontext each time?

Hi there, I am trying to use unity to automatically inject a datacontext on my repository using a new instance each time.., my idea is the ensure that each time a new datacontext …
1
vote
4answers
60 views

Prefetching data in with Linq-to-SQL, IOC and Repository pattern

Hi, using Linq-to-SQL I'd like to prefetch some data. 1) the common solution is to deal with DataLoadOptions, but in my architecture it won't work because : the options have to …
0
votes
0answers
15 views

Dataform is losing its datacontext upon invoke of NewItemTemplate. why?

Has anybody any idea why I appear to be losing my datacontext when doing a NewitemTemplate? My other templates (ReadyOnly and Edit) are working. I know this because each has 3 Data …
0
votes
5answers
186 views

DbLinq - Cache problem

I'm using linq to sql for MySql (using DbLinq) in an ASP.NET MVC website. I have a weird caching problem. Consider the following methods in my Repository class: public IEnumerable …
0
votes
2answers
54 views

What is the best LINQ-to-SQL strategy for disposing of DataContext within methods?

I understand that it is good practice to use a using block when getting data from the LINQ-to-SQL classes as shown below. However, when I do this, I can only access the shallow pr …
0
votes
3answers
262 views

How can I create generic datacontext with linq

How i can create a generic datacontext on linq means If database change i don't have to change anything on linq datacontext. Please specify the code or link
0
votes
3answers
79 views

Linq2SQL: Why doesn’t datacontext update database

This is my first go at LINQ to SQL. I create my dbml in the designer using a SQL Server Express database. I create a stored procedure called StoredProcedure1, which I also dragge …
1
vote
2answers
76 views

What defines the bindings update order in WPF?

Hi, I have a piece of WPF/C# code that uses several Bindings: A combobox is used to select an Account The itemssource property of a second combobox is bound to the selected Acco …

1 2 3 4 5 9 next
15 30 50 per page