0
votes
1answer
55 views
Linq Query Expression reuse
Post Edited
Would this be possible ?
Have a query expression that is precompiled
i.e
private static Func<SmwrDataContext, int, IQueryable<Xyz>> _validXyzs =
…
2
votes
2answers
359 views
LINQ options.loadwith problem.
I am writing a tag-based ASP.net system. Using the following db scheme:
Topic TagTopicMap Tag
Basically it is a 3NF approach (toxi) that I found from the following: …
1
vote
5answers
247 views
Determining scope of a MemberExpressions target
Is there anyone here with experience writing custom Linq proviers?
What I'm trying to do is tell whether a MemberExpression that is a property on a business object should be included in the sql, or …
0
votes
1answer
13 views
Linq to ADO.NET parent/child query help
Hello
I want to use Linq to ADO.NET to fetch all rows that match the criteria below from a DataTable.
Select all rows where "parentId" equals "id" of a row where "parentId" equals null.
Order by …
0
votes
1answer
24 views
Connecting a gridview to multiple tables linqdatasource
Hi folks,
I'm just playing with some linq and asp.net - absolute beginner so I'm not even sure exactly how to ask my question.
Anyway, I have a MSSQL database with asp membership info in it. For …
0
votes
2answers
41 views
Generate a two dimensional array via LINQ
I am trying to create a matrix of doubles, representing a correlation between entities.
Here's how I'm doing it via LINQ
double[][] correlationsRaw = (from e in entitiesInOrder
…
1
vote
2answers
40 views
How to correctly use Linq-to-SQLite?
Hello.
I have downloaded and installed linq-to-sqlite from http://sqlite.phxsoftware.com/
But the following test code:
[ Table( Name = "items" ) ]
public class MyItem
{
[ Column( IsPrimaryKey = …
2
votes
7answers
923 views
Sudoku algorithm in C#
I need one liner (or close to it) that verifies that given array of 9 elements doesn't contain repeating numbers 1,2,3,...,9. Repeating zeroes do not count (they represent empty cells).
The best I …
0
votes
0answers
19 views
What are the steps to read an object from an ADO.net data service?
Hi, I'm new to ADO.net data services (and to .net in general too..), I'm having this project where I need to setup a data service to read and write to a database with nHibernate, I've created the …
2
votes
3answers
124 views
Subsonic 3.0 and linq
I'm playing around with Subsonic 3.0 SimpleRepository and try to get menus and menuitems with one linq query, but the menuitems is allways null
Menu
public class Menu
{
public Menu()
{
…
0
votes
1answer
23 views
How to use PLINQ for IO-bound tasks?
According to the answer to this question, there is no way to effectively use LINQ for IO bound tasks. Is there a way to gain better control, or is LINQ just not suited for such tasks?
0
votes
2answers
34 views
Limit rows in table per page
I would like to be able to limit the number of rows that can be in table on View page (I am using ASP.NET MVC), and if there are more rows, it goes to the next page.
0
votes
2answers
47 views
get property lambda from property Name (Where property type can be nullable)
Hi there I basically need a function with the following signature
Expression<Func<T, object>> GetPropertyLambda(string propertyName)
I have made a few attempts but the problem arise …
0
votes
0answers
6 views
Subsonic 3.x: ArgumentException while querying (LINQ)
Even a simple query like
EmmaDatabase.EmmaDB ec = DatabaseProvider.GetEmmaDatabase();
var changes = (from o in ec.dbCachedChanges
select o);
Throws me an …
2
votes
5answers
153 views
What’s exactly PLinq?
What is PLinq? And what is the difference between this and the normal Linq? I saw this word many times, so I googled it and found that it is a new .NET Framework 4 feature, but I didn't really …
