1
vote
3answers
24 views
In LINQ to SQL based Repositories, should we create a new DataContext within each method?
for example:
class repository {
private DataContext db = new DataContext();
public IQueryable<Blah> someMethod(int id){
return from b in db.Blah ... select b;
}
…
2
votes
2answers
34 views
Site update, testing was fine, after deployment, again fine, once user load increases, FAIL?
We are using ASP.NET MVC with LINQ to SQL. We added some features and tested them all to perfection on our QA box. We are using Windows Server 2003 and SQL Server 2005. So when we pushed out changes …
1
vote
2answers
47 views
Strange LINQ to SQL behaviour (BUG?)
We have this very strange issue on LINQ to SQL Code.
Consider this code snippet :
var wissen = db.Table.Where(f => f.Name == somevalue);
db.Table.DeleteAllOnSubmit(wissen);
db.SubmitChanges();
…
0
votes
1answer
22 views
first time I have to create an extension for linq2sql, how to do this one?
I have this one line property
Public ReadOnly Property DateToUniversal(ByVal dt As Nullable(Of Date)) As String
Get
Return If(dt.HasValue, dt.Value.ToString("u").Substring(0, 10), "")
…
1
vote
3answers
30 views
linq image saving problems
I have an object that has a property:
[Column]
public Binary Image { get; set; }
When the object is saved the first time every this is OK, but when it is modified I get an exception on …
0
votes
3answers
32 views
Linq: How to find rows searching in two columns with the same criteria
Hello,
In my controller, I've this action method called "SearchForContact," which takes 2 strings parameters firstName and LastName. There are 3 situations:
If both parameters are null, the view is …
1
vote
2answers
54 views
+100
WPF and LINQ/SQL - how and where to keep track of changes?
I have a WPF application built using the MVVM pattern:
My Models come from LINQ to SQL.
I use the Repository Pattern to abstract away the DataContext.
My ViewModels have a reference to a Model.
…
2
votes
1answer
1k views
LINQ to SQL Left Outer Join
Hi,
Is this query equivalent to a LEFT OUTER join?
//assuming that I have a parameter named 'invoiceId' of type int
from c in SupportCases
let invoice = c.Invoices.FirstOrDefault(i=> i.Id == …
0
votes
1answer
11 views
Linq to sql type comparison
I have a varialbe name age and that's type is int?
My linq to sql query is:
from t in db.Profiles where t.age == age select t
having a comparison between int and int? at where clause. how the query …
0
votes
0answers
23 views
ASP.Net User activity tracking in database
This is about a simple yet efficient activity logging framework that I want to integrate with my existing ASP.Net based web-app (I've a LINQ-to-SQL based SQL DB as backend). I'm using something like a …
0
votes
1answer
11 views
Linq group by and count - how do I add more columns?
I have the following linq query
from c in AllContracts
group c.StatusId by c.StatusDescription
into g
select new {StatusDescription = g.Key, CountOf = g.Count()}
which returns
StatusDescription …
0
votes
2answers
63 views
Need SELECT WHERE COUNT = INT in LINQ
I have the following table that records when a particular room in a hotel (designated by a three character code [dlx, sup, jac, etc..]) is sold out on a particular DATETIME.
CREATE TABLE …
1
vote
0answers
16 views
LINQ to SQL - Format a string before saving?
I'm trying to convert an existing (non-LINQ to SQL) class into a LINQ to SQL entity class which has an existing (db column) property like:
public string MyString
{
get { return myString; }
…
0
votes
1answer
23 views
ASP.Net MVC Error Validation - How to display validation message when passing a custom view model to a view
I have been adding error and business validation to my app, and when I test using a view that was strongly typed to one model, let's say locations, I get the validation summary as well as the …
0
votes
0answers
6 views
EntityRefs and EntitySets - When are they retrieved?
Assume I have an entity named "A" that contains an EntityRef and an EntitySet. I'm curious as to exactly when, by default, the EntityRef and EntitySet are retrieved when "A" is retrieved from the …
