Tagged Questions
0
votes
3answers
86 views
How to convert SqlDataReader to LINQ way?
I wonder how to convert SqlDataReader to LINQ way?
Here is my SqlDataReader code.
string strConn = "server=xxx.com;database=mydb;User ID=test;Password=test;Trusted_Connection=true;";
SqlConnection ...
1
vote
1answer
26 views
Can't fill my model with a grouped list of a table using LINQ
I'm working on a new project using .NET MVC4 and Entity Framework. I have a products table and i'm trying to select products with grouping.
My model:
public class Cart
{
public long Index { ...
1
vote
1answer
40 views
Unable to create a constant value of type 'ABC'. Only primitive types or enumeration types are supported in this context
I have a linq query in mvc4 application it gives me error
'Unable to create a constant value of type 'CMMIS.Domain.tblCustomer'.
Only primitive types or enumeration types are supported in this
...
0
votes
1answer
89 views
Confusing MVC and LINQ to SQL
In this tutorial http://mstecharchitect.blogspot.com/2009/08/aspnet-mvc-and-linq-to-sql-using.html they recommend using LINQ to SQL in MVC. They then create a repository which basically makes it look ...
0
votes
1answer
53 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)
{
...
0
votes
1answer
46 views
Using multiple LINQ “Include” to get 2nd depth data
I have the following model (simplified)
public partial class Fault
{
public int FaultID { get; set; }
...
public virtual ICollection<FaultComment> FaultComments { get; set; }
...
0
votes
1answer
54 views
asp.net MVC3 LINQ expression
I have used to create a custom role provider.
My Project - asp.net MVC3, Entity Framework 4
There is a problem with the GetRolesForUser method.
Custom RoleProvider - GetRolesForUser Method
// ...
3
votes
2answers
91 views
LINQ to Entities does not recognize the method and this method cannot be translated into a store expression
I call some date in my database using entity frame work. but My below code giving this error
LINQ to Entities does not recognize the method 'SchoolBreifcase.Compliance get_Item(Int32)' method, and ...
0
votes
2answers
62 views
Only parameterless constructors and initializers are supported in LINQ to Entities?
I have a ProductViewModel that converts a DTO (Product) at runtime.
public class ProductViewModel : IViewModel {
public ProductViewModel() {
Categories = new ...
0
votes
1answer
74 views
Is there a way to get a Linq Query to select a timestamp field encoded as a Base64 string?
We have a concurrency check field in our database that is a SQL timestamp.
If I am using a razor view with
@Html.HiddenFor(m => m.DatabaseRowVersion)
it encodes to a Base64 string and binds ...
9
votes
0answers
442 views
Why is Linq to Entity Select Method flip flopping projected lists properties?
I'm have the strangest behavior with linq to entity / Json / MVC.net 4
I have this bit of code, and for some odd reason, every other list's property order is reversed.
var output = db.FooBar.Where(a ...
0
votes
3answers
94 views
LINQ to EF returning all columns and not passing WHERE clause to server
I'm working with LINQ to Entities in Razor. I have something like this:
@foreach(Org o in Model) {
@foreach(User u in o.Users.Where(x => x.Active==true) ) {
<span> @u.FirstName ...
1
vote
1answer
165 views
Convert IQueryable List to Generic List?
I am trying to call GetScanningLogOnSettings(), which queries the ScanningDepartments table to get the departments, then creates an instance of ApplicationLogOnModel, assigns the queried results to a ...
0
votes
1answer
106 views
Why does my ASP.NET MVC 3 with EF application only work when I step through it while debugging?
I have a controller that updates values in a database using Entity Framework. Unfortunately, when I run my application it doesn't seem to work at all. When I put breakpoints in and step through a ...
1
vote
2answers
35 views
User is duplicated when calling Reply
I'm trying to make a simple forum using MVC and I can't figure out why the user that is posting the reply is getting duplicated.
Here is the Reply Action:
[HttpPost]
public ActionResult Reply(string ...
0
votes
1answer
136 views
LINQ to entities against EF in many to many relationship
I'm using ASP.NET MVC4 EF CodeFirst.
Need help to write LINQ (to entities) code in Index action to get collection of Courses which are attended by selected student. The relationship is many to many ...
0
votes
1answer
77 views
Not able to display data in form
When I click on an Edit link for a particular record I want to retrieve data for that id from my controller in a view razor and display in a form for editing. But it's throwing an error. It's ...
1
vote
1answer
210 views
Entity Framework 5 installation verification
I have an ASP.NET MVC 3 project using .NET framework 4.0 and LINQ to SQL. Because I have serious problems of performance with some queries the first time they are executed I decided to use Entity ...
0
votes
0answers
122 views
Calling function in where clause with user defined data
I've got the following problem with oracle database and entity framework in a asp.net mvc environment:
Here is a example sql statement:
SELECT * FROM user.tablename a WHERE ...
0
votes
2answers
68 views
Passing collection from WCF to Controller action: it sends some navigation objects as “null”
Following is the structure of my tables.
Table: Customer
Columns: Id, CityId, Name, IsActive
Table: City
Columns: Id, CityName
I have a WCF method that returns a collection of Customers (IList)
...
0
votes
1answer
355 views
MVC and Entity Framework - How to select column values from multiple tables/navigation property
I'm new in using MVC and LINQ to Entity. I don't know how to select column values from multiple tables with navigation property defined for each table.
Below is the structure of the tables:
...
0
votes
2answers
790 views
Some part of your SQL statement is nested too deeply. Rewrite the query or break it up into smaller queries
I have the folloiwng method inside my asp.net mvc web application and i am using Entity framework as the data access layer:-
public IEnumerable<AaaUserContactInfo> getcontactinfo(long[] ...
0
votes
1answer
183 views
Improving Linq to entities query with not mapped properties
I'm having lot of problems to get the a query properly built before sending it to the server to retrieve filtered results, fisrt i was querying against a hole result set of orders then appliying a ...
2
votes
1answer
84 views
Creating navigation property between 3 entities
I have 3 entities that I am trying to create a mapping between.
[Table("ContentItem")]
public class ContentItem
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int ID ...
0
votes
1answer
35 views
EF: Searching for the newly created object in Database and update the old one in conflict
We have a model named Model1 and it has two attributes. Model1.Time, Model1.Text and Model1.Value, of course it has also ID as the requirement.
We are receiving the values from a SOAP service and ...
0
votes
1answer
36 views
Predicate that parses a CSV list and matches partial values in Linq
I am using the code snippet below to parse a list of zip codes from a form and then building a predicate to return records from the Entity that match any zip codes in the parsed list.
...
2
votes
4answers
115 views
LINQ to Entities query error
I am encountered an error that I am not familier with. I tried to google with no success.
I wrote the following query where I am having this error.
The entity or complex type ...
0
votes
1answer
105 views
Add existing database view/table from object explorer to entity diagram
I have created a new asp.net 2012 mvc application. I am moving an existing web forms application over to the mvc model. The web forms application uses linq to sql, but since it's no longer going to ...
0
votes
1answer
78 views
Last record in Model. Using Linq
from stu in Students
where stu.Department == 'CS'
select stu
Above is the linq query. I want return all the students of CS department and show them in View. To View i'm passing a model Student whose ...
0
votes
2answers
95 views
Passing ViewModel through TempData?
I need to maintain my ViewModel data when doing a Redirect to Action. I understand I can do this using tempdata, but I'm not sure what that looks like. Here is my re-direct:
if(StateList == "MN" ...
2
votes
3answers
354 views
C# moving an item up/down
I got a list that contains items. They all got a 'Sort' column. The sort column is of type int, and it's unique.
Scenario:
sort 1; sort 2; sort 3;
If the user moves an item up (for example sort ...
0
votes
1answer
77 views
Filtering query based on condition
I am trying to filter the results on my query based on whether or not they contain the string "baby".
IEnumerable<ICD.ViewModels.HomeSearchViewModel> query =
...
2
votes
2answers
82 views
Filtering GroupJoin Query
I have a GroupJoin Query that returns a result like this:
IEnumerable<ICD.ViewModels.HomeSearchViewModel> query = ICDUnitOfWork.AlphaGroups.Find()
.GroupJoin(ICDUnitOfWork.Alphas.Find(),
...
0
votes
2answers
64 views
In MVC3 how to get a list of models with Linq?
In my database context class I have:
Imports System.Data.Entity
Public Class MusicStoreEntities
Inherits DbContext
Public Property Albums As DbSet(Of Album)
Public Property Descriptions ...
0
votes
1answer
237 views
How to join ef navigation properties in linq to entities
I try to get the following sql written in Linq to Entities:
SELECT * FROM SafetySheets AS SS
JOIN UserProfiles AS UP ON SS.CreatedBy = UP.UserId
JOIN SafetyOfficers AS SO ON SS.SafetyOfficer_Id = ...
1
vote
3answers
350 views
LINQ to Entities - How to return a single string value from entity
I am working in asp mvc 3 app. I have a model/entity called History. I have a linq query that returns one value. Depending on what I do, I either get a "Object not set to an instance" error in the ...
0
votes
1answer
71 views
Call a method in Linq to EF
In order to create a ViewModel, I tried to call a method GetName() to find the FirstName and LastName for UserID and then add it to the model. But the error tells "Linq to Entities does not recognize ...
0
votes
2answers
62 views
dropdownlist value
I have the following code populate for dropdownlist. Is there any way i can add an item called "Select Value" in the following
private void PopulateCustStatus()
{
ViewData["custStatus"] = ...
1
vote
3answers
104 views
Why isn't database updating?
I have the following code:
model = new Option();
model.val1 = newVal1;
model.val2 = newVal2;
model.val3 = newVal3;
//this saves new record just fine
if (recordCount < 1)
{
...
5
votes
2answers
164 views
Concatenated Where clause with array of strings
I am wondering if there is a way to create a concatenated WHERE clause using an array of int. I need to get the results for the entire array combined. Can I do something like:
public ViewResult ...
1
vote
1answer
521 views
The specified type member 'Items' is not supported in LINQ to Entities
I'm making my project using code-first approach for the first time and I've never seen this error pop up when I was creating my projects using database-first approach.
I know that there is a lot of ...
2
votes
1answer
185 views
MVC, Strongly Typed Views and Entity Framework dilemma
I've read quite a few Q & As relating to logic in views within an MVC architecture and in most cases I agree that business logic shouldn't live in a view. However having said this, I constantly ...
0
votes
3answers
367 views
How to add new Items to an Existing List c#?
I am Uploading an Excel file and after reading that file getting result in this.
var data = from c in excel.Worksheet<QuestionMaster>()
select new
{
...
0
votes
1answer
169 views
When Selecting Multiple Values in Listbox getting exception Index was outside the bounds of the array in Linq to Entity [closed]
I have a multiple values in ListBox. When I am Selecting a Single Value my code is working fine.
But when I am Selecting Multiple Values it is giving me this Exception:-
Index was outside the bounds ...
0
votes
2answers
130 views
LINQ To Entities cannot generate string MVC Razor
When Using LINQ to get information I use the following method
var salt_water_disposals = _SaltWaterDisposals.SaltWaterDisposals.Select(sw => new SaltWaterModel
{
...
2
votes
1answer
190 views
LINQ to Entities does not recognize the method 'Int32 Int32(System.String)' method in MVC c#
When I am trying to Query Databae Context using Linq to Entities I am getting this Exception.
LINQ to Entities does not recognize the method 'Int32 Int32(System.String)' method, and this ...
0
votes
3answers
186 views
Return Original datatype after LINQ group by
I need my LINQ Query to return the Product Datatype, after being grouped. It seems to be encased into an anonymous psuedo family.
I have some properties in Product that I don't care about, just ...
0
votes
1answer
62 views
Model binding for nested objects
I have a class
public class Offer
{
public Int32 OfferId { get; set; }
public string OfferTitle { get; set; }
public string OfferDescription { get; set; }
}
and another class
public ...
0
votes
1answer
133 views
Only parameterless constructors and initializers are supported in LINQ to Entities
There are several same questions that have same problem. But I cant find solution for me.
LinQ
var result = (from a in entity.TblAnalizorReadings
group a by new { date = new ...
0
votes
1answer
78 views
How to apply projections on FK property in Entity Framework?
Using this answer I am now able to store my projection logic in an Expression and use it inside another projections.
However, when I started to implement this approch in my solution, I found out, ...


