0
votes
2answers
32 views
How can I write custom comparison (definition for binary operator Equal) for entityframework object to an int?
I'm getting this error:
ex = {"The binary operator Equal is not defined for the types 'MySite.Domain.DomainModel.EntityFramework.NickName' and 'System.Int32'."}
What I tried to do was do a …
0
votes
0answers
1 views
How do I reference a linked table as a DataItem when bound to a DataSource?
I have 2 tables, Customizations and aspnet_Users. I bind the DataSource of a asp:Repeater to entities.Customizations.Include("aspnet_Users").ToList()
I of course can do the following from …
0
votes
0answers
12 views
How can I do an eager load when I don’t know the name of the property I want to load?
I have a generic repository and when I'm using a DoQuery method to select objects from the database, I need to load some of the related entities in order to not get nulls in the place of the fields …
1
vote
1answer
17 views
Entity framework objectcontext in windows application
We are writing a WPF application using Entity framework (Silverlight with RIA services to be precise). The problem is that we're using a shared ObjectContext through the application so that we can …
2
votes
1answer
26 views
How do you update a table with a foreign key to another table in ADO.Net Entity Model?
I have 2 tables, Table1 has a primary key 'CustomizationId', and Table2 has a FK Customizationid which matches this. Table2 has no primary key.
I am trying to add a new record from a web based form. …
2
votes
2answers
24 views
Linq, Entity Framework and WCF
If I have a customers and orders relationship in my Linq or EF model, at the WCF service layer I can add an order to the customer by calling
Customer.Orders.Add(customer);
When I access my …
2
votes
4answers
44 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?
2
votes
3answers
49 views
Soft Deletes ( IsHistorical column ) with EntityFramework
I'm working with a database where the designers decided to mark every table with a IsHistorical bit column. There is no consideration for proper modeling and there is no way I can change the schema.
…
0
votes
2answers
13 views
Inserting a record with specified primary key into MySQL via Entity Framework
Hello,
We began using Entity Framework with MySQL in our project recently. Now I am writing unit tests for the data access level; for that purpose I have created a database with some test data.
In …
0
votes
1answer
13 views
Entity Framework - Deleted association still appears in the second call
Hi,
We have a long entity framework context running (don't ask why...), with a query which retrieves a user entity with its associations:
var user = entities.UserSet.Include("UserAddresses")
…
0
votes
1answer
34 views
Unable set table mapping to Boolean = False
Hello folks!
I am trying to set an inheritance in Entity-Framework, I want to set the mapping when BooleanColumn = True.
I am unable to do so.
0
votes
1answer
51 views
Entity Framework TPH with multiple abstract inheritance
I'm trying to do a Table Per Hierarchy model in Entity Framework(VS 2008 sp1, 3.5).
Most of my models have been very simple, an abstract type with multiple sub-types that inherit from it.
However, …
4
votes
4answers
301 views
What is your opinion of the Entity Framework?
I have heard some bad things about the Entity Framework, and I am considering using it.
What is your opinion about it?
Should I learn it?
What are the strong points of it?
What are the weak points …
0
votes
1answer
36 views
Entity framework 3.5, mapping stored procedure results to custom entity
I tried to follow this link to map stored procedures to Custom Entities, but when I did so I could no open the EDMX file in the VS 2008 designer.
so looks like it is causing some issues.
Does anyone …
4
votes
3answers
145 views
Spatial data types support in Linq2Sql or EF4
Does anyone know (ideally, with a reference), whether the VS2010 release of LinqToSQL or EntityFramework v4 will support queries over the SQL 2008 spatial data types?
