Click here to Skip to main content
15,893,904 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Guys,

Using MVC3 ASPX engine.

Getting error on for each "The entity or complex type 'EPatient.Models.cls_Measurement' cannot be constructed in a LINQ to Entities query."

Already tried .AsEnuerable / .Tolist() / .AsQuerable

Please let us know the code how to remove this error.


XML
<% foreach (var item in Model) { %>
        <tr>
            <td>
                <%: Html.DisplayFor(modelItem => item.Measure) %>
            </td>
            <td>
                <%: Html.DisplayFor(modelItem => item.MeasureVal) %>
            </td>
<% } %>


[HttpGet]
        public ViewResult Doctor(int LoginUser)
        {
            EPatient.Models.EPatientEntitiesContext_Measurement dbMeasurement = new EPatient.Models.EPatientEntitiesContext_Measurement();

            var userlist = (from U in db.E_Users
                           where U.DoctorID == LoginUser
                           select U.UserID).ToList();

            IEnumerable<cls_Measurement> emplist = (from M in dbMeasurement.E_Measures
                                                    where M.Status == 1 
                                                    select new cls_Measurement { Measure = M.Measure, MeasureVal = M.MeasureVal, InsulinType = M.InsulinType, Insulin_amount = M.Insulin_amount, Weight = M.Weight, Height = M.Height, Min_pressure = M.Min_pressure, Max_pressure = M.Max_pressure, Hypoglycemia = M.Hypoglycemia, Test_value = M.Test_value, Comment = M.Comment }).AsQueryable();

            
            
            return View(emplist);  
        }


Waiting for solution....!!!

Thanks,
Posted

1 solution

This is by design, EF doesn't allow you to project the results of a query onto a mapped entity. You can do use a DTO or anonymous type which doesn't inherit from the mapped entity
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900