This commit is contained in:
2020-01-21 21:06:28 +00:00
parent 1c73d9c422
commit bfef5d4787

View File

@@ -25,7 +25,7 @@ namespace AyaNova.DataList
// "; // ";
// var AyaObjectFields = AyaObjectFieldDefinitions.AyaObjectFields(AyaObjectFieldDefinitions.TEST_WIDGET_USER_EMAIL_ADDRESS_LIST_KEY); // var AyaObjectFields = AyaObjectFieldDefinitions.AyaObjectFields(AyaObjectFieldDefinitions.TEST_WIDGET_USER_EMAIL_ADDRESS_LIST_KEY);
var DataList=DataListFactory.GetAyaDataList(nameof(TestWidgetUserEmailDataList)); var DataList = DataListFactory.GetAyaDataList(DataListKey);
//TODO: PUt this in the template biz class ultimately and modify sqlselectbuilder to use it //TODO: PUt this in the template biz class ultimately and modify sqlselectbuilder to use it
@@ -55,7 +55,7 @@ namespace AyaNova.DataList
//this is where the full SQL statement needs to be made with JOINS etc //this is where the full SQL statement needs to be made with JOINS etc
//TODO: Can this be moved away into the objectfields or new object //TODO: Can this be moved away into the objectfields or new object
//var qFrom = "from awidget left outer join auser on (awidget.userid=auser.id) left outer join auseroptions on (auser.id=auseroptions.userid)"; //var qFrom = "from awidget left outer join auser on (awidget.userid=auser.id) left outer join auseroptions on (auser.id=auseroptions.userid)";
var qFrom=DataList.SQLFrom; var qFrom = DataList.SQLFrom;
//FILTERED? //FILTERED?
DataFilter TheFilter = null; DataFilter TheFilter = null;