0
votes
1answer
11 views
Record created with InsertOnSubmit & SubmitChanges disappears when program terminates!
This is so strange that it must be me doing something idiotic, it can't be a problem with LINQ. So, my apologies in advance for being an idiot.
The code below runs OK, displays no error messages, …
1
vote
1answer
14 views
WPF and LINQ/SQL - how and where to keep track of changes?
Does anybody have and recommendations for me?
I have a WPF application built using the MVVM pattern:
My Models come from LINQ to SQL.
My ViewModels have a reference to a Model.
Setting a property …
0
votes
3answers
27 views
Tracking external changes to a database with LINQ-to-SQL
Is there a way to get SQL Server 2005 to call back to a connected application, such that the connected application will know when a record in a table has had a field modified by another application …
0
votes
3answers
58 views
LINQ Select Query Question
I have the following entities:
CartoonStory
CartoonFigure
Sex
A CartoonStory is told by one or more CartoonFigures and a CartoonFigure is of a Sex male or female.
When the user of my website is …
1
vote
1answer
11 views
Attribute.IsDefined doesn’t see attributes applied with MetadataType class
If I apply attributes to a partial class via the MetadataType attribute, those attributes are not found via Attribute.IsDefined(). Anyone know why, or what I'm doing wrong?
Below is a test project I …
1
vote
2answers
20 views
DataContext across multiple databases
I have an application that needs to join tables from multiple databases into a single LINQ-to-SQL query. Unfortunately, I have a separate DataContext class setup for each database, so this query …
0
votes
4answers
39 views
Extension method on datacontext Linq to sql
Is it possible to create an extension method on the DataContext, not on the table in the datacontext but directly on the dataContext to get dynamicly a table.
ex:
DataContext dc = new DataContext();
…
0
votes
1answer
19 views
why is the second DatabaseConflictException being thrown?
I have some linq2sql stuff which updates some rows.
Then when I submit I do this:
try
{
database.SubmitChanges();
}
catch (ChangeConflictException)
{
…
0
votes
2answers
37 views
asp.net MVC Database call in partial view
I would like to make a database call in a partial view in asp.net MVC.
I am not sure how to actually go about that.
I am trying to get an instance of the repository so I can make a couple calls to …
0
votes
1answer
16 views
LINQ 2 SQL N-Tier Application
Hello all, im trying to test and then implement LINQ 2 SQL as my Data Access to my N-Tier Application, as i read some info today, i added to my database a DateTime column as this reflected in my L2S …
0
votes
5answers
62 views
mocking LINQ to SQL
What is the best and easiest way to unit test a Class that uses LINQ to SQL and returns back a decimal, is it by Mocking? If so how do I go about this?
1
vote
0answers
13 views
Linq updating two tables I need Autoid value
I am doing some activity that will update two tables. One of the tables have an autoid which I need inserted in the other table. The field that stores the autoid value is used a like a foreign key to …
0
votes
2answers
37 views
Retrieving data from a one-to-many relationship
I'm trying to retrieve data from a one-to-many relationship, in an ASP.NET MVC application.
Let's say I have two tables Posts and Category with the following attributes:
posts
-id
-title
…
7
votes
5answers
111 views
Why did the following linq to sql query generate a subquery?
I did the following query:
var list = from book in books
where book.price > 50
select book;
list = list.Take(50);
I would expect the above to generate something like:
…
0
votes
3answers
38 views
Linq to SQL in ASP.Net MVC Runs as Network Service when using Impersonation
I have an ASP.Net MVC controller action that instantiates a DataContext object and I am currently passing the connection string directly into the constructor. I am using Impersonation and I have …
