0
votes
1answer
24 views

real time project with ORM

Often heard that the performance of any ORM can not achieve the performance of a direct connection via ADO.Net, is this true? I'm riding an application that is in real time and I am in dilemma to ...
0
votes
1answer
45 views

Entity splitting with optional relation - (EF code first)

I have 2 tables: an Orders table and an OrderActivity table. If no activity has been taken on an order, there will be no record in the OrderActivity table. I currently have the OrderActivity table ...
-2
votes
2answers
60 views

what is entity framework ? why should i use it ? can i use it without linq? [closed]

I have read some documents about Entity framework, so i came to know that it makes entities like our database(ORM). i tried to go deeper but i don't get satisfactory answer. i want to know why and ...
12
votes
3answers
295 views

Entity Framework 5 wrong data type in query

We are using EF 5.0 as our ORM of choice in our business solution, structured in a n-layer fashion with everything decoupled and a nice composition root with ninject. Lately, we've been building a ...
0
votes
0answers
14 views

Extending an Entity Framework model via inheritance

I have an EF model that supports some basic functions that I'd like to reuse in several different applications: [Core.dll] CoreModel - Users - Clients I'd like to take this model, and extend it ...
0
votes
0answers
11 views

Entity Framework and LINQ: Is there anyway to auto reflect the renamed entity in LINQ query

I was trying to change the table names in the entity model or database but the old names are already use in many places in the application. Is there any way to auto reflect renamed entities or tables ...
0
votes
1answer
39 views

Map SQLite database with EF

I have a simple SQLite database and I am wondering if I can use EF to map SQLite database? Is it possible? Thanks for help!
1
vote
2answers
34 views

Entity Framework v5.0 Exception 'From' is a reserved keyword and cannot be used as an alias, unless it is escaped

