-1
votes
0answers
33 views

.NET Entityframework Code First one to many delete

i am trying to build my first EntityFramework Code First Application. Its an WPF Application. Therefore i implemented a small Test Model. A Club can have many Competitors, and a competitor must have a ...
0
votes
1answer
15 views

Returning multiple resultsets with dataentity framework 5

I am using ef5 and am trying to return multiple result sets with the method GetNextResult<>() however it doesn't seem to be working. My sql sproc is: select * from Questions select * from Skills ...
0
votes
1answer
39 views

Join vs Navigation property for sub lists in Entity Framework

I have a sql statement like this: DECLARE @destinations table(destinationId int) INSERT INTO @destinations VALUES (414),(416) SELECT * FROM GroupOrder grp (NOLOCK) JOIN ...
7
votes
6answers
198 views

Why I am getting different result from two almost equal expressions to get data from database using Entity Framework context

I am validating username (case-insensitive) and password (case-sensitive) from database I am using Entity Framework 5.0 to interact with database In the database password is ...
2
votes
1answer
32 views

How to delete object without retrieving it in EF

We have a table that has a couple of nText columns so looking to delete a rows without retrieving it if possible Another twist is that we don't know the IDentity value but a couple of other values ...
0
votes
4answers
45 views

Code-First equivalent in Ruby [closed]

I'm suuuuper lazy and don't like making migrations. I want to make models I'm going to use anyway and have something else figure out the migrations for me in ruby because .Net has spoiled me. Is there ...
0
votes
2answers
74 views

Update datetime using .NET and SQL

