0
votes
0answers
36 views

context database.sqlQuery<type>() with dynamic parameter list

i have a problem with an sqlQuery/Exec. My Stored Procedure returns a list of entitys. But i need to append the parameterlist dynamicly. using (MyContext db = new MyContext ()) { ...
0
votes
2answers
49 views

Left Join in Entity Framework

I'm trying convert this SQL to Entity Framework LINQ, but don't working. My SQL code: SELECT s.Id, s.OriginalPhotoBlobId, s.PhotoBlobExtension, ISNULL(s.ProductSkuKey, p.[Key]) as ...
1
vote
1answer
81 views

SQL to Entities syntax for INNER JOIN and DISTINCT

I'm a bit fresh to Entity Framework, and need some advice on the syntax. My goal is to retrieve a distinct list of filtered equipment from one table and match them to ID's in another table. Here is ...
0
votes
1answer
45 views

how to create realationship between tables and views (sql server 2005) [closed]

I already have an existing huge database but the problem is there is no relationship exists between the table and views. is there any possible way or tool to aumatically create realtionships or whats ...
2
votes
3answers
83 views

persistence - Entity classes vs Hibernate framework vs other

I'm making a web app. It gets data from a SQL db. I had some code in jsp to query the db however, that code would be available to the user - via source code - not a good practice, right? So, I ...
0
votes
1answer
44 views

How to use a String in an Entity class hash code?

I'm making a web app that queries an SQL db. I'm under the impression that I need to use entity classes and facade classes to allow persistence - across the whole site. The entity class templates ...
0
votes
1answer
24 views

Expression of type 'Territory_Manager.HtmlAddressGenerator+Entry' cannot be used for return type 'System.Object'

i realy hope there is someone out there who can help me. I have the following sql statement (just replaced real column values with ''). string sqlstatement = @" SELECT ...
1
vote
0answers
47 views

entity class from database wizard hangs

I'm developing a web app using Netbeans 7.3, Glassfish server and SQL Server 2008 (Schema named dbo and is 65 gigabytes). I've connected to the database (in the "Services" tab) and now I am trying to ...
1
vote
0answers
54 views

Entity Framework generation generates nothing

I created a database (called Data1) in sql server 2008 using sa account, and then a table (called Table1) in Data1. However, after i have used the ADO.NET Entity Data Model to generate entity from ...
0
votes
0answers
70 views

Visual Studio 2012 Entity model from database creator issue

Seems like there are some problems with the creator. However, It's even hard for me to word an appropriate statement to find the solution. In Visual Studio 2012 I try to add a new Entity model form ...
0
votes
1answer
76 views

ASP.NET MVC Data Entity design

I'm building an ASP.NET MVC 4 application and want to make it as flexible as possible. I created abstract database access classes and separate concrete implementations of them (SQL Server access). ...
2
votes
2answers
46 views

type-safe Entity Objects with heavy data

Currently, our system uses something similar to Java Entity Beans, though it's written in C++/SQL. Essentially, there are classes that (more or less) symbolize tables, and instances of these classes ...
0
votes
1answer
27 views

SQL ORM's for .NET with respect to entity model upgrade support

When I modify an entity in my model, for instance changing property names and types, moving properties around etc, I then have to manually upgrade the database so it matches the new entity model. ...
2
votes
4answers
81 views

SQL query to find False Negatives w.r.t Data Matching or Entity Resolution

Suppose I have two different ID's assigned for same record. For example RecordID | ID1 | ID2 -------------------- 1 | X | A 2 | X | B 3 | Y | C 4 | Y | C 5 ...
0
votes
0answers
33 views

Java-EE Entity persisting

Currently i'm developing a round based game. now im encountering a problem: ive got 2 Objects: Flower and FlowerDynamic. Some (more or less) static attributes are getting assinged to the flower ...
0
votes
1answer
37 views

One2One relationship in Entity Framework

I am interested how to achieve one 2 one relationship between two tables using Entity Framework without using Fluent API, just using Data Annotations. Is this possible ? If yes could someone give me a ...
1
vote
2answers
155 views

Entity Framework Code First, Navigation Property between different contexts/databases

Hi I have 2 data contexts that maps different schemas on a SQL Server database, but then I need to create 1 sdf database file (SQL Compact) per schema and use the same data contexts, and I have some ...
1
vote
0answers
82 views

JPA - updating an embedded entity generates invalid SQL

I am trying to update an embedded entity and JPA seems to generate the wrong SQL. I have a Company entity with an embedded Logo entity @Entity public class Company { private Long id; @Embedded ...
0
votes
0answers
58 views

MySql Entity Model C# Preloading / Caching of the Tables / Connection String

We have been running the same application on MS SQL Server 2012 Express Edition and then moved it to MySQL Enterprise. The application is accessing various database tables using Entity Model, the ...
5
votes
1answer
97 views

Finding inherited object by ID - Entity Framework

As you can see in the following image, I have a model with a base class "Person" and both entities "Kunde" and "Techniker" inherit the base class. Now I've got following problem. When I try to use ...
2
votes
2answers
80 views

Database relationship issue

I am having a issue in identifying the relationship I have the following scenario A teacher can review many paper A paper can be review by 4 teachers A teacher can create a paper A paper can have ...
2
votes
2answers
126 views

What is the best way to model an entity that can have different attributes?

Let's say I am programming a MMORPG. I modeled a Entity character that can have a multitude of attributes like coating, strength, color and so on. Because I do not know these attributes in advance ...
1
vote
1answer
127 views

Converting SQL to LINQ to Entity

I am trying to convert the following SQL, not written by myself, into a Linq to Entity query. select u.user_Id, u.forename,u.surname,u.client_code,u.user_name, u.password, u.email, u.gender, ...
0
votes
1answer
71 views

how to deal with null fields?

I have two queries which I need to find ALL the tuples where a certain field must have value . Is that something that is not doable? SELECT COUNT(o) FROM News o, NewsDistributionLink p WHERE ...
5
votes
4answers
963 views

Efficient way of updating list of entities

I am working on a project which allows the user to edit a list of entities. I map these entities to view models and display them with editor fields. When the user presses the submit button I go ...
0
votes
2answers
527 views

Using a view with no primary key with Entity

I just started on a project converting an application from raw ADO.NET and embedded SQL to Entity. I ran in to a problem with one of the views used by the application. The view has no primary key and ...
0
votes
1answer
192 views

JPA & Netbeans entity relations

I've a two table: A and B. A has a relation with B as 1:1. When I execute "Create entity classes from database", Netbeans produces two entity classes but A has an annotation: @OneToMany private ...
2
votes
6answers
138 views

Should I combine 2 sql tables which have a difference in just one field

Should I merge those tables into one table? Is there any tricky alternative? Table Unit for a Template table: Id (PK) ParentId Name TemplateId (FK) Table Unit2 for a Testplan table: Id (PK) ...
1
vote
1answer
163 views

Making a generic Query, how?

Here is my working Code: var queryString = "SELECT VALUE c " + "FROM EMI_ERPContext.Customer AS c " + "WHERE c.FirstName='Emanuel'"; ObjectQuery<Customer> ...
0
votes
2answers
724 views

HQL - how to query data from one-to-many relationship and condition on second entity field

This is what i expected in SQL query string: SELECT dbo.FRIEND.FriendId, dbo.FRIEND.MemberId, dbo.FRIEND.FriendMemberId, dbo.FRIEND.DateAdded FROM dbo.FRIEND INNER JOIN ...
0
votes
2answers
103 views

how i'm i suppose to unit test this

i have an entity which has 15 members. there are various types of members with various rules applied to them, some allow nulls and some others don't. here is the database entity: tbl_items( item_id ...
0
votes
3answers
415 views

JPA entity to SQL

mI've this entity class: @Entity public class User implements Serializable { @Id @GeneratedValue(strategy=GenerationType.AUTO) private Long id; @ManyToOne private User ...
1
vote
1answer
237 views

table value function using entity framework‬

I'm working with SQL trying to implement a Full-Text-Search. I noticed that there is no direct handling to Full-Text-Search in Linq. I've read that I can use UDF that will return a table. I tried ...
0
votes
1answer
647 views

Backup a database mdf & Entity Framework

I have a database (mdf file) wich I'm approaching with the Entity Framework. Is it possible to make a backup of the MDF file. I tried already but SMO but the problem is because I'm using a mdf file ...
2
votes
4answers
150 views

linq syntax to match dynamic sql IN statement

Does anyone know how to do this with a string representation of IDs, to look for I tried the above and none worked for my style formatting. I have a string that is "1,2,3,4,5" which represents the IDs ...
0
votes
1answer
59 views

Mixing owning and referencing relationships in databases

I've used XML and hierarchical databases for a long time, where ownership is easy to determine. Now I'm trying out a relational database model in which I have a runtime context I'm loading entities to ...
3
votes
1answer
98 views

Can an entity have more than one many-to-many relations?

I have a table that has two different many-to-many relations to two different tables. Let's say I have User <---> UserRole <--> Role and User <--> UserGroups <--> Groups. Since I am new to ...
0
votes
1answer
1k views

Analysing Entity Framework Queries with SQL Profiler

Can anyone explain what should be seen in SQL profiler when navigating through a CRUD application window, in order to confirm it's correctly and efficiently performing the sql statements? I opened up ...
1
vote
1answer
487 views

Entity Framework SQL Query Performance

I'm trying to get a handle on Entity Framework Performance, specifically around the dynamic SQL it will generate. Take the following statement for instance: var orders = db.Orders.Include(o => ...
1
vote
2answers
825 views

How to get sequence number of row using Entity Framework?

I have SQL query: WITH OrderedRecs AS (select ROW_NUMBER() OVER(ORDER BY RecID) as seqNumber,* from Records where RecordGroupID=7) SELECT * FROM OrderedRecs where RecordID=35 How do I get the same ...
0
votes
1answer
74 views

How to create a Dynamic Query when there's a condition that won't use all fields in the where section with LinQ

I am using a Data Entity from the db, and a Domain Service. I am using .net's generated code for the simple queries, like this public IQueryable<employee> GetEmployeesByLocale(int localeID) { ...
1
vote
1answer
272 views

DeleteObject from Entity Framework loads the whole table?

I have run into a problem with Entity Framework. My code tries to delete 1 or more objects mostly less then 10 from a table. foreach (var val in vals) { int id = Convert.ToInt32(val); var item ...
1
vote
2answers
536 views

Failed to export due to: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information.

Everytime I publish my code to another server, I get the following error Failed to export due to: Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more ...
6
votes
1answer
2k views

How do I use structural annotations to set SQL type to Date in model first approach

Is it possible to set type to just date (NOT datetime) via entity framework designer? I had a look around and the only answer that I've found is a post from MSDN forum from a year ago... ...
2
votes
3answers
2k views

Implementing SQL “AND” search using Entity Framework

I have the following SQL query - SELECT * FROM dbo.LocalContacts WHERE name LIKE '%taiwan%' AND name LIKE '%mvp%' How do I implement it using EF? I need to break down the search string, then do an ...
0
votes
3answers
752 views

Select distinct rows based on some, but not all columns

I originally ran into this problem while working on SQL queries that select certain aggregate values (min, max etc) from grouped results. For example, select the cheapest fruit, its variety and the ...
42
votes
9answers
33k views

EF 4.1 exception “The provider did not return a ProviderManifestToken string”

I am trying to replicate an example found on MSDN. I am using ASP.NET and EF 4.1 (CTP?). I've used NuGet to install the EntityFramework package. I am getting this error: "The provider did not return ...
0
votes
2answers
284 views

C# Express Edition + SQL Server 2008 R2 Express; Database file being recreated on run

I created a standard C# console application in 2010 Express, used the wizards to create a simple sql express db file which gets placed in the project dir, used the wizards to generate an entity data ...
0
votes
2answers
281 views

JPA annotations and SQL tables

I just have quick Question. If I had an sql script like this: create table person( phoneNumber int name varchar(100) not null primary key(phoneNumber, name) ); How would I set up the ...
0
votes
2answers
476 views

Loading SQL tables using Entity Framework

I want to use Entity Framework to a load a number of sql tables into memory from my c# app before performing some work on them and sending changes back to the database. I only want to hit the database ...

1 2