0
votes
LinqtoSQL filter and order by syntax
You can add an order by clause like this:
var advisors = from adv in _context.Advisors
join advisoroffice in _context.OfficeAdvisors
on adv.AdvisorI …
0
votes
Does LINQ’s ExecuteCommand provide protection from SQL injection attacks?
LINQ to SQL uses *exec_sql* with parameters, which is much safer than concatenating into the ad-hoc query string. It should be as safe againt SQL injection as using SqlCommand and its Paramaters co …
2
votes
Fetching items which has a specific set of child elements (advanced query - possible?)
This should work for you:
string[] criteria = new[] { "Car", "Ford", "Offroad" };
var items =
from i in db.Item
let wantedMetas = db.Meta.Where(m => criteria.Contains(m …
1
vote
How to delay loading aproperty with linq to sql external mapping?
I believe you would have to do something like what Daniel Schaffer said in code, but without the [Column] attribute, since you would define the mapping in the XML file.
…
2
votes
Trying to change properties of an IQueryable collection
Brandon, this is a normal mistake when using LINQ. See, the IQueryable returned from LINQ does not actually contain your items, that's why you can't index into it. It has only enough information to …
0
votes
LINQ for LIKE queries of array elements
IEnumerable.Contains() translates to SQL IN as in:
WHERE 'american airlines' IN ('airline', 'railroad') -- FALSE
String.Contain …
1
vote
LINQ to SQL and Join two tables with OR clause
This is happening because you are doing a "first pass" which filters the plans and documents that match your predicates, and then joining those results only, effectively doing an AND …
1
vote
The || (or) Operator in Linq with C#
If you are using LINQ to SQL, you cannot expect the same C# short-circuit behavior in SQL Server. See …
1
vote
LINQ To SQL - Select a constant value
Actually, each property in the resulting anonymous class needs a name, so in the following code, we are naming the constant column ConstantColumn. The 2nd and 3rd properties will by de …
5
votes
Is there a LINQPad equivalent to a DataContext class?
Short answer: You do not need to create the DataContext yourself. LINQPad comes with lots of samples, take a look at them.
When you conn …
4
votes
Linq to SQL - Don’t fetch a particular column
LINQ to SQL supports lazy loading individual properties. In the DBML designer, you can set Delay Loaded to …
1
vote
Mapping Linq-to-Sql entities to custom domain entities
You might want to look into AutoMapper. It does a great job of mapping properties automatically out of the box and supports extensive …
3
votes
Concurrency with Linq To Sql Stored Procedures
Are you using stored procedures directly (through a SqlCommand) or through LINQ to SQL? LINQ to SQL supports using stored procs for all its database access. You might want to look at …
0
votes
Linq2Sql Insert Records To Related Tables
You might want to edit you data objects (normally by using the DBML designer) and rename the Participant-typed properties to Applicant and Respondent respecti …
0
votes
Get Birthday reminder Linq Query ignoring year.
Here's one way to do it. I don't really like the way it computer "this year's" birthday first and then correct it if it already passed, but I couldn't think of a better way in short time.
…
