0
votes
1answer
32 views

How to Convert sql server query to linq in entity framework

I am converting the sql server query to linq SELECT * FROM DataFlow where FlowDeleted = 0 and DataFlow.FlowVersionNumber = ( SELECT MAX(FlowVersionNumber) from DataFlow i where ...
1
vote
0answers
16 views

Foreign key error “RelationshipManager.GetRelatedReference” in join statement. Linq with MVC3

This is a part of my database: I'm trying to get all groups that study a subject which is assigned to a specific exam: ExamView.GrpLst = (from ex in en.Exam join ...
1
vote
1answer
30 views

Using Linq to select Place object with Tag.Name = “Restaurant” (many to many)

asp.net MVC 4 app - linq to objects with many to many relationship Place object public virtual int PlaceID { get; set; } public virtual ICollection<Tag> Tags { get; set; } public virtual ...
0
votes
1answer
44 views

make better LinQ queries mvc3

I had a question in my mind, to get the better performance of a linq query , is it better to use the select extension to select just the fields we need, not the whole fields?!!! I have a table "News" ...
2
votes
2answers
34 views

How to use Html.DropDownListFor() helper in the right way

I have a signup form. I want users can select their pet's race using a select list in html. So i decided to use Html.DropDownListFor() Html helper. In my model: public class PetModel { public ...
0
votes
3answers
59 views

Convert string to long type and use in a linq query within asp.net MVC

Is it possible within Linq in C#, to convert a string field in a database, to a long type - and use it in the query? Here, tme is a unix time (long) - but the field in the database, targetdate - is a ...
0
votes
2answers
49 views

I don't want to use @html.Action and @Rendersection can any one guide me what i use

I don't want to use @html.Action and @Rendersection can any one guide me what i use i have a menu there is lot of companies coming in <li> it is fetching from DB the menu should show on ...
4
votes
1answer
117 views

.net MVC passing linq data from controller to view

I am trying to pass data from controller to view. I have searched the web but could not find a solution. if I do this it works: Controller: var yyy = (from a in Connection.Db.Authorities select a) ...
0
votes
1answer
34 views

Reading XML contents through LINQ to Dropdownlist

I am binding the XML contents to a Dropdownlist in MVC4. From the link, I tried reading the contents of the XML file. The Where clause in the code returns Object is not reffered to the instance of the ...
1
vote
1answer
76 views

How can I convert sql to linq

This is my SQL query SELECT sys.sysobjects.name Name, sys.foreign_keys.* FROM sys.foreign_keys inner join sys.sysobjects on sys.foreign_keys.parent_object_id = sys.sysobjects.id WHERE ...
1
vote
0answers
68 views

Show foreign key relation message when deleting records in mvc3

I have a table Country.CountryID is a foreign key on another table Energy.When I try to delete a record in Country table,I should get a message showing the foreign key relation. That message should ...
1
vote
2answers
49 views

How to return a list of stores which are a specified distance from the entered Postcode

I am using Google Maps to create a store locator. The user will enter their postcode and select from a dropdown menu the distnce from the location - 5, 10 15 20 miles. Which will return the stores ...
0
votes
0answers
89 views

Returning NULL values while trying to use Left Join

In my database there is no null fields but when i start debbuging and add breakpoints i notice that the values is all null This is my Code in Repository : public IEnumerable<APPLICANT> ...
1
vote
0answers
69 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
0answers
79 views

ASP.NET MVC3/Linq: Make multiple related rows' fields in a 1-to-many relationship appear on same row through joining and saving to an Excel file

I've tried various things but can't seem to find a solution. I've created the following Action to automatically save information I get from my database (not completely, just a test with 2 fields ...
2
votes
1answer
652 views

Get radiobutton selected according to value in database using mvc3

i have a radiobutton list in my create view.It is generated along with checkbox when selecting a dropdown. @model IEnumerable<Admin.Models.viewmodel> @foreach (var item in Model) { ...
0
votes
1answer
38 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
vote
1answer
149 views

Complex SQL to LINQ in C#

I'm completely newbie in LINQ and Lamda expressions. I have a bit complex SQL statement that retrieves information from several database tables: SELECT A.OrderID, A.FORMJDENO, A.Title, B.Descr, ...
2
votes
1answer
41 views

Getting error:The entity or complex type cannot be constructed in a LINQ to Entities query

I have created a viewmodel:- public class viewdata : Tool.Models.Administration.User { public string Categories { get; set; } public int RegionID { get; set; } public ...
1
vote
3answers
148 views

Linq query filter by date (Month and year)

public class content { public int Id { get; set; } public string name { get; set; } public DateTime date { get; set; } } Id name date 1 content1 01/01/2013 2 content2 ...
1
vote
2answers
70 views

Create one List from several different lists of the same type with C#

I am working on a asp.net mvc 3 application. I am using LINQ to fetch data from the database : public object GetFieldsForDocument() { DocumentFieldsRepository.Context = ...
3
votes
1answer
59 views

WHERE IN clause

I'm working in MVC3 project. I was browsing for a while and trying several examples but I could not get it working. I need to get a list of record from OrderForm table whose DeptID are in another ...
0
votes
1answer
31 views

mvc3 getting a DB model remove error

I am simply doing a database check to see if any rows are expired but I am getting a System.Data.Entity.Dbset error on db.servicers.Remove(servicer) saying that piece of code has some invalid ...
1
vote
0answers
98 views

.OrderBy in Linq query not always ordering properly

Below is a Linq query I'm using in my ASP MVC 3 controller to try and order the results alphabetically by state code. 99% of the time this works just fine, but I'm finding a couple lists that are ...
0
votes
1answer
84 views

Alternative to using String.Join in Linq query

I am trying to use the Entity Framework in my ASP MVC 3 site to bind a Linq query to a GridView datasource. However since I need to pull information from a secondary table for two of the fields I am ...
2
votes
2answers
49 views

Extension method at Linq statement

Please see below: public Content GetContentByPageTitle(string pageTitle) { return _db.Contents.FirstOrDefault( x => hnUrlHelper.UrlSafe(x.PageTitle).Equals(pageTitle) ); } ...
0
votes
3answers
113 views

Linq to select data from one table not in other table

Hi i have the following code to select data from one table not in other table var result1 = (from e in db.Users select e).ToList(); var result2 = (from e in db.Fi select ...
4
votes
2answers
75 views

Linq statement with two where clauses

I'm trying to work out the following. public class Competition { public int Id { get; set; } public string Name { get; set; } public IList<ResultInfo> ResultInfos { get; set; } ...
0
votes
1answer
64 views

Mvc: Linq OrderBy custom parameter

I have the next linq query public IEnumerable<Table> GetTablePage(int pageNumber, int pageSize, string searchCriteria) { Entities db = new Entities(); if (pageNumber < 1) { ...
1
vote
2answers
67 views

Need to OrderBy using Linq

I'm fairly new to Linq so go easy on me. I'm creating a blog site rather than using a canned solution and i'm building it with MVC 3. I have an archive page which displays posts by year. In the ...
0
votes
0answers
43 views

Problems with Linq(join)

I am writting a query with linq(follow code bellow). I am looking for data from db.imovel and for each one bring a picture nested into db.fotoimovel. Keep in mind that I may have more than one picture ...
0
votes
1answer
189 views

ASP MVC 3 - Bind multi table linq query to gridview and export to .xls

Below is a two-table linq query I'm using in an ASP MVC 3 controller to export to an .xls file. The table I'm querying, however, has a one-to-many relationship with a secondary table. When I step ...
0
votes
1answer
38 views

Convert Sql to EF in mvc3

I need to convert an sql query to Linq query my sql query is select *,SUBSTRING((SELECT ',' + cast(CT_LBookIssue.BK_id as varchar(max)) from CT_LBookIssue FOR XML PATH('')),2,200000) as BK_id ...
0
votes
1answer
41 views

Runtime error Unable to Cast Object

Getting a runtime error while casting is done. How can it be solved? public spc GetSc(int ID) { var SC = from items in db.Stable where items.id== ID orderby items.id select items; ...
0
votes
5answers
59 views

Linq, unable to list only distinct results

I have three tables, car_type, car_manufacturer and car_model. When the user click on the particular vehicle type they want to browse, I'd like to show them a list of available manufacturers. The ...
1
vote
2answers
134 views

Linq join object list with integer list

I have a scenario as below: Event: public int EventId { get; set; } public string EventName { get; set;} MediaGallery: public int MediaGalleryID { get; set; } public string Name { get; set; } ...
0
votes
1answer
45 views

Modifying sorting on a facet field from default “count” to “index” in Solrnet asp.net mvc

By default the sort on Solr facet fields is by "count" and not by "index". I have facet fields such as "date", "author", "places" etc. I want the default sort (sort by count/ sort = true) to be ...
1
vote
1answer
70 views

Populating a View Model in MVC 3

I'm working on refactoring an MVC 3 web app to not pass data models directly to the controllers, but to use View models instead (See inspiration here). Currently, when populating a list of models, we ...
0
votes
1answer
82 views

Entity Framework 4.1 Two Tracked Queries

I am learning EF so apology if this has been answered some where else. I could not find a solution to this. I am using Two Tracked Queries because i cannot use Include as it does not support ...
0
votes
1answer
55 views

MVC3 EF 4.1 Include Condition Linq

Apologies if this has been asked before as I am learning EF 4.1 and LINQ, I needed an expert opinion. I have a viewmodel called HomeIndexData. My code looks something like the following: string ...
5
votes
2answers
574 views

EF LINQ include multiple and nested entities

Ok, I have tri-leveled entities with the following hierarchy: Course -> Module -> Chapter Here was the original EF LINQ statement: Course course = db.Courses .Include(i => ...
2
votes
1answer
74 views

Moving from SQL-query-based approach to Linq

I'm not so good at both Linq and SQL. But I have worked more with SQL and less with LINQ. I've gone through many articles which favors LINQ. I don't want to go the SQL way (i.e. writing stored ...
5
votes
4answers
108 views

Getting null error LINQ; cannot then use? [duplicate]

I am trying to run the following in LINQ double totalDistance = (from g in db.Logs join h in db.Races on g.raceId equals h.RaceId where g.userId == id select h.distance).Sum(); However ...
1
vote
1answer
33 views

grouped vm output to a view

I'm looking for the best/simplest way to output the following using Razor (ASP.Net MVC 4) <ul id="contacts"> <li data-group="a"> <a ...
0
votes
1answer
32 views

Difficult “select” expression

I have a project model which has multiple "open tasks": [NotMapped] public IEnumerable<Task> OpenTasks { get { //All tasks where status id == 1 (= open tasks) return ...
0
votes
0answers
30 views

Can you recommend a simple approach to implement rules against Object values? Perhaps dynamic LINQ?

I have serialized some XML into a "document" object which is quite complex in that there are numerous child objects etc. This all works well. I need to create some simple rules that return true or ...
0
votes
3answers
131 views

ASP. NET MVC3 - How to display all Comments in Post

I am a beginner ASP.net, I want to display all comment in post. Detail() method in PostController only shows post content, I don't know how to handle Detail() method to show commnent in post. Hope ...
0
votes
2answers
98 views

A circular reference was detected Linq

getting this error below trying to have relation that says 1 post can have multiple postComments A circular reference was detected while serializing an object of type ...
1
vote
1answer
83 views

ASP MVC/Linq - remove objects from query

I need to remove certain items from a Linq query based on a search filter provided by the user (in this case, it would be an agent's name). Basically the first query grabs all the information from ...
1
vote
1answer
215 views

LINQ to Entities does not recognize the method 'System.Object get_Item(System.String)'

getting error below LINQ to Entities does not recognize the method 'System.Object get_Item(System.String)' method, and this method cannot be translated into a store expression Trying to get ...

1 2 3 4 5 11