I use EntityFrameWork v5.0, EntityDataSource control. In code I set SQL query, but when I open page after compilation I get exception. How can I fix it? Code: entryListDs.CommandParameters.Add(new ...
0
votes
1answer
25 views

How can I avoid using Microsoft custom tools that generate code for Entity Framework?

Microsoft's tendency to give custom tools that generate code within Visual Studio is Not always appealing to me. In terms for Entity Framework, I want to avoid using the Db Context Template or ...
0
votes
1answer
35 views

ORM designer for end user [closed]

Feature based development makes our team provide different databases for each feature branch. Databases can differ by scheme but all data comes from one "master" db. We use Entity Framework and POCO ...
0
votes
0answers
86 views

Telerik ORM User defined types

I have a SQL table called "Person" and it has columns below: Id uniqueidentifier, Name varchar(50), LastName varchar(50), Phone varchar(20), email varchar(100), Address vatchar(150), City ...
0
votes
1answer
32 views

Best Way to convert one Edmx Entity to one Business entity

I am developing one application in which data is access from edmx entities and from that we have to fill each business entity after retriving data from edmx entity like:- var tblproducts = ...
3
votes
1answer
82 views

EntityFramework - many-to-many reference in the DB without a backreference in the model

In my application users can define Parameters, and then create SlideSets based on a grouping of parameters. I am using code-first Entity Framework 5.0 and I have the following model: class ...
1
vote
3answers
122 views

Entity Framework turns Pure Junction Look Up Tables into Many to Many relationship

I have just recently started working with Entity Framework within an ASP.NET project (which I have also just recently started working with so I'm a little overwhelmed lately) I have a database that ...
1
vote
1answer
63 views

Map some of table fields into a dictionary

We have a legacy system which has the ability to add custom fields to its entites. This feature is implemented badly, to be exact: each entity table is extended with fields Custom1, ... Custom 10, and ...
0
votes
1answer
31 views

Entity framework many to many but also a relationship can occur more than once

I do not know how to define this relationships. I have users and badges, users can collect many badges, they can also have a certain badge more than once. (Just like Stackoverflow). How can I define ...
-1
votes
1answer
54 views

Complex mappings with ORM

I have used Entity Framework Code First once and although it is easy to deal with i feel like it forces you to fight your OOP principles as i tend to break many habits and design decisions just so ...
0
votes
1answer
97 views

Make Entity Framework ignore Discriminator column

I have a simple app with zero inheritance (at least as far as the database is concerned). How can I "tell" this to Entity Framework so that it would stop looking for the Discriminator column? I don't ...
0
votes
1answer
177 views

Entity framework, unit of work and the order of generated inserts statements

I'm having a problem where I'm adding objects to the underlying persistence store (MS SQL Server 2012) using the repository and unit of work patterns. The problem is that once committed, the order of ...
0
votes
1answer
84 views

How to use PgSqlType with devart entity developer

I want to map the postgres type point to the Devart.Data.PostgreSql.PqSqlPoint structure. I found a table (devart PgSqlTypes) in which is stated for point: "May be represented as the PgSqlPoint class ...
0
votes
0answers
65 views

DbGeography mapping in OnModelCreating

I have a class with properties Latitude and Longitude. I use EF 5 for persistence so DbGeography is a good choice, but I don't want that my entity class library has reference with EF. Is it possible ...
3
votes
2answers
135 views

ModelValidationException: Name 'AnonymousUID' cannot be used in type 'CodeFirstDatabaseSchema.AnonymousUID'

I am using Entity Framework to model an existing database. One of the database tables contains a column with the same name as the table, AnonymousUID. I use the Entity Framework Power Tools function ...
4
votes
1answer
154 views

Entity Framework puts all fields in primary key for Firebird tables

I am using a Firebird 2.1 database together with VS2010 (.NET 4.0) and am trying to get it to work properly with the entity framework. The problem is, that when I generate an entity from a database ...
1
vote
1answer
44 views

Database objects tracking

Has anyone implemented this before? I.e. a change tracking mechanism for a database entity. So we can see different versions of the entity. Just don't want to reinvent a wheel as it appears to be a ...
0
votes
2answers
115 views

Best OR/M for use with Interfaces

In our next project we have a need for using interfaces like this (Example code) public interface IFoo { string Name {get; set;} IList<IBar> Bars {get; set;} } public interface IBar { ...
0
votes
2answers
54 views

Entity Framework as a type checking/verification system for database code

When I read pro and con lists of using Entity Framework (or any modern ORM really), I'm surprised that the following point doesn't arise (self quote): Using strongly-typed domain entities allows ...
0
votes
1answer
218 views

what is the reason for Multiplicity constraint violated.

I am having a class A which is having list of another class b Class A { public List<B> PointCollection { get; set; } } Although all other articles tell that Class B might also ...
1
vote
1answer
71 views

Code first Model foreign key property SocialDetails is null even when the ID's match in the DB

I'm trying to debug a DBContext query and the generated SQL looks like this SELECT [Extent1].[Id] AS [Id], [Extent1].[Name] AS [Name], [Extent1].[SocialDetails_Id] AS [SocialDetails_Id] FROM ...
2
votes
1answer
306 views

Entity Framework: Updating join tables

I have following table setup: Order (ID) Product (ID) [where ProductID 1 and 2 already exist] OrderProduct (OrderId, ProductID) [two keys FK'ng to Order and Product tables] And I'am trying to add ...
1
vote
1answer
140 views

Entity Framework - Challenging setup includes multiple primary keys, and multiple associations to foreign table

I'm trying to map a couple of legacy tables using Entity Framework. The classes look like this... public class Customer { [Key, Required] public string Code { get; set; } public string ...
1
vote
1answer
73 views

How to implement TPH mapping with Entity Framework attributes only

I need to map a legacy db table to a polymorphic hierarchy using Entity Framework Code First. Unfortunately, I have some ridiculous constraints, and I'm not sure if it is possible. These constraints ...
2
votes
3answers
43 views

Do you need to load contents of Entity Framework collection before you .Add() to it?

I have an entity model with class Package { ... virtual ICollection<Owner> Owners { get; set; } } and am implementing an AddOwner() operation. Does the entity framework require me to ...
0
votes
1answer
59 views

EF with database with no PKs - Good idea/Bad Idea/Fuhgeddaboudit

There is so much conflicting and confusing advice all over the web about this. And I would like to settle this for myself and for any one who will be looking for such information in future. Question ...
-2
votes
3answers
105 views

Alternatives for using EF in MVC [closed]

I have a legacy database which we are going to use as a back end in our new project. The project will be in MVC and the plan is to use EF. I read about EF not being so useful if there are no PKs in ...
0
votes
1answer
182 views

No mapping found for field

I have to Entities class Patients { /** * @ORM\OneToOne(targetEntity="ContactAddress", mappedBy="patients") */ protected $contactaddress; } And another ...
0
votes
0answers
174 views

Entity Framework Vs. XPO [closed]

Planning a new project development at our company and narrowed the ORM options to Ef vs XPO. What are the advantages or disadvantages of using each ORMs? Normally we use DevExpress components,so XPO ...
2
votes
1answer
116 views

What ORM can I use for Access 2007 - 2010? I'm after WPF binding to the tables etc

I've a legacy database that all sites have, it describes specific content in a number of catagory/subcatagory/child item format. Until now, adding/editing the content is either manual work in the ...
2
votes
1answer
70 views

EF: using typeid map entity framework hierarchy

i'm keep getting this error msg: Exception Details: MySql.Data.MySqlClient.MySqlException: Unknown column 'Extent1.RuleType' in 'field list' my mapping: public abstract class AlertRule { ...
3
votes
3answers
169 views

What are the benefits of ORM lazy loading?

I've been tasked with researching data layer underpinnings for a new reporting system and have spent a lot of time evaluating ORM's over the last few days. That being said, I've never dealt with ...
2
votes
1answer
83 views

EF4 Not Seeing Changes on context before Save Changes

Hi I am using a unit of work pattern on an EF4 context. The context is being passed across a few methods that all do work on it and then when done I calling save changes. When I peform a check later ...
2
votes
1answer
66 views

Can Entity Framework sort entities by properties on a related entity?

Suppose I have the following "Foo" and "Bar" entities: class Foo { int FooId; string FooName; } class Bar { int BarId; Foo RelatedFoo; string BarName; } Let's also suppose that I ...
0
votes
3answers
331 views

Using Entity Framework or any other ORM in Umbraco

I am trying to find some documentation/article where someone has integrated Entity Framework (or any other ORM tool) in umbraco instead of using good old text based SQL Query. As of now if I wish to ...
0
votes
1answer
188 views

Stored procedure return a collection complex types object generator tools

I wonder if there is any free/open source tools to generate a return collection complex types object from stored procedures, like vs2010 entity framework stored procedures add function import tools. ...
2
votes
2answers
60 views

.Net 3.5 and SQL Server 2005 choosing a DAL technology

I have a .Net 3.5 web application and need to change old code to use a DAL technology. I need some help on the pros and cons of choosing a DAL. I know of Linq to SQL but heard that it is an old and ...
0
votes
0answers
59 views

How to clone EF entity

I have flowing scenario: 1) entity in loaded from EF with graph of entities. (STE, 4.3.1) 2) this entity may(or may not) be modified. 3) this entity is send by WCF to server. 4) I would like to ...
1
vote
0answers
95 views

EntityFramework inheritance - Ignore not nullable column

I have an one entity in my edmx model having an one property that can contains huge XML data. Basically I want to load this entity without this property (column) /* huge data loading */ . And load ...
0
votes
0answers
75 views

ef modelBuilder force foreignkey a or foreignkey b

OK. Background. I was initially trying to make EF models along the lines of: public class Person { [Key] public Guid ID { get; set; } public string Name { get; set; } public Guid ...
0
votes
1answer
634 views

Updating database record using Entity Framework (lazy loading and virtual properties)

I'm struggling with updating existing lecturer's data in database. Every lecturer has Name, AcademicDegree and Courses which are taught by him/her (Courses==Lessons). In fact there are more ...
2
votes
1answer
94 views

Exception in lazy loading (Entity Framework)

I use Entity Framework in my project. The issue is well known but supposed solutions (eg. this and this) doesn't work for me. /// <summary> /// Returns complete list of lecturers from DB. /// ...
0
votes
1answer
83 views

NHibernate, join between tables and return a specific type

I have 2 tables, I'd like place some fields in a result class, but I'm stuck. The code I want look like this with Entity Framework : var res = (from p in context.EstimationItem join q in ... ...

1 2 3 4 5 7