I have Entity Framework ObjectContext. I need to update column of type datetime. Here is my code: ObjectContext.ExecuteStoreCommand(string.Format("update MyTable set DateTimeField='{0}' where Id = ...
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
33 views

EF load related collection partially

What I'm trying to achieve is return a list of Categories (in JSON) with the latest (Top 1) modified product in it. Say I have a Product & Category classes. Class Category{ public string Name ...
0
votes
3answers
57 views

Entity Framework/Linq EXpression converting from string to int

I have an Expression like so: var values = Enumerable.Range(1,2); return message => message.Properties.Any( p => p.Key == name && int.Parse(p.Value) >= values[0] ...
1
vote
1answer
37 views

Filtering navigation properties in EF Code First

I'm using Code First in EF. Let's say I have two entities: public class Farm { .... public virtual ICollection<Fruit> Fruits {get; set;} } public class Fruit { ... } My ...
1
vote
1answer
77 views

LINQ Select with join and optional where

I have table with recipes and table with recipe categories. There are diferent type of categories in another table. I have optional parameter for category, my tables and linq select looks like: ...
0
votes
2answers
58 views

Bring back DbContext.Detach() method with an extension method (EF5) [duplicate]

There is no Detach(object entity) on the DbContext in Entity Framework 5. To detach an entity, the state now needs to be changed. Maybe I am missing something, but this seems much less intuitive and ...
1
vote
3answers
56 views

Multiple tables containing one entity in Entity Framework

I am working on a system that sells products. This system has products, with subclasses for every producttype. public abstract class Product { public int ProductId { get; set; } public ...
5
votes
1answer
63 views

Entity Framework 5 and SQL Queries

I am facing serious performance issues... My query is supposed to filter Products with SQL directly in database. When I execute this code, it doesn't, and it returns all products and filters them in ...
5
votes
3answers
183 views

List of Expression<Func<T, TProperty>>

I'm searching a way to store a collection of Expression<Func<T, TProperty>> used to order elements, and then to execute the stored list against a IQueryable<T> object (the underlying ...
2
votes
1answer
86 views

LINQ - Not returning the same value as SQL Server

I have a really weird issue. I have this query: var systemAppEntityViewModelFieldCustom_SecurityByUserList = (from t in coreEntityModel.SystemAppEntityViewModelFieldCustom_SecurityByUser ...
0
votes
0answers
36 views

Using two contexts in one Transaction and error with DTC

In one transation I use two different contexts: using (TransactionScope scope = new TransactionScope()) { using (Entities1 context = new Entities1()) { .... } using (Entities2 ...
2
votes
2answers
102 views

Passing in a Func to Where and using IQueryable

I am using Entity Framework and am building up a IQueryable<T> IQueryable<Message> query = db.Messages; query = query.OrderByDescending(m => m.Created); query = query.Where(m => ...
1
vote
1answer
34 views

EF POCO table splitting: both entities load

Sorry, but I'm mystified by table splitting! I have Product and ProductDetail entities, mapped to table Product. When I load the Products collection, the ProductDetails are loaded too. Could ...
0
votes
1answer
44 views

Entity Framework 6 - how to convert this line to async?

I am wondering how do I change this statement to be async? var findBarCode = context.Barcodes .Where(x => x.Code == barcode) .Select(x => x.Product).FirstOrDefault(); I ...
1
vote
3answers
35 views

Entity Framework load entity from parameterized Constructor

I am upgrading one of existing projects DAL to Entity Framework. In leagcy DAL I hav consturctors like e.g. public class User{ public User(){} // This constructor loads data from database ...
0
votes
1answer
36 views

EF 5 Code first Entities FirstOrDefault method returns null

This is an example based on Programming Code First EF. Please look at the below classes. When the PersonRepository calls in instantiated and InsertOrUpdate method is called Null value is returned. As ...
1
vote
1answer
19 views

EF Code First table.add() Method always returning nullreference Exception on table is null

I am new to Entity framework code first.. Whats wrong with the following code.. Sub Main() Dim _Context As New Sample() _Context.Database.Initialize(True) Dim dbHead ...
0
votes
1answer
41 views

Using two Object Contexts?

I created two edmx files and have to contexts. Is there a problem with doing something like: public DataManager { protected ObjectContext _context; public DataManager(ObjectContext context) { ...
0
votes
0answers
28 views

JSON.Net automatically ignoring property during serialization

I have an Entity Framework entity class that I have extended, here is the code: partial class Product { #region Enumerations public enum Channels { Unallocated, Retail, ...
2
votes
1answer
63 views

Why the AsQueryable following by Any leads to select without Where clasue?

I am using Entity framework 4 and I have the following piece of code: public decimal GetSchoolSuccessRate(EvaluationComparationFilter filter) { return this.GetSuccessRate(x => x.TestCampaignId ...
1
vote
1answer
25 views

async void method not returning immediately (EF6)

public class MyClass { MyEntities db = new MyEntities(); public MyClass() { this.Initialise(); // Does not return immediately. Why? } private async void Initialise(); ...
0
votes
1answer
54 views

Handling Entity Framework SaveChanges() exceptions for cleanup

I have a File Repository library which handles the saving of files onto the server. Along with saving the physical file, a database entry is also recorded. Below is the insert method. public ...
2
votes
2answers
61 views

Entity Framework - “where” clause: entity id is in a potentially null array

I have an array of office ids, and the array is potentially null. I want the EF query to return all records if the officeIdsToSelect array is null, or only the matching records if it is not null. ...
0
votes
2answers
34 views

Conflicting changes to the role … in EF4

I have a POCO code first model which requires what is effectively a recursive reference. When I try to create entities I get the "Conflicting changes to the role ..." error as per the title. Here are ...
1
vote
1answer
44 views

How to map result from stored procedure to object

I'm using EF for fetching data from stored procedure in MS SQL. Stored procedure is returning table. (columns have same names as properties in my object) List<MyObject> result = ...
0
votes
1answer
21 views

Error with EntityDataSourceExtention to Enable Insert(): “type or name EntityDataSource could not be found”

In Visual Web Developer 2010, I'm trying to implement the extension to EntityDataSource described on this page that enables Insert() to be used as a method: ...
0
votes
2answers
54 views

When using e.Entity in an EntityDataSource Inserted event, is it good practice to wrap it in using()?

If I'm doing something with the inserted values during an EntityDataSource's Inserted event, should I wrap e.Entity in a using() statement? I can't tell. Is that "in context"? Should it be (as I've ...
0
votes
1answer
54 views

Entity Framework: Populate existing object instance

Here's how I would normally retrieve an object from the database: Dim Prod = (From P In Db.Products Where P.ProductID = 123).FirstOrDefault() Now, I need to implement a "load" instance method that ...
1
vote
2answers
49 views

How can I extract a list of Tuple from a specific table with Entity Framework / LINQ?

I need to extract a list of couple 'ID'/'Name' from a large table in C# .NET with Entity Framework. I try this request : List<Tuple<int, string>> list = (from res in db.Resource ...
0
votes
1answer
21 views

Dividing entity framework connection string into 2 parts

I'm trying to set up continuous integration for legacy project. In Web.config, there's Entity Framework connection string: <add name="StuffContext" connectionString=" ...
12
votes
3answers
298 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 ...
1
vote
1answer
28 views

Database field with custom non-editable values

I'm pretty new to Entity Framework, so I'm not figuring out how to solve my problem. I have a User entity, as follows: public int ID { get; set; } public string Name { get; set; } public string Email ...
-4
votes
1answer
122 views

Check if a row is in a list and compare it to other rows in that table

I am using ADO.NET query to select the employee id's of all the employees whose have a location x, y or z and are working under a supervisor. This is the query that I am working with: SELECT ...
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 ...
1
vote
3answers
66 views

Creating Re-usable Classes That Use Domain Entities

As a developer, I'm trying to make my classes more modular and re-usable. One of the areas where I've run into problems is when I design a class to work with entity framework entities. For example, ...
0
votes
1answer
33 views

Mapping a Many-to-Many relationship with an Attribute in Entity Framework

I'm always using Attributes to map the properties of my entities to their corresponding columns. Here's an example: [Table("news_entries")] public class News { [Key] public int Id { get; set; ...
0
votes
0answers
80 views

Deep Clone full object graph of EF hydrated POCO

Seems to be lots of info about deep cloning in C# but the object I am trying to clone is being pulled out of a database by Entity Framework. The example I have is as follows: public class Parent ...
0
votes
1answer
73 views

Cannot connect to database while using Entity Framework Code First

I wrote very simple class, that perfom data access. It checks if line with that day exist in table and update her or create a new line. public class DataAccessClass { public static DayWeather ...
0
votes
1answer
66 views

Entity framework stored procedure - mapping complex properties

I have an edmx data store and I am trying to execute a stored procedure against it: . . . CustomerDb.ExecuteStoreQuery<Customer>("GetCustomers", parameters).ToList(); The customer class has ...
0
votes
1answer
21 views

Using Entity Framework and Transient Fault Handling Block WITHOUT Azure

I have several apps that rely on a repository using EF 4. Sometimes, a SQL operation will fail just because (i.e. timeout, failed connection, etc.). I want to use the Transient Fault Handling ...
0
votes
0answers
100 views

The DELETE statement conflicted with the SAME TABLE REFERENCE constraint with Entity Framework

I have a table with a self reference where the ParentId is an FK to the ID (PK). Using EF (code-first), I've set up my relationship as follows: this.HasOptional(t => t.ParentValue) ...
0
votes
0answers
23 views

Export to xls file removing leading zeros

Each of the FixedLifeMaster and VariableLifeMaster fields are stored in my database as nvarchars and in the Entity Framework as a strings. However, when I export to an .xls file, Excel only sees ...
1
vote
1answer
33 views

Seeding Many to Many EF Code First Relationship

There are a few other posts on this topic that I saw but I was not able to get a correct answer yet (my own fault I am sure) but I want to seed a database and I have set up a many to many ...

1 2 3 4 5 70