Tagged Questions
0
votes
1answer
69 views
C# Entity Framework 5.0 Generic LINQ
I am trying to use generics to load a record into my dbcontext cache. I am using the following code.
_Context.Set<T>().Where(R => (int)R.GetType().GetProperty("Id").GetValue(R) == ...
2
votes
3answers
118 views
Access foreign key in LINQ Where?
I have an entity called Driver and to get a list of Drivers, I call:
List<Driver> drivers = _context.Drivers.Select(x=>x);
Driver can have details and their is a foreign key between them, ...
0
votes
2answers
52 views
Cannot read from a closed textreader after iterating through IEnumerable once
I've got a problem with "Cannot read from a closed textreader" exception. I have a program which is supposed to get data from file, then do some funny stuff with it and get timespans of everything.
...
2
votes
1answer
42 views
Only primitive types or enumeration types are supported in this context
So I have this code:
public int saleCount(List<Shift> shifts) {
var query = (
from x in database.ItemSales
where shifts.Any(y => y.ID == x.shiftID)
...
0
votes
1answer
26 views
Linq query to sum values from tables
I have a LINQ query, which takes an invoice, looks up the quantity and unit price of each item attached, and in another linked table, looks up any payments made against the invoice.
Currently this ...
0
votes
2answers
43 views
Initializing/Adding fixed entries on table creation
I am using Entity Framework code first, and I have two tables that need to be initialized with fixed entries just on table creation. For example:
Columns for table A:
-Id
-Name
Columns for table ...
0
votes
2answers
68 views
Cannot implicitly convert type 'List<AnonymousType#1>' to 'IEnumerable<Models.APPLICANT>'
Trying To Left Join 2 Tables
public IEnumerable<APPLICANT> GetApplicant()
{
IEnumerable<APPLICANT> applicantdata = Cache.Get("applicants") as ...
1
vote
0answers
45 views
ASP.NET MVC 3 C# How can i fetch the data where i can post all the details that doesnt contain profile_id
what can i add a statement where i can get also the one where Applicant context is not contain profile_id or when the profile_id is NULL so i can get all the data .
Heres my code :
var applicantList ...
0
votes
2answers
41 views
Using custom methods or delegates in linq-sql statement
I am searching the land for an elegant, reusable solution to a problem that has been bothering me for ages. Thus,
Say I have some business logic I use all over the site: (don't get held up as to how ...
9
votes
1answer
142 views
Lambda Expressions and the || operator in Entity Framework
I was surprised that this code works:
string category = null;
Category Category = null;
int categoryId = 0;
var products = repository.Products
.Where(p => category == null || p.CategoryID == ...
1
vote
1answer
43 views
Linq query to order by on multiple related data
Consider the below tables with the data
Customers -> Orders -> Items
Customers ->
A
B
C
Orders ->
o1 - A,
o2 - A,
o3 - B,
o4 - C
OrderItems ->
o1 - Item1,
o1 - Item2,
o2 - Item3,
o3 ...
0
votes
1answer
61 views
Where do I put session start code?
I am using MVC, C#, LINQ, Entity
I need to put code for gathering active directory information every time a user visits a page. I need access to this code on any page they could visit to display ...
0
votes
1answer
28 views
Entity Framework Check if Collection Contains Item
I'm trying to execute the below query in EF5:
var data = from adi in _repo.AccountingDocumentItems
from e in adi.Employees
let c = adi.Employees.Count()
...
0
votes
2answers
66 views
Copy data between databases using Entity Framework, LINQ and MVC
There is a problem. I have old database with some data, and by another side I have new database with new structure.
Now I need best way (ideas) how to copy data from one table to the another. ...
0
votes
1answer
30 views
SQL Query to Linq To Entities
I'm using Linq To Entities and I have difficulties to translate a SQL query to Linq.
Here is my query in SQL :
SELECT row FROM table
WHERE row not between 'A' and 'Z'
and NOT ...
1
vote
2answers
80 views
What's wrong with this LINQ, converting one object to another?
I'm trying to have a one-liner LINQ statement to project my one object to my ViewModel object - it seems it won't work with select?? The compiler says cannot resolve symbol select. This works with a ...
1
vote
0answers
35 views
how to compare modified rows and update into database using linq?
I am working on handsontable with asp.net. If user changes data on table and click on save button. Data comes on Jason format through AJAX call. Then I am able to convert JSON format data to List (of ...
2
votes
3answers
87 views
why null values not return in when apply != in linq
I use this code
var items2 = from item in context.Images
where item.Reported != true
select item;
But not return null values in "Reported" column why?
0
votes
2answers
34 views
Entity Framework: search for database entries with null fields
I have the following Model:
public class FactCache
{
public int ID { get; set; }
public DateTime MonthDate { get; set; }
public string AttributeKey { get; set; }
public decimal ...
1
vote
1answer
52 views
Entity framwork mutiple object relation
I have a table with 2 foreignkeys to the same parent table, Edge.StartStationId and Edge.EndStationId.
I am trying to map theese to objets in entity framework, but can't find a workaround which seems ...
2
votes
1answer
78 views
Generic save method
In my generic repository I need to write generic Save method which will edit existed or add new entity depending on id.
public void Save<T>(T entity) where T : TEntity, IKeyId
{
if ...
-3
votes
3answers
72 views
Using Contains method within linq's Where clause
I've got a problem with my query.
I have two simple classes. Let's say
public class A{
public List<B> MyCollection{get; set;}
}
public class B{
public string Id;
}
//I want to do something ...
1
vote
1answer
32 views
Accessing columns in cross reference table via LINQ with Entity Framework
I have a Users table, a Roles table, and a cross reference table Users_Roles which has the following columns:
User_ID Role_ID Beamline_ID Facility_ID Laboratory_ID
The Beamline_ID, ...
1
vote
2answers
42 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
...
-1
votes
0answers
31 views
Supporting Multiple SQL database versions for same application [closed]
I am in need to develop an application which can support multiple version of same SQL Server database. Database has been changing and it has currently 7 versions.
Some of customers still using ...
0
votes
1answer
21 views
Enumeration Type exception when attempting to filter a LINQ query
I'm trying to generate a grid that end-users can filter the data using several inputs.
To do this I'm attempting to filter an initial LINQ to Entities object as follows:
Dim servhist As ...
2
votes
2answers
46 views
Left OuterJoin in Entity/Linq
So I am deeply confused. I have two tables, one is locations assignments which consists of: location id, type and type id. I also have a table called services, which consists of name, id , description ...
3
votes
1answer
51 views
Modeling a tree-like structure in db with EF
I have a huge performance problem with EF shoveling my data out of the database.
Let's say I have a class hierarchy like this (imagine these are all EF generated):
public partial class Container {
...
1
vote
2answers
65 views
Creating Extension method to include subquery
I am having trouble creating an extension method for an IQueryable that will include the translation for a specified column in a Linq Query.
Suppose i have the query below.
I would like to call a ...
-4
votes
1answer
119 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 ...
4
votes
1answer
118 views
What's the better way to write this linq query?
SQL:
SELECT node.CategoryId,
node.CategoryName,
node.Description,
node.Lft, node.Rgt,
node.ShowOnMenu,
(COUNT(parent.CategoryName) - 1) AS Level,
(CASE WHEN node.Lft = ...
0
votes
0answers
44 views
Get data from multiple table using Entity Framework 5
In my database, I have 4 tables with relationship like this:
Inspection --> Correspondence --> CorrespondenceTo, User
Now, when InspectionID equals something, I want to get Subject, ...
-1
votes
1answer
36 views
Select from nested entity framework entity
I'm using Entity Framework 4.3.
I have a user entity named Lender - a lender has many lending Tiers. There are many other entities linked to lender but for or the purpose of clarity, I'll keep the ...
0
votes
1answer
37 views
Is there a Transactions begin, commit and roll back type function in Entity Frameworks?
Is there a Transactions begin, commit and roll back type function in Entity Frameworks?
I have an Entity which has several one to many relationships all of which have default settings, which are ...
0
votes
1answer
23 views
Linq to Entity - Inserting a record
I am new to Linq to Entity (Infact I am new to Linq) and I am struggling to insert a row.
Following a number of tutorials (None of which seem to agree with each other or are very detailed) I managed ...
0
votes
1answer
46 views
Use LINQ to Access All the Collections of a Collection on My Model?
I am trying to write a property on my model, with only a get accessor that can return a collection that is comprised of all the collections that each member of a collection property contains.
So:
...
0
votes
2answers
61 views
LINQ GroupBy 3 properties?
I've got the following class:
public class ProductInventory : Entity
{
public virtual Product Product { get; set; }
public DateTime ExpirationDate { get; set; }
public Manager Manager { ...
0
votes
1answer
40 views
LINQ Query to inner join DbContext Entities to IQueryable
I have two tables, 'Events' and 'Services', that have a one-to-many relationship (each event has at least one service).
I'm writing a C# console application that will extract a subset of events and ...
0
votes
1answer
26 views
“Does not contain definition for” error when using junction table created using .toTable() method in dbContext
I'm not sure what I'm doing wrong here. The table "class1class2" is not being recognised.(See code below). I want to be able to use the junction table
Context
public class context: DbContext
{
...
-1
votes
0answers
27 views
Lambda expression Fetch and Count with a where clause
i have these lines:
model.Total = RecommendedUserRepository.Count(x => x.RecommendedByUser.Customer.CustomerId == customerId);
model.RecommendedUsers = RecommendedUserRepository.Fetch(x => ...
0
votes
1answer
17 views
How would something similar to Telerik's WPF DataFilter Control work?
Telerik has the following control:
http://www.telerik.com/products/wpf/datafilter.aspx
Now this can apparently filter any collection. I haven't used it personally but I'm guessing you can create ...
0
votes
1answer
62 views
Error in linq-to-sql: Unable to create a constant value of type
I don't know what's wrong with this query - it keeps giving me this error:
Unable to create a constant value of type 'OvertimeProject.DataCore.tbl_Promotion'. Only primitive types or enumeration ...
0
votes
0answers
22 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 ...
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
79 views
Linq Time(7) and TimeSpan Mapping
I'm trying to insert a record to my table called Test , I'm using the LINQ technique :
The problem is I have a time column in my table with type of Time(7) but when I try to insert data to table I ...
0
votes
1answer
30 views
Linq To Update One Complete Row
So I would like to update/replace one complete row with the data I have.
Instead of doing
entityA.Name = entityB.Name
I would like to say something like entityA = entityB, where entitiyB is same as ...
0
votes
1answer
55 views
Invalid column name in Entity Framework
I have a table in db. I recently added two columns to it: my_name and my_password.
I see in Management studio that the table has these two columns. I use Entity framework. In the .edmx file, the ...
1
vote
0answers
34 views
Caching in Entity Framework Extended and Expression
I'm using the Entity Framework 5.0 and the expression is described in the recommendations Type member support in LINQ-to-Entities?
public static Expression <Func <Category , bool >> ...
0
votes
1answer
40 views
Linq to Entity - Join Update
This might be easy for you guys but am stuck to convert into linq.
here is my sql query
update Sevt set
UserFlag4 = 0
from Sevt, Wo W
where Sevt.Seqnum = W.SeqNum and w.WONUM = '1502411'
Here is ...
1
vote
1answer
28 views
Can't apply orderbydescending lambda
I have a very simple lambda expression , but there is something wrong with it , I am unable to chose a field upon which I would want to use orderbydesc
...






