0
votes
1answer
18 views
MVC linking two tables by a string key rather than an int key
I'm using an intranet application - so Windows authentication.
The Username has the format "ADHP\BCOOPER" - I would like the users to be able to show a "friendly name" when logged in, so want to map ...
0
votes
2answers
20 views
MVC: Displaying table data not working as expected
I have this table in database
I'm trying to display the the values (ModuleID and DateEntered) in the browser as table.
I'm using viewbag to pass the value to my view, which is not quite the right ...
0
votes
3answers
40 views
ASP.Net MVC Linq to Sql how to handle a null datetime
I have a Topic parent table, and a Post table childed to the Topic table.
What I'm trying to do within trhe Linq query is return the last post date, from the linked Post table, however, if there are ...
0
votes
1answer
35 views
ASP.Net MVC C# retrieving the last post of a parent child child table
I have a typical forum app, using nested tables:
Forum => Topic => Post(s)
I'm trying to use LINQ to populate a ViewModel to show the last poster for a post, in a topic, within a Forum - however, ...
0
votes
3answers
63 views
MVC4 lambda expression for SimpleMembership
In LAMBDA-Expressions, how can I get ALL Users (Name and ID) and their assigned Roles (Name, ID)
I am having a hard time figuring out the Lamda-syntax for this joins!
eg:
UserProfile:
Username, ...
-2
votes
0answers
26 views
Wizard control - complete step always show in a new page?
I hope you can solve my problem. I wanna when i click finish button (in Confirm step)...A summary information will show in Finished step..Please see my code:
Thank for reading and have a nice day :)
...
0
votes
1answer
26 views
EF Computed column is null on LINQ query with multiple joins
I have an MVC app using Entity Framwork , there are many tables but one table has a calculated column.
WHen I debug in my controller, the query results on "answers" does show that the computed ...
0
votes
2answers
34 views
How to group a strongly typed model
I pass my model to my view. On this view I am displaying a table and trying to populate it with a list of information from the database.
I am using asp.net-mvc, entity framework, razor, c# and LINQ
...
1
vote
3answers
36 views
unable to access the linq to sql result in mvc4
I am getting result from theee tables usign linq to sql but i am unable to use the values in the view, how i can do that as i am new to mvc
here is my controller code:
public ActionResult Grid()
{
...
2
votes
2answers
65 views
LINQ Query C# ASP
In English I'm trying to: "Return a list of People who don't have the TeamID in their List of Teams
I have a many-to-many relationship between a Person table and a Team table so each instance of a ...
0
votes
2answers
34 views
Pass LINQ model to view
Can we skip the defining model task and send the class represented in LINQ Data Context to the view? I notice that until now, most of my model is idenctical to / a composition of objects indeltical to ...
0
votes
1answer
40 views
How Do I Convert This LinqToTwitter query from Console results to View results in ASP.NET MVC 4?
Im a rookie and could use some help.
I was looking at examples of LinqToTwitter and am trying to figure out how to display the results in my view instead of the console.
var srch =
(from search ...
-2
votes
1answer
62 views
+50
Messages answers Grouped By the Parent Original Message
I need to group messages by the Messages Answers like this:
Message id = 1
Message answer id = 2 / Parent Message id = 1
Message answer id = 3 / Parent Message id = 1
Message answer id = 4 / Parent ...
0
votes
3answers
59 views
LINQ - “Unable to create constant value of type [type]”?
Here's my error
Unable to create a constant value of type 'Courses.Model.Track'. Only primitive types or enumeration types are supported in this context.
and here's the code that causes it:
...
0
votes
1answer
25 views
MVC linq query and dropdown lists
I am trying to get details from the database to be edited. It actually works fine, my problem is that I am also trying to populate data from the db to two dropdown lists (these dropdown lists work ...
0
votes
2answers
50 views
LINQ left join only works in the ActionResult
I'm trying to get up to speed with MVC, linq, razor, etc. Some things are working and others I just hit dead ends that really discourage me. This is the first one I haven't been able to work out. ...
0
votes
1answer
79 views
Cannot Insert By Using Entity Framework
I have to do Insertion by using Entity Framework and Linq query. For the entity class, all fields are not nullable on the database table. I got some essential field values of the entity class which ...
2
votes
3answers
59 views
ASP.NET MVC 4 - Using Linq to read databse once & use multiple times
I am using Linq to create 4 object collections:
var Restaurants = db.Places.Where(p => p.Tags.Any(t => t.Name == "Restaurant")).ToList();
var Bars = db.Places.Where(p => p.Tags.Any(t => ...
0
votes
2answers
25 views
Error: LINQ to Entities does not recognize the method
I am getting following error with this linq query:
LINQ to Entities does not recognize the method 'System.Collections.Generic.List1[System.Char] ...
0
votes
1answer
46 views
Linq to Entities - Get list of all unique related entities
asp.net mvc 4, Entity Framework 5, SQL Server 2012 Express, Code First
I have a Place model:
public virtual int PlaceID { get; set; }
public virtual ICollection<Tag> Tags { get; set; }
public ...
0
votes
2answers
55 views
Linq to Entities - OrderBy Tags (many to many relationship)
asp.net mvc 4, Entity Framework 5, SQL Server 2012 Express, Code First
I have a Place model:
public virtual int PlaceID { get; set; }
public virtual ICollection<Tag> Tags { get; set; }
public ...
1
vote
1answer
55 views
Linq to Entities - Delete / Add related data (many to many relationship)
I have places - with related tags:
have a Place model:
public virtual int PlaceID { get; set; }
public virtual ICollection<Tag> Tags { get; set; }
public virtual string Name { get; set; }
...
-2
votes
0answers
67 views
Dynamic Data,Pivot Records, with running totals Using Linq C# [closed]
i have a requirement to show report of target achieved by members for a campaign.
campaign has a set duration and i have to show data in report by month
This isn't the actual example, but it's ...
0
votes
1answer
61 views
Linq: Non-static-methods-requires-a-target with select new {model}
I have this LINQ query that returns a Non-static-method exception, because the left join sometimes returns a null value for context.Betas.
return (from t in context.Alphas
join b in ...
1
vote
1answer
51 views
Get Total Count of Unique Items of Generic List
I've been racking by brain all night (again) looking to get the total count of each set of unique items in a list. I was able to get the unique list items. But I can't seem to figure out how to get ...
0
votes
2answers
55 views
syntax error in simple LINQ statement
I am developing MVC app and I am using the LINQ in controller.
I am trying to get one rechord with below query, but its giving an error...
Approval oAP = new Approval();
oAP = ...
0
votes
0answers
126 views
Entity Framework LINQ joining 5 tables on multiple columns (impossible?!)
Please see image:
I am trying to create a LINQ query that combines 5 different tables on 1 to 3 different columns. I am basically taking the examples of 2 tables and repeating the join sections for ...
1
vote
1answer
69 views
Need Left Outer Join in LINQ using Extension Method /Query Syntax
i have a schema with the following structure;
Basically, a menu can have nested childs. And the other tables just holds ItemType, and the Id of the that item i.e ItemTypeId (these are referenced ...
0
votes
0answers
55 views
How to join two tables using raw SQL in asp.net mvc?
My ASP.NET MVC project is database first.
I'm using raw SQL to execute query right now.
query string:
SELECT * FROM [Table_A] INNER JOIN [Table_B] ON [Table_A].[KEY] = [Table_B].[KEY] WHERE ...
And ...
1
vote
1answer
38 views
asp.net mvc convert Expression<Func<TModel, TProperty>> to Expression<Func<TModel, bool>>
I need to implement a custom helper that will return for a string that can have the value "1" or "0" a CheckBox instead of TextBox. So in custom helper I have:
public static MvcHtmlString ...
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 ...
0
votes
4answers
97 views
Linq Remove results with ALL statement
Hi I'm trying to use Linq to remove "all" entities from a list.
Problem: I'm searching for users that have certain certificates in my database. Thing is that it returns them row by row.... But what I ...
0
votes
2answers
60 views
LINQ to Entities is pluralizing table names actually executed in SQL Server. How can I avoid it?
this error is very strange. When I worked with LINQ to SQL in VS2008 I had no problems, but I am in VS2012 now and I found this very strange situation.
First of all, I have VS2012 in Spanish, so ...
0
votes
1answer
31 views
In Razor, how do I set current Model scope?
I am not even sure how I would ask this question. Basically, you know how in Razor you have stuff like this:
@model MyProj.childObj
// Current scope is childObj
@Html.LabelFor(m => m.MyVal)
...
0
votes
1answer
38 views
Multiple Databases in ASP.NET MVC
I'm very first experience in ASP.NET MVC and after I read through a few articles I decided I try my new project with MVC.
And I used ADO.net entity data model and I created Create/ Delete/ Details/ ...
1
vote
1answer
49 views
Linq: Model does not bind properly to Database View(query with UNION)
I have a view composed of a Union between two queries. For instance
SELECT num, title, discipline FROM Table1
UNION
SELECT number, heading, job FROM Table2
However, when I query the database using ...
0
votes
2answers
98 views
Sum in Linq to Sql not returning a value
I'm looking for a query to return the sum of all payments against an invoice ID - however, if there are no payments noted, the query below returns null. Is there any way of it returning 0 instead of ...
-1
votes
3answers
69 views
how can i get list of values in LINQ
I am having an odd problem with LINQ, and I am hoping someone can explain to me what is going on.
I have a model:
public class AnswerModel
{
public string Question { get; set; }
public ...
0
votes
1answer
97 views
The entity or complex type ' ' not be constructed in a LINQ to Entities query
I hope someone can help me because when i edit my code . an exception shows
THIS IS MY CONTROLLER
public IEnumerable<APPLICANT> GetApplicant()
{
IEnumerable<APPLICANT> applicantdata ...
0
votes
1answer
47 views
System.NotSupportedException:The entity or complex type Model.APPLICANT cannot be constructed in a LINQ to Entities query
Currently fixing my Codes until this exception occured
System.NotSupportedException: The entity or complex type Model.APPLICANT' cannot be constructed in a LINQ to Entities query
This is my ...
1
vote
2answers
41 views
how to order by starting date and User like Count i need both to filter then return the List
how to order by starting date and User like Count i need both to filter then return the List
1) sort by date but show by User Like first
public IEnumerable<Check> GetHomeCeeck()
{
return ...
1
vote
1answer
128 views
LEFT JOIN or RIGHT JOIN using LINQ Entity-Framework
TRYING JOINING USING LINQ
What should i use ? LEFT JOIN OR RIGHT JOIN?
APPLICANT TABLE PROFILE TABLE
APPLICANT_ID|profile_id|Applicant_Name| |profile_id|Applicant_Name
...
0
votes
1answer
173 views
Cannot implicitly convert type 'System.Collections.Generic.List<AnonymousType#1>' to 'System.Collections.Generic.IEnumerable<Models>
im having exception at my controller when i add DefaultIfEmpty() statement for me to Right join my datas . .
This is my controller:
public IEnumerable<APPLICANT> GetApplicant()
...
0
votes
2answers
220 views
Cannot implicitly convert type 'System.Collections.Generic.List<AnonymousType#1>' to 'System.Collections.Generic.IEnumerable
Now that im trying the Right Join An Exception Popped up.
This is my Controller
public IEnumerable<APPLICANT> GetApplicant()
{
IEnumerable<APPLICANT> applicantdata = ...
-1
votes
2answers
82 views
The type arguments for method 'System.Linq.Queryable.SelectMany System.Linq.IQueryable
While editing my Repository class an Error pops out
var applicantList = (from a in context.Profiles
join app in context.APPLICANTs
on ...
0
votes
1answer
35 views
Filtering IQueryable result set using parameters
I'm getting confused with this and I know there will be a more slick way of starting it off. The 'result' variable has many records and I want to check if IN_SiteId is > 0 and filter on it, same after ...
0
votes
1answer
39 views
SubmitChanges won't work
I've been searching for a solution to this for way too long and I would really like for this to work.
I'm trying to submit to a database but the changes won't happen even though the entire function ...
1
vote
3answers
95 views
Casting derived class to base class using LINQ to Entities
I have two database tables, one to hold completed items and another to hold incomplete items. Both tables are identical in structure. There are some cases where I would like to quest just one of these ...
0
votes
2answers
77 views
Setting a property of an item in a list based on items in another list
Attention all list / LINQ lovers, I have a small challenge for you.
I have two list:
List<ObjectInfo> firstListObject;
List<ObjectInfo> secondListObject;
The first list is a list that ...





