You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select u.nombre
from expediente e
inner join clave_principal cp on cp.id = e.clave_principal_id
inner join area_unidad au on au.id = cp.area_unidad_id
inner join unidad u on u.id = au.unidad_id
where e.id = 38269
I have a datatable with 4 fields:
TableName: Expediente
Select: ClavePrincipal.AreaUnidad.Unidad.Nombre as NombreUnidad???
<Table("appointment")>
Public Class appointment
<ComponentModel.DataAnnotations.Key>
<Column("id", Order:=0)>
Public Property id As Integer
<Column("descriptionid")>
Public Property descriptionid As Integer?
<ForeignKey("descriptionid")>
Public Property description As description
End Class
<Table("description")>
Public Class description
<ComponentModel.DataAnnotations.Key>
<Column("id", Order:=0)>
Public Property id As Integer
<Column("text")>
Public Property text As String
End Class
Hello,
I'm trying resolve this query with DynamicLinq:
I have a datatable with 4 fields:
And I want get the value the select field dynamically.
I construct a Queryable from TableName and I transform these fields:
My classes:
I'm using .Net 6 ant the last System.Linq.Dynamic.Core = 1.3
Regards,
The text was updated successfully, but these errors were encountered: