0
votes
1answer
19 views
Custom sort-order with SQL-Server and .NET Entity-Framework
Hello!
I have a table I store contacts and their phones.
Contact: ContactId (int, PK), FirstName (varchar), LastName (varchar)
Phone: PhoneId (int, PK), ContactId(int FK), Number (varchar), SortOrder …
0
votes
2answers
48 views
Has Entity Framework reached critical mass?
I've been rolling my own object mapping system for over ten years and my current .NET version is pretty stable and I understand it. I've always kept a watchful eye on commercial developments in this …
5
votes
4answers
72 views
What is the most annoying feature (or lack of feature) you have found in the Entity Framework?
I am starting with the Entity Framework. It sounds great. But I am wondering if I should watch out for some weakness somewhere. Any experience there?
1
vote
4answers
36 views
Does entity framework track changes on POCOs
Does the entity framework 4.0 track changes on Plain old C# object?
If so, should my class do something special (implement an interface/raise events when changing the value of a property?)
Also, how …
0
votes
1answer
32 views
How do I navigate a table using the entity framework?
I'm trying to create a simple table navigation screen in WPF using the entity framework on a database with one table, Students. The screen basically has the the students name and surname and back and …
1
vote
2answers
31 views
Entity Framework - Multiple Project support
I am looking into migrate a large project to Entity Framework 4.0 but am not sure if it can handle my inheritance scenario.
I have several projects that inherit from an object in the “main” project. …
1
vote
2answers
18 views
Can you give an example where entity SQL makes sense?
Linq to entities seems much easier and safer than entity SQL.
Can you give an example where using entity SQL makes more sense than Linq to entities?
1
vote
2answers
26 views
When should I call SaveChanges() when creating 1000’s of Entity Framework objects? (like during an import)
I am running an import that will have 1000's of records on each run. Just looking for some confirmation on my assumptions:
Which of these makes the most sense:
Run SaveChanges() every …
0
votes
2answers
24 views
Entity Frameworks and databaes connections
I was debugging Jaroslaw Kowalski provider wrappers. While debugging it I observed that the Entity Framework closes the connection after every query. On every interaction with database, during the …
1
vote
2answers
39 views
Entity Framework via the middle tier
Ok this one is might not have a straight forward answer but lets see.
I am trying to design a DAL that will sit on the network and serve EF objects to developers who are writing clients that need to …
1
vote
1answer
20 views
Entity Framework - Different multiplicity in SSDL and CSDL
Hello,
I'm using EF v1. I have following tables:
CREATE TABLE category (
category_id int ,
category_name varchar(100) not null,
CONSTRAINT PRIMARY KEY (category_id)
)
CREATE TABLE …
1
vote
1answer
49 views
Why would Entity Framework not be able to use ToString() in a LINQ statement?
This works in LINQ-to-SQL:
var customersTest = from c in db.Customers
select new
{
Id = c.Id,
Addresses = from a in …
2
votes
4answers
48 views
Full text search and Entity Framework v1: is it possible?
We're working in EFv1 and I'm implementing a search control with several filter options. Most of them I translate into .Where clauses and that is ok with EF.
But there is one specific filter that can …
1
vote
5answers
65 views
Where to place Business Entities, Enums, Custom exceptions?
I'm trying to figure out how to share my entities between the data, business, and UI tiers. Is it best to create a separate project for these entities that will be referenced by all the tiers? What …
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, …
