0
votes
Generate LINQ query from multiple controls
I think you are searching how to create a "Dynamic" Linq Query, …
1
vote
Which LINQ syntax do you prefer? Fluent or Query Expression
I really like the Fluent syntax and I try to use it where I can, but in certain cases, for example where I use joins, I usually prefer the Query syntax, in those cases I find it easier to read, and …
3
votes
Linq-to-SQL ToDictionary()
You are only defining the key, but you need to include the value also:
var dic = (from p in db.Table
select new {p.Key, p.Value })
.ToDictionary<string, …
0
votes
How to write Asynchronous LINQ query?
Here is a interesting article:
LINQ to SQL: Asynchronously Executing Querie …
0
votes
Linq Extension methods vs Linq syntax
Check this question: Which LINQ syntax do you prefer? Fluent or Query Expression
…
1
vote
Is it possible to use/access scalar functions with LINQ to SQL?
Check this video also: LINQ to SQL: Using Stored Procedures
…
1
vote
C#: ?: Operator in LINQ Query
You have to use the join keyword, and define the relationship between the entities in order to make a proper inner join.
…
1
vote
Can you use LINQ or lambdas to perform matrix operations?
You can do something like this:
int[] a = {10, 20, 30};
int[] b = {2, 4, 10};
if (a.Length == b.Length)
{
int[] result = (from i in Enumerable.Range(0, a.Length)
let op …
0
votes
How do you use LINQ with Sqlite
Check this provider:
SqlLite Linq Provider
Also you can consider using …
1
vote
Linq to Sql query using “not in”
You can do it with Contains:
var states = new[] {"CA", "IN", "MD"};
var query = db.Authors.Where(x => !states.Contains(x.state));
…
4
votes
2
votes
5
votes
LINQ, iterators, selecting and projection
You can do this:
var listOfStrings = new List<string> {"name1", "name2", "name3", "name4"};
var foo = listOfStrings.Select((value, position) => new {position, value …
5
votes
How do you count the words in an array of strings with LINQ?
You can do it with SelectMany:
var stringArray = new[] {"one two", "three four five"};
var numWords = stringArray.SelectMany(segment => segment.Split(' ')).Count();
…
4
votes
How to use LINQ to return substring of FileInfo.Name
Try something like this:
var fileList = files.Select(file =>
file.Name.Substring(0, file.Name.Length -
(file.Name.Length - …
