Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im trying to instance a Entity called "Produccion" from LINQDataContext in this way :

 Demo.View.Data.PRODUCCION pocoProduccion = (from m in db.MEDICOXPROMOTORs
                                             join a in db.ATENCIONs on m.cmp equals a.cmp
                                             join e in db.EXAMENXATENCIONs on a.numeroatencion equals e.numeroatencion
                                             join c in db.CITAs on e.numerocita equals c.numerocita
                                             where e.codigo == codigoExamenxAtencion
                                             select new Demo.View.Data.PRODUCCION
                                             {
                                                 cmp = a.cmp,
                                                 bonificacion = comi,
                                                 valorventa = precioEstudio,
                                                 codigoestudio = lblCodigoEstudio.Content.ToString(),
                                                 codigopaciente = Convert.ToInt32(lblCodigoPaciente.Content.ToString()),
                                                 codigoproduccion = Convert.ToInt32(lblNroInforme.Content.ToString()),
                                                 codigopromotor = m.codigopromotor,
                                                 fecha = Convert.ToDateTime(DateTime.Today.ToShortDateString()),
                                                 numeroinforme = Convert.ToInt32(lblNroInforme.Content.ToString()),
                                                 revisado = false,
                                                 codigozona = (c.codigozona.Value == null ? Convert.ToInt32(c.codigozona) : 0),
                                                 codigoclinica = Convert.ToInt32(c.codigoclinica),
                                                 codigoclase = e.codigoclase,
                                             }
                                             ).FirstOrDefault();

Im getting the following error :

System.NotSupportedException was caught
  Message="No se permite la construcción explícita del tipo de entidad 'Demo.View.Data.PRODUCCION' en una consulta."
  Source="System.Data.Linq"
  StackTrace:
       en System.Data.Linq.SqlClient.QueryConverter.VisitMemberInit(MemberInitExpression init)
       en System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
       en System.Data.Linq.SqlClient.QueryConverter.Visit(Expression node)
       en System.Data.Linq.SqlClient.QueryConverter.VisitSelect(Expression sequence, LambdaExpression selector)
       en System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
       en System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
       en System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
       en System.Data.Linq.SqlClient.QueryConverter.Visit(Expression node)
       en System.Data.Linq.SqlClient.QueryConverter.VisitFirst(Expression sequence, LambdaExpression lambda, Boolean isFirst)
       en System.Data.Linq.SqlClient.QueryConverter.VisitSequenceOperatorCall(MethodCallExpression mc)
       en System.Data.Linq.SqlClient.QueryConverter.VisitMethodCall(MethodCallExpression mc)
       en System.Data.Linq.SqlClient.QueryConverter.VisitInner(Expression node)
       en System.Data.Linq.SqlClient.QueryConverter.ConvertOuter(Expression node)
       en System.Data.Linq.SqlClient.SqlProvider.BuildQuery(Expression query, SqlNodeAnnotations annotations)
       en System.Data.Linq.SqlClient.SqlProvider.System.Data.Linq.Provider.IProvider.Execute(Expression query)
       en System.Data.Linq.DataQuery`1.System.Linq.IQueryProvider.Execute[S](Expression expression)
       en System.Linq.Queryable.FirstOrDefault[TSource](IQueryable`1 source)
       en Demo.View.InformeMedico.realizarProduccionInforme(Int32 codigoExamenxAtencion, Double precioEstudio, Int32 comi) en D:\cs_InformeMedico\app\InformeMedico.xaml.cs:línea 602
       en Demo.View.InformeMedico.UpdateEstadoEstudio(Int32 codigo, Char state) en D:\cs_InformeMedico\app\InformeMedico.xaml.cs:línea 591
       en Demo.View.InformeMedico.btnGuardar_Click(Object sender, RoutedEventArgs e) en D:\cs_InformeMedico\app\InformeMedico.xaml.cs:línea 683
  InnerException: 

Is that now allowed in LINQ2SQL?

share|improve this question

5 Answers

up vote 16 down vote accepted

Entities can be created outside of queries and inserted into the data store using a DataContext. You can then retrieve them using queries. However, you can't create entities as part of a query.

share|improve this answer
8  
thats means more lines of code right? – Angel Escobedo Apr 24 '09 at 19:58
How can I pass the select values from that returning query to an Entity, I mean dont using members, just like "varReturningQuery as ProductionEntity"? – Angel Escobedo Apr 24 '09 at 20:00

I just ran into the same issue.

I found a very easy solution.

var a = att as Attachment;

Func<Culture, AttachmentCulture> make = 
    c => new AttachmentCulture { Culture = c };

var culs = from c in dc.Cultures
           let ac = c.AttachmentCultures.SingleOrDefault( 
                                           x => x.Attachment == a)
           select ac == null ? make(c) : ac;

return culs;
share|improve this answer
select may be better written as select ac ?? make(c); – recursive Oct 28 '09 at 16:45
2  
Excellent solution - thanks! Any ideas why this isn't allowed without doing this? – Whisk Jul 1 '10 at 13:20
1  
@Whisk - in case you're still interested, I found social.msdn.microsoft.com/forums/en-US/linqprojectgeneral/… - '...Constructing entity instances manually as a projection pollutes the cache with potentially malformed objects...' – Alex Humphrey Sep 10 '10 at 8:04

I am finding this limitation to be very annoying, and going against the common trend of not using SELECT * in queries.

Still with c# anonymous types there is a workaround, by fetching the objects into an anonymous type, and then copy it over into the correct type.

For example:

var q = from emp in employees where emp.ID !=0
select new {Name = emp.First + " " + emp.Last, EmployeeId = emp.ID }
var r = q.ToList();
List<User> users = new List<User>(r.Select(new User
   {
        Name = r.Name,
        EmployeeId = r.EmployeeId 
   }));

And in the case when we deal with a single value (as in the situation described in the question) it is even easier, and we just need to copy directly the values:

var q = from emp in employees where emp.ID !=0 
select new { Name = emp.First + " " + emp.Last, EmployeeId = emp.ID }
var r = q.FirstOrDefault();
User user = new User { Name = r.Name, EmployeeId = r.ID };

If the name of the properties match the database columns we can do it even simpler in the query, by doing select

var q = from emp in employees where emp.ID !=0 
select new { emp.First, emp.Last, emp.ID }

One might go ahead and write a lambda expression that can copy automatically based on the property name, without needing to specify the values explictly.

share|improve this answer

I have found that if you do a .ToList() on the query before trying to contruct new objects it works

share|improve this answer

Within the book "70-515 Web Applications Development with Microsoft .NET Framework 4 - Self paced training kit", page 638 has the following example to output results to a strongly typed object:

    IEnumerable<User> users = from emp in employees where emp.ID !=0
    select new User
    {
    Name = emp.First + " " + emp.Last,
    EmployeeId = emp.ID
    }

Mark Pecks advice appears to contradict this book - however, for me this example still displays the above error as well, leaving me somewhat confused. Is this linked to version differences? Any suggestions welcome.

share|improve this answer
2  
The above example works if "User" is not part of the DataContext. – Stone Jun 25 '12 at 9:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.