The self-tracking-entities tag has no wiki summary.
21
votes
3answers
3k views
Self Tracking Entities vs POCO Entities
We are starting a new web based product in which we are planning to expose our business logic through WCF services. We will be using ASP.NET 4.0, C#, EF 4.0. In future we want to build iphone ...
19
votes
7answers
889 views
Asynchronously Lazy-Loading Navigation Properties of detached Self-Tracking Entities through a WCF service?
I have a WCF client which passes Self-Tracking Entities to a WPF application built with MVVM. The application itself has a dynamic interface. Users can select which objects they want visible in their ...
18
votes
2answers
3k views
What is the purpose of self tracking entities?
I've been reading about self-tracking entities in .net and how they can be generated from a *.edmx file. The thing that I'm struggling to understand is what generating these entities gives you over ...
13
votes
2answers
341 views
Why is entity still validated when it is gone?
Add a new entity to a TrackableCollection (context.Entities.Add(entity)) (EntityState = New)
Without saving, delete the added entity from TrackableCollection (context.Entities.Remove(entity)) ...
11
votes
2answers
6k views
EF4 POCO: Snapshot vs Self-tracking over WCF
Last year I developed a data access service for our project using Entity Framework (.NET3.5 of course) and using Julie Lerhman's book as a guide developed state tracking POCO objects. We use WCF and ...
9
votes
2answers
283 views
Using the lambda Include method in a compiled LINQ query
I'm currently trying to optimize some of the LINQ queries in my program by precompiling them.
Some of these queries make extensive use of eager loading; here's an example of one:
public static ...
6
votes
3answers
902 views
How would I know if I should use Self-Tracking Entities or DTOs/POCOs?
What are some questions I can ask myself about our design to identify if we should use DTOs or Self-Tracking Entities in our application?
Here's some things I know of to take into consideration:
We ...
5
votes
3answers
5k views
Self Tracking Entities - AcceptChanges cannot continue because the object's key values conflict with another object in the ObjectStateManager
I've been stuck with this problem for over a week now. Hopefully some one can point me in the right direction.
I start with a brief description of my schema.
Asset 1--->1 Address *-->1 Area *-->1 ...
4
votes
1answer
140 views
Entity Framework Split Table Delete
I'm using EF 4 STE's to model an Attachment object. The Attachment contains a Name, Description, Date, and most importantly Data (byte[]). To optimize loading, I don't want to retrieve the Data ...
4
votes
1answer
3k views
Difference between a Repository Implementation using ObjectContext vs DbContext on EF 4.1
What could be the better implementation for STE, I heard about that DbContext is the simplest way to implement a Repo with EF, personally I take advantage of the EntityState, but there is any member ...
4
votes
1answer
1k views
EF4: Difference between POCO , Self Tracking Entities , POCO Proxies
Can someone point me the difference between POCO , Self Tracking Entities , POCO Proxies?
Actually, I am working Entity Framework 4.0 and POCO(Repository Pattern) and whenever I do some changes in ...
4
votes
1answer
786 views
How do I get Entity Framework to only update the Properties modified in the SQL generated?
I am using Entity Framework with the Self-Tracking Entity T4 templates, which by default will generate a SQL Query setting all the properties on the Entity in an UPDATE statement. I only want an ...
3
votes
1answer
166 views
What are essential differences betweeen the different code generation items for EDMX model?
I'm trying to ramp up on the entity framework so I don't feel like I'm in the dark ages. I tried (and have thus far failed) to intuit from generated code what the essential differences bwtween the ...
3
votes
1answer
255 views
How to stop Self-tracking entity performing Add instead of Update
Apologies in advance for the length of this question!
I have a data structure from which the following Enity Data Model has been created (tables/fields renamed and simplified for ease of ...
3
votes
2answers
196 views
Self-tracking Entity - Tries to insert an unchanged entity when adding to collection
Using EF4 Self-tracking entities.
I have a "User" entity that has a collection of "Groups" the user can belong to. I want to add/remove some "Groups" to this user given just a list of Group IDs.
...
3
votes
0answers
260 views
EF4 STE include-path…exclude-path?
Context: Repository-pattern, WCF, WPF/SL
In my Repository of self-tracking Entities i need to explicitly load some related properties in order to correctly process the query. Those are not the ...
3
votes
1answer
381 views
Trouble updating self-tracking entities
I'm using self-tracking entities in a WCF client-server application. My WCF service returns various entities, and these can be updated using corresponding Update methods.
This worked well for a ...
3
votes
1answer
452 views
EF4 DAL design and the ObjectContext: Argument with co-worker
I work with a senior developer who is a guru .NET architect. We have had many constructive arguments over the last 6+ months and generally I concede defeat in most of our discussions. I have learned ...
3
votes
2answers
1k views
Are nullable foreign keys allowed in Entity Framework 4?
I have a problem updating a foreign key in an Entity Framework entity. I am using self tracking entities and have an entity with some relations where the foreign key is also present as a property (one ...
3
votes
1answer
754 views
What is the proper way to handle non-tracking self tracking entities?
Self tracking entities. Awesome.
Except when you do something like
return Db.Users;
none of the self-tracking entities are tracking (until, possibly, they are deserialized).
Fine. So we have ...
3
votes
4answers
1k views
Self Tracking Entities (STE)'s and partial updates with EF4 and mVC2
I have an MVC2 app where I am starting to use the STE's. I am looking for some clarification on how updates should work.
Background:
If I have a Blog entity with related category entities and ...
2
votes
3answers
94 views
Preventing StackOverflowException while serializing EF object graph into Json
I want to serialize an Entity Framework Self-Tracking Entities full object graph (parent + children in one to many relationships) into Json.
For serializing I use ServiceStack.JsonSerializer.
This ...
2
votes
1answer
71 views
Subscribing To The Self Tracking Entities PropertyChanged Event
I am writing a WPF application using Self-Tracking Entities. I'm having trouble Disabling/Enabling my Save button as my Model's values are changed. Normally with the regular Entity Framework Model I ...
2
votes
1answer
112 views
how to notify child object modifications to parent object using ObjectWithChangeTracker
Created Objects using Ado.net Self Tracking Entity Generator for maintain the state tracker. The Objects are User, Trainer. Trainer is the child object in User. When a information modified in Trainer, ...
2
votes
2answers
65 views
How to save self tracking entities in entity framework?
This is my database structure I have four tables. Table LocalArea and Lanungaue have master data and which refered by the tables Address and AddressTranslated
Now I want to add rows in Address ...
2
votes
2answers
188 views
EF + WCF in three-layered application with complex object graphs. Which pattern to use?
I have an architectural question about EF and WCF.
We are developing a three-tier application using Entity Framework (with an Oracle database), and a GUI based on WPF. The GUI communicates with the ...
2
votes
3answers
249 views
How do I undo all changes made to a Self-Tracking Entity?
I have a client application that downloads a number of STE's via WCF.
Using a WPF application, users can select an entity from a ListBox, and edit it via a popup UserControl. As the UserControl is ...
2
votes
2answers
182 views
Self Tracking Entities Traffic Optimization
I'm working on a personal project using WPF with Entity Framework and Self Tracking Entities. I have a WCF web service which exposes some methods for the CRUD operations. Today I decided to do some ...
2
votes
1answer
453 views
Empty reference.cs file adding service reference with reuse types option checked
Scenario
Visual Studio 2010
Silverlight 4
Entity Framework
Self-tracking entities
Problem
On the server side, we have generated entity objects using Entity Framework model. We have used self ...
2
votes
1answer
472 views
How to track entity changes with WCF Ria Services?
I need to log changes made to an entity that occur on the client to a database table. However, when I make changes and inspect the ChangeTracker property, it claims that no changes have occurred.
...
2
votes
1answer
354 views
Entity Framework Self Tracking Entities on a N-Tier application
This is a general architecture question, hopefully to folks out there already using EF in final applications.
We have a typical N-Tier application:
WPF Client
WCF Services
EF STE DTO's
EF Data ...
2
votes
2answers
307 views
Where to place the entity framework in our solution?
Okay, so we have a solution that contains the following projects:
BusinessLogic
Entities
DataAccess
Utilities
UnitTests
UserInterface
It is a very large enterprise-level application. My question ...
2
votes
1answer
558 views
EF4 Self-Tracking entities and WCF serialization creates stack overflow
I try to get above configuration working, but with no luck.
Step 1)
I started a new solution with a WCF Service Application project.
Step 2)
In this project, I added an edmx file and create a very ...
2
votes
2answers
510 views
Self Tracking Entities - Deleting from Navigation Property does not set state to 'Deleted'
In the constructor of each of my POCO's I have this:
this.StartTracking();
To ensure that tracking is turned on for every instance of one of my POCO's. I have an Entity A which contains a ...
2
votes
3answers
718 views
Should the entity framework + self tracking entities be saving me time
I've been using the entity framework in combination with the self tracking entity code generation templates for my latest silverlight to WCF application. It's the first time I've used the entity ...
2
votes
3answers
1k views
How to keep track of objects deleted from an ObservableCollection in CRUD scenarios?
In our multi-tier business application we have ObservableCollections of Self-Tracking Entities that are returned from service calls.
The idea is we want to be able to get entities, add, update and ...
1
vote
0answers
6 views
Entity Framework Self Tracking Entities - error calling StartTracking
I am using Self Tracking Entities with the Entity Framework and for some reason I am now getting an error when making a call to StartTracking() before I make changes to an entity.
My code is as ...
1
vote
0answers
11 views
Why doesn't WCFTestclient understand standard EF objects but understands STE objects
When I try to consume a WCF service which expose operations that return standard EF objects I receive a warning on these operations. The warning states "This operation is not supported in the WCF Test ...
1
vote
1answer
32 views
Entity Framework Self Tracking Entities - Synchronize between 2 databases
I am using Self Tracking Entities with the Entity Framework 4. I have 2 databases, with the exact same schema. However, tables in one database will be added to/edited etc (and I mean data will be ...
1
vote
1answer
69 views
STE as Data Contract?
Is there any way to share self tracking entities with client tier(from server tier wich is WCF) like Data Contract.
I mean, do not include any assembly with STE to client, just get them from server ...
1
vote
1answer
44 views
Entity Framework multiple data models
I have projection using EF 4.0 with self tracking entities it has one data model and everything is working fine. No I need to add a second model to to connect to a different database. As soon as I add ...
1
vote
0answers
25 views
How to handle Self-Tracking Entities InvalidOperationException
STEs throw two types of Exception:
UpdateException
InvalidOperationException
With UpdateException we can check the inner SQLExeption.Number to identify the the Exception (ex. 515=NullNotAllowed)
...
1
vote
1answer
191 views
WCF, Silverlight 5, Self Tracking Entities, and (de)serialization
I am working on a Silverlight applicaiton. It uses WCF services to pass EF 4 Self Tracking Entities back and forth from client to server.
Read methods are working fine to serve the Trackable entity ...
1
vote
1answer
619 views
Can I use Self Tracking Entities and DBContext in Entity Framework 4.1?
I want to know if DBContext (EF 4.1) supports Self Tracking Entities. If yes, how can I do that?
1
vote
2answers
440 views
Is it recommended to use Self Tracking Entities with WCF services?
I want to know if using Self Tacking Entities (in Entity Framework) is recommended with WCF services? If yes, then can you guide me to a tutorial which may guide how to do that?
Actually, I am going ...
1
vote
1answer
55 views
Entity Framework - Disconnexted Behavior in nTier
I am new to EF but I will try my best to describe the scenario. I have 3 tables in My DB namely RecommendationTopic, Recommendation and Question. Each RecommendationTopic can have multiple ...
1
vote
1answer
80 views
Self-Tracking Entities Clear collection
I have a STE and I want to clear navigation property collection like customer.Orders.Clear(). But Clear doesn't mark orders as Deleted so they won't be deleted on ApplyChanges call. Is there any ...
1
vote
1answer
192 views
Problem with EF STE and Self-Referencing tables
This is my first post here, so I hope everything is fine.
Here is my problem:
I have a table in my database called UserTypes. It has:
ID;
IsPrivate;
Parent_ID;
The relevant ones are the first and ...
1
vote
2answers
138 views
Getting the real State of SelfTracking Entities, including Navigation Properties
I would like to change the display of objects if they have unsaved changes. I thought I could just use ChangeTracker.State, but that doesn't change to Modified if I change a Navigation Property.
For ...
1
vote
2answers
374 views
Can a class inherit from Entity Framework class and still persist back to the DB using the inherited classes mappings?
Can a class inherit from Entity Framework class and still persist back to the DB using the inherited classes mappings? I have received errors trying to derive from a 'Self-Tracking Entity' class when ...