active questions tagged entity-framework - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T03:22:10Zhttp://stackoverflow.com/feeds/tag/entity-frameworkhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1546806/entity-key-of-a-view-as-navigation-property1Entity key of a view as navigation propertyLukLed2009-10-10T01:46:57Z2009-11-29T02:56:48Z
<p>I have a table</p>
<p><code>
CREATE TABLE Tasks<br/>
( <br/>
ID INT IDENTITY(1,1) NOT NULL CONSTRAINT PRIMARY KEY PkTasks,<br/>
...other fields...<br/>
)
</code></p>
<p>and a view</p>
<p><code>
CREATE VIEW VTaskInfo<br/>
AS<br/>
SELECT<br/>
T.ID IDTask,<br/>
...other fields...<br/>
FROM <br/>
Tasks T
</code></p>
<p>How can I create navigation property connecting 'Task' and 'VTaskoInfo' entities? Usually defining navigation properties requires deleting id property, but this time property is primary key and can't be deleted. I could change VTaskInfo definition to</p>
<p><code>
CREATE VIEW VTaskInfo<br/>
AS<br/>
SELECT<br/>
T.ID IDTask,<br/>
T.ID ID,<br/>
...other fields...<br/>
FROM <br/>
Tasks T
</code></p>
<p>and specify ID as entity key and IDTask as navigation property, but I don't like this solution. Is there something else I can do?</p>
<p>How do you map views in EF?</p>
http://stackoverflow.com/questions/397227/flexible-design-customizable-entity-model-ui-and-workflow0Flexible design - customizable entity model, UI and workflowNgm2008-12-29T06:21:27Z2009-11-29T00:00:01Z
<p>Hi All,</p>
<p>I want to achieve the following aspects in the software I am building:
1. Customizable entity model
2. Customizable UI
3. Customizable workflow</p>
<p>I have thought about an approach to achieve this, I want you to review this and make suggestions:</p>
<ol>
<li>Entity objects should be plain objects and will hold just data</li>
<li>Separate Entity model and DB Schema by using an framework (like NHibernate?). This will allow easy modification of entity objects.</li>
<li>Business logic to fetch/modify entities has to be granular enough so that they can be invoked as part of the workflow. </li>
<li>Business objects should not hold any state, and hence will contain only static methods</li>
<li>The workflow will decide depending upon the "state" of an entity/entities which methods on business object/objects to invoke.</li>
<li>The workflow should obtain the results of the processing and then pass on the business objects to the appropriate UI screen.</li>
<li><p>The UI screen has to contain instructions about how to display a given entity/entites. Possibly the UI has to be generated dynamically based on a set of UI instructions. (like XUL)</p></li>
<li><p>What do you think about this approach?</p></li>
<li>Suggest which existing frameworks (like NHiberante, Window Workflow) fit into this model, so that I will not spend time on coding these frameworks</li>
<li>Also suggest is there any asp.net framework that can generate dynamic asp.net ajax pages based on a set of UI instructions (like Mozilla XUL)? </li>
</ol>
<p>I have recently been exploring Apache Ofbiz and was impressed by its ability to customize most areas of the application: UI, workflow, entities. Is there any similar (not necessarily an ERP system) application developed in C#/.Net which offers a similar level of customization? I am looking for examples of applications developed in C# that are highly customizable in terms of UI, Workflow and Entity Model</p>
http://stackoverflow.com/questions/1811843/entity-framework-v4-whats-the-difference-between-poco-vs-code-only0Entity Framework v4 - what's the difference between POCO vs Code-Only ?Pure.Krome2009-11-28T07:12:53Z2009-11-28T23:00:58Z
<p>Hi folks,</p>
<p>i'm under the impression that</p>
<ul>
<li>EF with POCO: allows you to map your own POCO's to the entities on the model (.edmx).</li>
<li>EF Code-Only: <em>no</em> edmx / model designer (ie. CSDL/SSDL/MSL (collectively EDMX) metadata). Still POCO's but the mappings, relationships, navigation, etc are all <em>manually</em> coded (hence the code-only, description).</li>
</ul>
<p>If this description of the two concepts is (more or less) correct, why would someone what to do a Code-Only instead of EF with POCO?</p>
<p>Both are doing POCO's, but the 2nd one has the extra burden of having to also do the mapping, manually?</p>
http://stackoverflow.com/questions/1803725/ria-services-ef-and-stored-procs0RIA services, EF and stored procsssandu2009-11-26T13:40:24Z2009-11-28T10:41:56Z
<p>I have this problem for 2 months now</p>
<p>How can I use stored procedures whith RIA.</p>
<p>I was using LinqToSql and everithing works fine.</p>
<p>I've made an class in designer and mapped it to a SP.</p>
<p>Now in EF I saw this ComplexTypes I've imported son SP with result in ComplexTypes.</p>
<p>But in DomainDataSource are not appear.</p>
<p>OK.</p>
<p>But how can I use them ?</p>
<p>I need only to retreive some data.</p>
<p>I've tried all solutions (List, IList, etc.) but I get </p>
<p>Unable to cast object of type 'System.Data.Metadata.Edm.ComplexType' to type 'System.Data.Metadata.Edm.EntityType'. BusinessApplication2</p>
<p>Any solutions please ?</p>
http://stackoverflow.com/questions/929385/whats-the-easiest-way-to-refresh-entity-model-after-adding-deleting-db-fields0What's the easiest way to refresh Entity Model after adding/deleting DB fields?Andy2009-05-30T08:52:48Z2009-11-28T08:44:37Z
<p>Hi,
Does anyone know what the esiest way to update the entity model after adding/deleting the fields in the database?</p>
<p>I am adding a few new fields to my database, then choose "Update Model from DB" and nothing happens. The model stays intact. Did anyone encounter the same problem?</p>
<p>Thanks for any feedback!</p>
http://stackoverflow.com/questions/1806518/using-entity-framework-with-different-version-sql-server0Using Entity Framework with different version SQL ServerRoy2009-11-27T02:39:13Z2009-11-28T01:15:03Z
<p>Hi all,</p>
<p>I think most of you may work with the latest version of SQL Server and deploy it to the target machine which have a relative old version on it. Like using SQL Server 2008 on production machine and SQL Server 2005 on target server. While working in such situation with Entity Framework, It made me a little bit frustrated.</p>
<p>I designed the database schema using SQL Server 2008, have table field of datatime type. the application works fine on my machine. But on the target server, the entity framework generate T-SQL query for SQL Server 2008, which will cause a data type not support exception(datatime2). The only walk around I know is to modify ProviderManifestToken in the edmx file everytime you update the entity model. Is there any way to do this work smarter? Thanks!</p>
http://stackoverflow.com/questions/1805816/change-entity-framework-database-at-runtime0Change Entity framework database at runtimeunknown (google)2009-11-26T21:46:11Z2009-11-27T22:14:21Z
<p>In most asp.net applications you can change the database store by modifing the connectionstring at runtime. i.e I can change from using a test database to a production database by simply changing the value of the "database" field in the connectionstring</p>
<p>I'm trying to do the same thing with entity framework but no luck.</p>
<p>The problem I'm seeing is the that the SSDL content in the edmx xml file is storing the schema for each entityset.
see below
</p>
<p>Now I have changed the schema attribute value to "prod" from test and it works.. </p>
<p>But this does not seem to be a good solution.
1) I need to update evert entity set as well as stored procedures ( I have +50 tables )
2) I can only do this an compile time?
3) If I then try to later update the Entity model-entityies that already exist are being read due to EF not recognizing that the table already exists in the edm.</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/1810409/is-this-an-efficient-query-linq-to-entities1Is this an Efficient Query -- Linq to EntitiesLuke1012009-11-27T19:47:27Z2009-11-27T20:08:32Z
<p>I am setting up a question and answer site. The database is setup to where the questions and answers are in the same table. The questions have a parentid of null and answers and a value in the parentid. Also, comments has a separate table. In the comments table it has foreign key referencing the question and answer table. </p>
<pre><code>var qu = (from q in context.post
where q.post_id == id && q.post_isdeleted == false
orderby q.post_id ascending, q.post_date ascending
select new
{
q.userinfo.user_username,
q.post_id,
q.userinfo.user_userid,
q.post_descriptionrender,
q.post_description,
q.post_title,
q.post_titleslug,
q.post_date,
q.category.catid,
q.post_hits,
q.post_wordcount,
PostAnswers = from a in context.post
where a.post_parentid == id
select new
{
a.post_id,
a.post_date,
a.userinfo.user_userid,
a.post_description,
a.userinfo.user_username,
PostAnswerComments = from c1 in context.comment
where c1.post.post_id == a.post_id && c1.comment_isdeleted == false
select new
{
c1.comment_date,
c1.comment_id,
c1.comment_text,
c1.comment_textrender,
c1.userinfo.user_userid,
c1.userinfo.user_username,
c1.post.post_id
}
},
PostComments = from c in context.comment
where c.post.post_id == q.post_id && c.comment_isdeleted == false
select new
{
c.comment_date,
c.comment_id,
c.comment_text,
c.comment_textrender,
c.userinfo.user_userid,
c.userinfo.user_username,
c.post.post_id
}
}).FirstOrDefault();
</code></pre>
<p>Basically, the query gets a question. Within the query it gets the answers and comments for the question. is there a more efficient way to do this?</p>
http://stackoverflow.com/questions/1809952/what-is-equivalent-getpropvaluet-method-in-l2e0What is equivalent GetPropValue<T> method in L2E ?Renato Bezerra2009-11-27T17:46:16Z2009-11-27T18:42:36Z
<p>Hi people.</p>
<p>I´m have a problem using EF for my data model.</p>
<p>I have this code in my method:</p>
<pre><code> listaPaginada = sortOrder.Equals("asc") ?
_cadastroServ.SelecionaNotasFiscais(idParceiro).OrderBy(i => i.GetType().GetProperty(query)) :
_cadastroServ.SelecionaNotasFiscais(idParceiro).OrderByDescending(i => i.GetType().GetProperty(query));
</code></pre>
<p>i´m using the same method hear to:</p>
<pre><code>Func<NotaFiscal, bool> whereClause = (i => i.GetPropValue<string>(sortName).Contains(query));
listaPaginada = sortOrder.Equals("asc", StringComparison.CurrentCultureIgnoreCase) ?
_cadastroServ.SelecionaNotasFiscais(idParceiro).Where(whereClause).OrderByDescending(i => i.GetPropValue<IComparable>(sortName)) :
_cadastroServ.SelecionaNotasFiscais(idParceiro).Where(whereClause).OrderBy(i => i.GetPropValue<IComparable>(sortName));
</code></pre>
<p>In L2SQL the method GetPropValue exists, but in L2E not.</p>
<p>Someone knows a similar method in L2E ?
or knows how to solve this ? </p>
<p>Regards[]</p>
http://stackoverflow.com/questions/1806828/optimisticconcurrencyexception-sql-2008-r2-instead-of-insert-trigger-with-enti1OptimisticConcurrencyException -- SQL 2008 R2 Instead of Insert Trigger with Entity FrameworkPaulWaldman2009-11-27T04:58:50Z2009-11-27T04:58:50Z
<p>Hi,</p>
<p>Using a SQL 2008 R2 November release database and a .net 4.0 Beta 2 Azure worker role application. The worker role collects data and inserts it into a single SQL table with one identity column. Because there will likely be multiple instances of this worker role running, I created an Insert Instead Of trigger on the SQL table. The trigger performs Upsert functionality using the SQL Merge function. Using T-SQL I was able to verify the insert instead of trigger functions correctly, new rows were inserted while existing rows were updated.
This is the code for my trigger:</p>
<pre><code>Create Trigger [dbo].[trgInsteadOfInsert] on [dbo].[Cars] Instead of Insert
as
begin
set nocount On
merge into Cars as Target
using inserted as Source
on Target.id=Source.id AND target.Manufactureid=source.Manufactureid
when matched then
update set Target.Model=Source.Model,
Target.NumDoors = Source.NumDoors,
Target.Description = Source.Description,
Target.LastUpdateTime = Source.LastUpdateTime,
Target.EngineSize = Source.EngineSize
when not matched then
INSERT ([Manufactureid]
,[Model]
,[NumDoors]
,[Description]
,[ID]
,[LastUpdateTime]
,[EngineSize])
VALUES
(Source.Manufactureid,
Source.Model,
Source.NumDoors,
Source.Description,
Source.ID,
Source.LastUpdateTime,
Source.EngineSize);
End
</code></pre>
<p>Within the worker role I am using Entity Framework for an object model. When I call the SaveChanges method I receieve the following exception:</p>
<pre><code>OptimisticConcurrencyException
Store update, insert, or delete statement affected an unexpected number of rows (0). Entities may have been modified or deleted since entities were loaded. Refresh ObjectStateManager entries.
</code></pre>
<p>I understand this is likly due to SQL not reporting back an IdentityScope for each new inserted/updated row. Then EF thinks the rows were not inserted and the transaction is not ultimately not committed. </p>
<p>What is the best way to handle this exception? Maybe using OUTPUT from the SQL merge function?</p>
<p>Thanks!
-Paul</p>
http://stackoverflow.com/questions/1804645/how-to-set-an-fk-column-value-without-retrieve-it0How to set an FK column value without retrieve itYucel2009-11-26T16:31:40Z2009-11-27T01:26:11Z
<p>Hi, i want to set a new value to my entity objects FK column, but i cant find the property to set. I dont want to get record from db.</p>
<p>I have a db like that</p>
<p><strong>Db Tables:</strong></p>
<pre><code>Concept ConceptType
-Id (PK) -Id(PK)
-Name -Name
-ConceptTypeId(FK) (ALLOW NULL)
</code></pre>
<p><strong>Code:</strong></p>
<pre><code>Concept conceptToUpdate = new Concept() { Id = 1 };
ConceptType conceptType = new ConceptType() { Id = 5 };
db.AttachTo("Concept", conceptToUpdate);
db.AttachTo("ConceptType", conceptType);
conceptToUpdate.ConceptType = conceptType;
db.SaveChanges();
</code></pre>
<p>This code is working if ConceptTypeId(FK) column is NULL before. If it is not NULL it gives exception. I trace the sql query, the problem is on sql query because it is checking that old value is NULL :S</p>
<p><strong>SQL QUERY: (from SQL Profiler)</strong></p>
<pre><code>exec sp_executesql N'update [dbo].[Concept]
set [ConceptTypeId] = @0
where (([Id] = @1) and [ConceptTypeId] is null)
',N'@0 int,@1 int',@0=5,@1=1
</code></pre>
http://stackoverflow.com/questions/1800732/asp-net-mvc-how-to-add-order-orderdetails-objects-using-entityframework0Asp.net MVC-How to add order-orderDetails objects using EntityFramework?Gabriel Robert2009-11-25T23:44:25Z2009-11-26T22:05:12Z
<p>I have an application that uses one-to-many relationshipped objects like oreder-orderDetails, vith EntityFramework.</p>
<p>I want to use a view, that make it possible to add a new order with some orderDetails objects.</p>
<p>I can create a strongly typed view, that returns an order object wich has a List orderDetails property, but can't populate the orderDetails.</p>
<p>Has anybody a solution, how to do that?</p>
<p>Thanks in advance </p>
<p>Gabriel</p>
http://stackoverflow.com/questions/1781679/devarts-dotconnect-for-oracle-vs-datadirects-ado-net-data-provider1DevArt's dotConnect for Oracle vs DataDirect's ADO.NET data providerCVD2009-11-23T07:54:14Z2009-11-26T15:46:06Z
<p>Has anybody done a comparative analysis of dotConnect for Oracle from DevArt and the <a href="http://www.datadirect.com/products/net/net%5Ffor%5Foracle/index.ssp" rel="nofollow">ADO.NET data provider from DataDirect</a>.</p>
<p>We are thinking of using the Entity Framework support available in these frameworks for a critical enterprise application. Some articles that I read suggest the following:</p>
<ol>
<li>DevArt dotConnect is much faster as compared to DataDirect</li>
<li>DataDirect license is more expensive that the DevArt license</li>
</ol>
<p><strong>Can anybody throw more light on the technical aspects so as to aid the decision making process?</strong></p>
http://stackoverflow.com/questions/1772064/entity-framework-map-multiple-tables-to-one-entity0Entity Framework map multiple tables to one entityJacob Adams2009-11-20T17:30:05Z2009-11-26T14:46:49Z
<p>I have a database with a table for active orders and one for inactive orders. I would like to model this in Entity Framework as one entity called Orders. I also need a way to determine if an order in this collection is active or not, preferably by having a status property on the entity that is set according to what table it is in. Is there anyway to do this using Entity Framework 1. What about in Entity Framework 4?</p>
http://stackoverflow.com/questions/1787645/is-it-easier-to-go-from-linqtosql-to-ef4-0-or-ef3-5-to-ef4-00Is it easier to go from LinqToSQL to EF4.0 or EF3.5 to EF4.0?webdtc2009-11-24T03:46:36Z2009-11-26T14:22:17Z
<p>Now that Entity Framework 4.0 is coming out I was wondering, if you were planning to use EF 4.0 when it is released would it be easier to go from LinqToSQL to EF 4.0 or EF 3.5 to 4.0?</p>
<p>In other words if you were starting a project now anticipating using EF4.0 would you use LinqToSQL or EF3.5 now?</p>
http://stackoverflow.com/questions/1793374/map-relationship-with-entity-framework0Map relationship with Entity Frameworkjdc05892009-11-24T22:29:30Z2009-11-26T14:06:06Z
<p>Maybe im just an idiot, but I am having serious issues mapping relationships with the new entity framework. </p>
<p>When using LinqToSql, you would just right click the table, add association, select the two tables, and selected the property from each table the association was based on. End of story, it worked perfectly.</p>
<p>Using the entity framework and the slightly different visual editor, I go about doing the same thing, but there is no option in the initial association menu to select the actual properties. So after that, you bring up the association map, and thats where the problems start... What the hell? The only thing you can edit in here is the column to which a key is mapped, but the only columns you can choose are those in the same table as the key... Im completely lost.</p>
http://stackoverflow.com/questions/898260/entitykey-and-applypropertychanges1EntityKey and ApplyPropertyChanges()Zack Peterson2009-05-22T14:50:03Z2009-11-26T10:42:45Z
<p>I need to set an EntityObject's EntityKey. I know its type and its id value. I don't want to query the database unnecessarily.</p>
<p>This works...</p>
<pre><code>//
// POST: /Department/Edit/5
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(Guid id, Department Model)
{
Model.EntityKey = (from Department d in db.Department
where d.Id == id
select d).FirstOrDefault().EntityKey;
db.ApplyPropertyChanges(Model.EntityKey.EntitySetName, Model);
db.SaveChanges();
return RedirectToAction("Index");
}
</code></pre>
<p>This fails...</p>
<pre><code>//
// POST: /Department/Edit/5
[AcceptVerbs(HttpVerbs.Post)]
public ActionResult Edit(Guid id, Department Model)
{
String EntitySetName = db.DefaultContainerName + "." + Model.GetType().Name;
Model.EntityKey = new System.Data.EntityKey(EntitySetName, "Id", Model.Id);
db.ApplyPropertyChanges(Model.EntityKey.EntitySetName, Model);
db.SaveChanges();
return RedirectToAction("Index");
}
</code></pre>
<p>The <em>ApplyPropertyChanges()</em> line fails with this exception:</p>
<blockquote>
<p>The ObjectStateManager does not
contain an ObjectStateEntry with a
reference to an object of type
'Sample.Models.Department'.</p>
</blockquote>
<p>The two EntityKeys are equal. Why does the second block of code fail? How can I fix it?</p>
http://stackoverflow.com/questions/1153672/subsonic-3-vs-entity-framework2Subsonic 3 VS Entity FrameworkShuaib2009-07-20T13:42:35Z2009-11-26T09:39:01Z
<p>Anyone worked with Subsonic3 and Entity Framework here who can tell me the pros and cons?
This is my first time attempting to try these. Subsonic is easy to setup so as the Entity Framework. I am not sure if Entity Framework works with other databases as SubSonic does like MySql PGsql etc...?
I read this post (<a href="http://www.timacheson.com/Blog/2009/jun/entity_framework_vs_subsonic" rel="nofollow">http://www.timacheson.com/Blog/2009/jun/entity_framework_vs_subsonic</a>) which is convincing enough to chose Entity Framework over SubSonic. But I wanted a second opening.</p>
http://stackoverflow.com/questions/1799661/using-entity-framework-generated-classes-in-business-logic-layer1Using Entity Framework generated classes in Business Logic LayerSorinA.2009-11-25T20:13:05Z2009-11-26T07:05:29Z
<p>I have a ASP.net (C#) project that is using a three layer architecture. I started to use Entity Framework in my DAL and the question is to what extent classes generated by Entity Framework can be used in the Business Logic Layer? </p>
<p>It is a good idea to use them directly or should i create my own business objects and map to them from Entity Framework(db->O/RM->BOs)?</p>
http://stackoverflow.com/questions/1314523/spatial-data-types-support-in-linq2sql-or-ef42Spatial data types support in Linq2Sql or EF4Colin Desmond2009-08-21T22:47:54Z2009-11-25T15:01:36Z
<p>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?</p>
http://stackoverflow.com/questions/1796223/simple-relational-problem0Simple relational problemmolgan2009-11-25T11:07:55Z2009-11-25T13:08:53Z
<p>Hello</p>
<p>I'm using entity framework with 3.5 sp1, and I've come across a strange problem. I have a 1 to many relationship and I cant seem to add a value for it.</p>
<p>I have a table "Bookings" and FK in table "Users" (nullable) and FK in table "BookingObjects"</p>
<p>so:</p>
<p>Users 0..1 <-> * Bookings * <-> 1 BookingObjects</p>
<p>Table: Users
Entity: User
Setname: Users</p>
<p>Table: Bookings
Entity: Booking
Setname: Bookings</p>
<p>Table: BookingObjects
Entity: BookingObject
Setname: BookingObjects</p>
<p>I have in my code:</p>
<pre><code>b.UsersReference.EntityKey = new System.Data.EntityKey("BookingsystemEntities.Users", "UserID", 2);
b.BookingObjectsReference.EntityKey = new System.Data.EntityKey("BookingsystemEntities.Bookings", "BookingObjectID", 2);
b.BookingCreated = DateTime.Now;
</code></pre>
<p>(both values = 2 exists)</p>
<p>For some reason it gives error when I try to add value for BookingObjectsReference.EntityKey that says:</p>
<p>"You can not define the relationship because EntitySet name BookingsystemEntities.Bookings is not valid for her role in the association BookingObjects volume name BookingsystemEntities.FK_Bookings_BookingObjects." (I have swedish errors so I'm not sure google translated correctly)</p>
<p>Not sure but shouldnt it be BookingsystemEntities.BookingObjects.FK_Bookings_BookingObjects? might be wrong there?</p>
<p>I have several 1 to many relations that works and I cant seem to find what is different with the FK_Bookings_BookingObjects one....</p>
<p>Do anyone have any ideas might be wrong here? I'm running out of ideas, it all looks right</p>
<p>/M</p>
http://stackoverflow.com/questions/1768594/properly-updating-in-entity-framework0Properly Updating in Entity FrameworkBaddie2009-11-20T05:57:36Z2009-11-25T10:02:29Z
<p>I've recently switched my ASP.NET MVC app from Linq to Sql to Entity Framework (.NET 4).</p>
<p>I'm having major issues with updating an object.</p>
<p>My questions are:</p>
<ol>
<li>When does an entity become detached?</li>
<li>If I declare an entity object as a parameter in an action, then when a post is done to that action with values that go into the entity object, is it a detached object?</li>
<li>I've seen numerous ways to update an entire object/entity, what is the "right" way?</li>
</ol>
<p>One of the biggest issues I've faced is that the following code works for some objects, but not for others (this is located in my repository):</p>
<pre><code> db.Users.Attach(user);
db.ApplyCurrentValues("Users", user);
db.SaveChanges();
</code></pre>
<p>Where db is an entities data context.</p>
<p>For certain repositories, it only works if I omit the first line. I've taken a look at how the update code is called, and in all cases, its the same exact thing, IE:</p>
<pre><code> [HttpPost]
public ActionResult EditSomething(SomeObject myobject)
{
SomeObjectRepository.Update(myobject);
}
</code></pre>
<p>This works sometimes, other times the update doesn't' go through at all with no errors at all.</p>
<p>More questions:</p>
<p>5.If I have multiple repositories in a wrapper class, and each repository creates its own Entities Data Context, would there be conflict in data retrieval/updating (assuming each repository only deals with its respective object?)</p>
<p><strong>UPDATE</strong></p>
<p>Sometimes when I omit the first line, I get the following error:</p>
<pre><code>An object with a key that matches the key of the supplied object
could not be found in the ObjectStateManager.
Verify that the key values of the supplied object match the key
values of the object to which changes must be applied.
</code></pre>
<p>To over come this, I did the following:</p>
<pre><code>db.ObjectStateManager.ChangeObjectState(myCar, System.Data.EntityState.Modified);
</code></pre>
<p>after attaching the object. </p>
<p>But is this required sometimes, but not other times?</p>
http://stackoverflow.com/questions/1795555/linq-to-entities-replace-a-select-with-a-groupjoin0LINQ to Entities, replace a .Select() with a .GroupJoin()CodeMonkey2009-11-25T09:01:04Z2009-11-25T09:01:04Z
<p>Hi.</p>
<p>I'm trying to construct an object-graph consisting of Data Transfer Objects (DTO) generated from a LINQ query. But I am having an issue with only selecting the rows from the DB that are relevant.</p>
<p>I am getting the FULL tree with NULL-values all over the place because of my .Select() usage which correlates with LEFT OUTER JOIN.</p>
<p>What I really need is INNER JOIN. </p>
<p>I've read through som posts and found that the extension-method I need to use is .GroupJoin(), but I seem to have trouble wrapping my brain around understanding how to write it.</p>
<p>Now for some code:</p>
<pre><code> var interval = new RegistrationIntervalDTO()
{
Customers = CustomerRepository.FindAllCustomers().Select(c => new CustomerDTO()
{
//customer
BackendId = c.BackendId,
CustomerId = c.CustomerId,
Name = c.Name,
LastUpdated = c.LastUpdated,
Projects = c.Project.Select(p => new ProjectDTO()
{
//project
BackendId = p.BackendId,
ProjectId = p.ProjectId,
Active = p.Active,
CompanyId = p.CompanyId,
LastUpdated = p.LastUpdated,
Name = p.Name,
Phases = p.Phase.Select(ph => new PhaseDTO()
{
//phase
BackendId = ph.BackendId,
PhaseId = ph.PhaseId,
Name = ph.Name,
LastUpdated = ph.LastUpdated,
Activities = ph.Activity.Select(a => new ActivityDTO()
{
//activity
ActivityId = a.ActivityId,
BackendId = a.BackendId,
EndDate = a.EndDate,
LastUpdated = a.LastUpdated,
Name = a.Name,
TimeRegistrations = a.TimeRegistration.Select(t => new TimeRegistrationDTO()
{
//timeregistration
TimeRegistrationId = t.TimeRegistrationId,
Approved = t.Approved,
Date = t.Date,
Hours = t.Hours,
Note = t.Note,
PrivateNote = t.PrivateNote,
Transferred = t.Transferred,
ContactName = t.ContactName,
Resource = new ResourceDTO() {
ResourceId = t.Resource.ResourceId,
CompanyId = t.Resource.Company.CompanyId,
Initials = t.Resource.Initials,
Name = t.Resource.Name,
LastUpdated = t.Resource.LastUpdated
},
//kind
Kind = new KindDTO() {
BackendId = t.Kind.BackendId,
KindId = t.Kind.KindId,
LastUpdated = t.Kind.LastUpdated,
Name = t.Kind.Name
}
}).Where(t => t.Resource.Initials.Equals("XXXXXXXX"))
}).OrderBy(a => a.Name)
}).OrderBy(ph => ph.Name)
}).OrderBy(p => p.Name)
}).OrderBy(c => c.Name)
.ToList()
};
</code></pre>
<p>What this code does is, get all customers and load them into CustomerDTOs, then for each customer, get all Projects and load them into ProjectDTOs, then for each project get all Phases, and load the into PhaseDTOs, and so forth.</p>
<p>The criteria I set will be a date-interval and a resource's initials.</p>
<p>Currently I am getting every single customer and project etc. and all I need are the ones where there is a Resource and that Resource's initials equals some string 'XXX'</p>
<p><strong>Additional aid regarding Repositories</strong></p>
<p>I can make any additional repositories if they are needed. </p>
http://stackoverflow.com/questions/339394/asp-net-data-access-layer-is-using-sqlhelper-cs-bad2ASP.NET Data Access Layer. Is using sqlhelper.cs bad?beverage2008-12-04T01:57:51Z2009-11-25T08:43:43Z
<p>I'm about to start a new .net web project.
Previsouly for my n-layer web apps i've used the "Microsoft Data Access Application Block" (sqlhelper.cs) for the data access, then an interface class to interface with the object classes. I'm aware this technique is a bit dated and was looking to use something a little more with the times.</p>
<p>I've looked into LINQ to SQL for data access but was restricted by lacking the many to many relationship.
The entity framework was a whole differnet approach that appears to have too larger learning curve.</p>
<p>Would there be anything wrong with using the sqlhelper.cs class to handle my data access?</p>
http://stackoverflow.com/questions/1794653/a-sql-2005-database-design-and-entity-framework-transaction-conundrum0A SQL 2005 Database Design and Entity Framework transaction conundrummrlane2009-11-25T04:34:58Z2009-11-25T04:34:58Z
<p>Hello. I have a database design issue that I am trying to also fit into Entity Framework. Its complex, I have inherited it and its too late to make drastic changes! I want to draw on others wisdom before I make a decision about how to go forwards...my original post was much longer, but I think the business logic details are probably not important.</p>
<p>So to state the problem simply, say I have two tables in the same database:</p>
<h2>TableA</h2>
<p>Id,
(other columns...)</p>
<h2>TableB</h2>
<p>Id,
TableId (<--- soft key),
TableTypeId,
(other columns...)</p>
<p>Now TableB has a "soft key" to table A, that normally could be a Foreign Key, but with the schema I have it isn't, and trust me it can't be (the reason is that "fake foreign key" points at any one of 76 different tables depending on what is in TableB's "TableTypeId" column).</p>
<p>Now, we are using Entity Framework. Clearly there cannot be a Navigation Property between the two tables. The problem is I need to work across these two tables in a single transaction. For example, when I add a record to TableA, I need to also add a record to TableB and use the new Identity value created in TableA for the TableB's "TableId" column.</p>
<p>With a Navigation Property, I can connect the two EntityObjects in memory and then call Context.SaveChanges() and EntityFramework does it all in a transaction. However without a Navigation Property I have to insert into TableA first, get the Identity and then insert into TableB using the results of the first insert. THis is two transactions...</p>
<p>I have heard that Entity Framework allows you do to more things with transactions in more complex situations, such as defining your own transaction scopes and using other parameters to COntext.SaveChanges(). Before I try this, however, I would like to know if my problem is solveable in a single transaction...</p>
<p>What options do I have here other than a schema redesign...</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1153089/how-do-i-correctly-bind-child-entities-in-a-datagridview0How do I correctly bind child entities in a DataGridView?Calanus2009-07-20T11:44:59Z2009-11-25T04:00:03Z
<p>I have a DataGridView bound to an entity framework object called "Person". All the main fields of person such as Name etc show correctly, but the fields that are referenced to child tables (e.g. "Place of Birth") only show the entity name/type in the datagridview.</p>
<p>How do I navigate through to correctly show the values of child entities in a DataGridView?</p>
http://stackoverflow.com/questions/1382909/derived-fields-in-ado-net-entity-framework0Derived fields in ado.net entity frameworkmglmnc2009-09-05T09:52:44Z2009-11-25T02:00:04Z
<p>I have a persistent class that looks like this:</p>
<pre>
public partial class Unit
{
public string Name { get; set; }
public long LengthInMM { get; set; }
public decimal VolumeCoefficient
{
get { return LengthInMM * LengthInMM * LengthInMM; }
}
}
</pre>
<p>Now the derived field (VolumeCoefficient) never gets explicitly assigned. How do I save it in ADO.NET entity framework?</p>
<p>I thought of subclassing the Unit class and overriding the getters and setters but that seems too messy.</p>
http://stackoverflow.com/questions/1793817/replace-linq-to-entity-value-in-projection0Replace Linq to Entity value in Projection Redeemed12009-11-24T23:58:30Z2009-11-25T00:09:27Z
<p>I want to relace a value retrieved from a L2E projection to an expanded string.</p>
<p>The table contains a column called Status which can have a value "0" or "1" and in my L2E I have </p>
<pre><code>var trans = from t in db.Donation
select new DonationBO()
{
Status = t.Status
};
</code></pre>
<p>What I want is to return either of the strings "Pending" or "Committed" instead of "0" or "1".</p>
<p>How can I do this here?</p>
http://stackoverflow.com/questions/1793030/strange-where-behaviour-somebody-has-an-explanation2Strange .Where() behaviour. Somebody has an explanation?Peterdk2009-11-24T21:26:55Z2009-11-24T21:52:47Z
<h2>Original</h2>
<p>I don't get why the Where() clause doesn't give me the right results in the last example.<br>
It isn't any different is it? Why does C# behaves differently?</p>
<pre><code>transactions = IEnumerable<Transaction> //pseudocode
//This works: It gives me the transaction I need.
DateTime startDate = DateTime.Parse(parameter.Constraint);
transactions = transactions.Where(T => T.date >= startDate);
//This doesn't work... No actual code changed, only the way of writing it...
//I get 0 results.
transactions = transactions.Where(T => T.date >= DateTime.Parse(parameter.Constraint));
</code></pre>
<h2>Edit</h2>
<p>Ok, it is indeed relevant to mention that transactions is loaded using Entity Framework.</p>
<pre><code>transactions = this.db.Include("blablabla").OrderByDescending(T => T.date);
</code></pre>
<p>Maybe that's why it's doing weird? Because of the way Entity Linq works?</p>
http://stackoverflow.com/questions/784562/datacontractserializer-how-to-serialize-classes-members-without-datacontract-dat2DataContractSerializer: How to serialize classes/members without DataContract/DataMember attributesaleemb2009-04-24T04:51:01Z2009-11-24T21:43:20Z
<p><code>DataContractSerializer</code> requires classes and members to be marked with the <code>DataContract</code> and <code>DataMember</code> attributes. However, in my case the classes are auto-generated with the EFPocoAdapater framework and these attributes are not present.</p>
<p>How can I force serialization of all members using the DataContractSerializer without these attributes being present?</p>
<blockquote>
<p>From Alexdej:</p>
<p>This changed in 3.5SP1, hope you saw
that:
<a href="http://www.pluralsight.com/community/blogs/aaron/archive/2008/05/13/50934.aspx" rel="nofollow">http://www.pluralsight.com/community/blogs/aaron/archive/2008/05/13/50934.aspx</a></p>
</blockquote>