1
vote
1answer
22 views
How do I prevent the Entity Framework from escaping my Regex?
Put simply... in plain SQL I would do this:
SELECT * FROM [Products] WHERE [Description] LIKE '%[0-9]%'
In Linq to Entities I do this:
Products.Where(p => p.Description.Contains("[0-9]"))
But …
2
votes
1answer
25 views
Lambda expression Where on navigation property
Good afternoon,
I have three entities (that concern this question)
Company (ID, etc..)
CompanyAddress (AddressID, CompanyID, Rank)
AddressDetails (AddressID, Street, City, State, Zip)
The reason …
0
votes
1answer
54 views
Reusing part of the query with joins
I need to implement 3 public methods that all rely on the same initial join. Would a solution like the one described below work?
The code below is an example, the real stuff is much more complicated, …
0
votes
1answer
30 views
+100
Default valued DateTime column, mapping with EF4
In my database there's a datetime column "Created" with default value getutcdate(). I would like my EF datacontext to generate an insert query that doesn't set this column, and fetch the resulting …
1
vote
1answer
31 views
+100
Making sure that DateTime properties return DateTimeKind.Utc
Is it possible to define DateTime properties in entity objects that are of Kind == DateTimeKind.Utc by using either the .edmx file, or a t4 template?
When possible using t4, please describe how to …
0
votes
1answer
17 views
LINQ to ENTITIES DISTINCT return duplicates when LINQ TO SQL works as expected
I have been using LINQ to SQL for the last year and have had no problems. I decided that I wanted to experiment with the EntityFramework on a project where the requirement was to just return some raw …
1
vote
2answers
36 views
Read only Search function. Stored Procedures or IQueryable with POCOs and Ef 4.0
We have some search functionality that can return tens of thousands of results from the db although it will only fetch the rows needed to be displayed into e.g. first 10 records. When the next page …
0
votes
0answers
27 views
sorting the grid
Hi,
Iam working on sorting the grid remotely.
Iam using the folllowing query
SELECT value a, ROW_NUMBER() OVER (ORDER BY" + " " + SortExpression + ") As RowNumber FROM XSP_AssetList_V AS a WHERE …
1
vote
4answers
95 views
Need help with adding Where clauses in loop with Linq
Below is a rough and simplified code example of what I am trying to do and it is not working as expected. I am using Linq to Entity in case that matters.
Basically in the first loop with the …
0
votes
1answer
22 views
LINQ to Entites: sub-objects disappearing
I'm trying to understand why, sometimes, my sub-objects disappear.
In my List view, I have the standard
<% foreach (var item in Model)
and when I inspect the item and the model, I can see that …
0
votes
1answer
27 views
asp.net mvc: is this a bug or a feature when using partial views on objects that have the same field names?
My classes are a DataModel, which uses ID as its PK, and a Map, which also has ID as a PK. Map has a FK to DataModel (DataModelID).
I have a partial view that I use from my DataModel list view as …
1
vote
1answer
41 views
Saving nested objects with linq to entities
I have a UI that presents a number of checkboxes to the user, and for each one that is checked, I need to create an entry in a mapping table.
LookupTable <- MapTable -> DataTable
I have a …
1
vote
4answers
71 views
Inline Select with LINQ
I need to replicate a T-SQL statement that has an inner select, using LINQ:
SELECT *,
CustomerTypes.Description as CustomerType,
(Select Min(Distinct DocumentStatistics.StatDateTime) As …
0
votes
4answers
612 views
Updating your edmx to reflect changes made in your db (.net linq-to-entities)
So I have my edmx made.
Then I change my database a little bit, changing a column to from being a NOT NULL to allowing NULL.
I go into my edmx, right click and choose "Update Model from Database"
…
1
vote
2answers
48 views
Which ORM tools support this version of Queryable.Select extension method
Do you know an ORM supporting this extension method:
public static IQueryable<TResult> Select<TSource, TResult>(
this IQueryable<TSource> source,
Expression<Func<TSource, …
