[This is preliminary documentation and is subject to change.]
Represents query source code with pre-processed pragmas
System Object NFX.DataAccess.CRUD QuerySourceNamespace: NFX.DataAccess.CRUDAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public sealed class QuerySource : INamed
public sealed class QuerySource : INamed
Public NotInheritable Class QuerySource
Implements INamed
Public NotInheritable Class QuerySource
Implements INamed
public ref class QuerySource sealed : INamed
public ref class QuerySource sealed : INamed
[<SealedAttribute>]
type QuerySource =
class
interface INamed
end
[<SealedAttribute>]
type QuerySource =
class
interface INamed
end
#pragma
modify=tbl_patient
key=counter,ssn
ignore=doctor_phone,doctor_id
load=
store=
@last_name=lname
@first_name=fname
.doctor_id=This is description for column
select
t1.ssn,
t1.lname as last_name,
t1.fname as first_name,
t1.c_doctor,
t2.phone as doctor_phone,
t2.NPI as doctor_id
from
tbl_patient t1
left outer join tbl_doctor t2 on t1.c_doctor = t2.counter
where
t1.lname like ?LN