Tagged Questions

4
votes
2answers
720 views

Is it possible to update a sql database schema from an edmx in Visual Studio 2008?

So with LINQ-to-SQL I know you can update the database from the LINQ objects and update the LINQ objects from the SQL. I am using LINQ's entity framework (a.k.a. LINQ-to-entities) and I can update ...
3
votes
3answers
3k views

Using LINQ to Entity Framework with DB2

Is there an IBM Driver so we can use Linq to Entity framework to connect to DB2 and generate the DB2 entities on the desinger edmx file? Any links would be greatly appreciated
2
votes
1answer
221 views

.NET EntityStoreSchemaFilterEntry filter patterns

First question to SO, I hope I'm doing this right. ;) Regarding System.Data.Entity.Design.EntityStoreSchemaFilterEntry : I'm looking for some detailed documentation on this class. The MSDN docs have ...
1
vote
2answers
72 views

writing Linq-to-Entities query

I am new to LINQ and Entity Framework and I am stuck on a particular query which I am trying to write. I have a database with the below structure. To keep it simple, I have just included the files and ...
1
vote
2answers
1k views

Error 3002: Problem in mapping fragments | c# linq to entities

I have a console application and what I'm trying to do is that every time the appllication runs, the date and time is sent to a table within my database. The table structure is like so: FTPRuns ID ...
1
vote
0answers
186 views

better EdmGen2?

I'm using the microsoft EdmGen2 to generate my edmx file from my database. The tool works great, but there is one things missing - it doesn't support function. Is there a way to map all the stored ...
0
votes
1answer
16 views

Adding data to a DB table with Linq to Entities (EDMX) if the table doesn't have a primary key?

I'm attempting to add data to a table and linq to entities throws an excpetion with: Unable to update the EntitySet 'XXXX' because it has a DefiningQuery and no element exists in the element ...
0
votes
2answers
3k views

Update existing EntityCollection in Entity Framework

I try to work with link to entity, and i want to work directly with my entity in my application. using System; using System.Collections.Generic; using System.Linq; using System.Text; using ...
0
votes
1answer
218 views

edmx file to an XML document

Can I connect an edmx to an xml document instead of a sql database.If so how can this be done?
0
votes
2answers
3k views

using stored procedures as functions from edmx file

i have an entity-model file (edmx) file which contains few tables and few stored procedures. how can i call those stored procedures that are mapped to functions? i thought it should be trivial, and ...
0
votes
1answer
210 views

How can I get my table back after I remove it from my EDMX file in Linq-to-Entities?

I am having trouble with my Linq2Entities model - I might be missing something obvious here. Here is what I did: Added an EDMX model file Added TableX to the model Went back to SQL Management ...