QuerySource ClassNFX Class Library

[This is preliminary documentation and is subject to change.]

Represents query source code with pre-processed pragmas
Inheritance Hierarchy

OnlineSystem Object
  NFX.DataAccess.CRUD QuerySource

Namespace: NFX.DataAccess.CRUD
Assembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

public sealed class QuerySource : INamed
Examples

#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
See Also