While using a subquery inside the inner query, variable declared in outer query becomes unaccesible to inner...
My project has subqueries used inside nested Query.While using a subquery inside the inner query, variable declared in outer query becomes unaccesible to inner queries inside it.
Error found while debugging nested queries:
1. Unknown column 'Join3.appcategoryid' in 'field list'
2. Unknown column 'Extent1.taxonomyid' in 'where clause'
enter code here :
public static dynamic GetTaxonomies
(int businessUnitId, int memberId, string businessUnitType)
{
using (var db = new ProtocolManagementDatabaseEntities())
{
var taxonomies = (from taxonomy in db.taxonomies
join businessUnitTaxonomy in db.businessunittaxonomies on taxonomy.taxonomyid equals businessUnitTaxonomy.taxonomyid
let TaxonomyID = taxonomy.taxonomyid
where businessUnitTaxonomy.businessunitid == businessUnitId
select new
{
TaxonomyId = taxonomy.taxonomyid,
TaxonomyName = taxonomy.taxonomyname,
preferenceValue = db.userpreferences.Where(x => x.entitycolumnvalue == TaxonomyID &&
x.memberid == memberId && x.entitytablename == "Taxonomy" && x.sequencenumber == 5)
.Select(x => x.isvisible).FirstOrDefault()
AppCategory = (from appCategory in db.appcategories
join appCategoryTaxonomy in db.appcategorytaxonomies on appCategory.appcategoryid equals appCategoryTaxonomy.appcategoryid
let AppCategoryID = appCategory.appcategoryid
where appCategory.parentappcategoryid == null &&
appCategory.appcategorylevel.Equals("AppCategoryName")
&& appCategoryTaxonomy.taxonomyid == TaxonomyID &&
appCategoryTaxonomy.businessunitid == businessUnitId
orderby appCategory.name ascending
select new
{
AppCategoryId = appCategory.appcategoryid,
AppCategoryName = appCategory.name,
AppCategoryDeletionEnable = db.appcategories.Where(x => x.parentappcategoryid == AppCategoryID)
.FirstOrDefault() != null ? true : false
SubCategory = from subCategory in db.appcategories
let SubCategoryID = db.appcategories.Where(x => x.appcategoryid == subCategory.appcategoryid).Select(x => x.appcategoryid).FirstOrDefault()
where subCategory.parentappcategoryid == AppCategoryID && subCategory.businessunitid == businessUnitId
orderby subCategory.name ascending
select new
{
AppCategoryId = subCategory.appcategoryid,
AppCategoryName = subCategory.name,
Description = subCategory.description,
IsGlobal = subCategory.isglobal,
IsEnable = subCategory.isenable,
ParentAppCategoryID = appCategory.parentappcategoryid,
SubCategoryDeleteEnable = db.protocolappcategories.Where(x => x.appcategoryid == SubCategoryID)
.FirstOrDefault() != null ? true : false,
AppCategoryLevel = subCategory.appcategorylevel,
IsExpand = false,
}
}).ToList()
}).ToList();
return taxonomies;
}
}
c# linq
add a comment |
My project has subqueries used inside nested Query.While using a subquery inside the inner query, variable declared in outer query becomes unaccesible to inner queries inside it.
Error found while debugging nested queries:
1. Unknown column 'Join3.appcategoryid' in 'field list'
2. Unknown column 'Extent1.taxonomyid' in 'where clause'
enter code here :
public static dynamic GetTaxonomies
(int businessUnitId, int memberId, string businessUnitType)
{
using (var db = new ProtocolManagementDatabaseEntities())
{
var taxonomies = (from taxonomy in db.taxonomies
join businessUnitTaxonomy in db.businessunittaxonomies on taxonomy.taxonomyid equals businessUnitTaxonomy.taxonomyid
let TaxonomyID = taxonomy.taxonomyid
where businessUnitTaxonomy.businessunitid == businessUnitId
select new
{
TaxonomyId = taxonomy.taxonomyid,
TaxonomyName = taxonomy.taxonomyname,
preferenceValue = db.userpreferences.Where(x => x.entitycolumnvalue == TaxonomyID &&
x.memberid == memberId && x.entitytablename == "Taxonomy" && x.sequencenumber == 5)
.Select(x => x.isvisible).FirstOrDefault()
AppCategory = (from appCategory in db.appcategories
join appCategoryTaxonomy in db.appcategorytaxonomies on appCategory.appcategoryid equals appCategoryTaxonomy.appcategoryid
let AppCategoryID = appCategory.appcategoryid
where appCategory.parentappcategoryid == null &&
appCategory.appcategorylevel.Equals("AppCategoryName")
&& appCategoryTaxonomy.taxonomyid == TaxonomyID &&
appCategoryTaxonomy.businessunitid == businessUnitId
orderby appCategory.name ascending
select new
{
AppCategoryId = appCategory.appcategoryid,
AppCategoryName = appCategory.name,
AppCategoryDeletionEnable = db.appcategories.Where(x => x.parentappcategoryid == AppCategoryID)
.FirstOrDefault() != null ? true : false
SubCategory = from subCategory in db.appcategories
let SubCategoryID = db.appcategories.Where(x => x.appcategoryid == subCategory.appcategoryid).Select(x => x.appcategoryid).FirstOrDefault()
where subCategory.parentappcategoryid == AppCategoryID && subCategory.businessunitid == businessUnitId
orderby subCategory.name ascending
select new
{
AppCategoryId = subCategory.appcategoryid,
AppCategoryName = subCategory.name,
Description = subCategory.description,
IsGlobal = subCategory.isglobal,
IsEnable = subCategory.isenable,
ParentAppCategoryID = appCategory.parentappcategoryid,
SubCategoryDeleteEnable = db.protocolappcategories.Where(x => x.appcategoryid == SubCategoryID)
.FirstOrDefault() != null ? true : false,
AppCategoryLevel = subCategory.appcategorylevel,
IsExpand = false,
}
}).ToList()
}).ToList();
return taxonomies;
}
}
c# linq
Is error coming from one of the queries returning null?
– jdweng
Nov 21 '18 at 13:53
None of the query returns NULL. But the error occurs when we are using the MariaDB, the query works proper for PostGres and Sql Server Database.
– Raj Joddar
Nov 22 '18 at 4:01
Are you sure the data is the same in all the database? The error is not what the title of the posting says. The error is due to the columns in the database : 1. Unknown column 'Join3.appcategoryid' in 'field list' 2. Unknown column 'Extent1.taxonomyid'
– jdweng
Nov 22 '18 at 11:23
add a comment |
My project has subqueries used inside nested Query.While using a subquery inside the inner query, variable declared in outer query becomes unaccesible to inner queries inside it.
Error found while debugging nested queries:
1. Unknown column 'Join3.appcategoryid' in 'field list'
2. Unknown column 'Extent1.taxonomyid' in 'where clause'
enter code here :
public static dynamic GetTaxonomies
(int businessUnitId, int memberId, string businessUnitType)
{
using (var db = new ProtocolManagementDatabaseEntities())
{
var taxonomies = (from taxonomy in db.taxonomies
join businessUnitTaxonomy in db.businessunittaxonomies on taxonomy.taxonomyid equals businessUnitTaxonomy.taxonomyid
let TaxonomyID = taxonomy.taxonomyid
where businessUnitTaxonomy.businessunitid == businessUnitId
select new
{
TaxonomyId = taxonomy.taxonomyid,
TaxonomyName = taxonomy.taxonomyname,
preferenceValue = db.userpreferences.Where(x => x.entitycolumnvalue == TaxonomyID &&
x.memberid == memberId && x.entitytablename == "Taxonomy" && x.sequencenumber == 5)
.Select(x => x.isvisible).FirstOrDefault()
AppCategory = (from appCategory in db.appcategories
join appCategoryTaxonomy in db.appcategorytaxonomies on appCategory.appcategoryid equals appCategoryTaxonomy.appcategoryid
let AppCategoryID = appCategory.appcategoryid
where appCategory.parentappcategoryid == null &&
appCategory.appcategorylevel.Equals("AppCategoryName")
&& appCategoryTaxonomy.taxonomyid == TaxonomyID &&
appCategoryTaxonomy.businessunitid == businessUnitId
orderby appCategory.name ascending
select new
{
AppCategoryId = appCategory.appcategoryid,
AppCategoryName = appCategory.name,
AppCategoryDeletionEnable = db.appcategories.Where(x => x.parentappcategoryid == AppCategoryID)
.FirstOrDefault() != null ? true : false
SubCategory = from subCategory in db.appcategories
let SubCategoryID = db.appcategories.Where(x => x.appcategoryid == subCategory.appcategoryid).Select(x => x.appcategoryid).FirstOrDefault()
where subCategory.parentappcategoryid == AppCategoryID && subCategory.businessunitid == businessUnitId
orderby subCategory.name ascending
select new
{
AppCategoryId = subCategory.appcategoryid,
AppCategoryName = subCategory.name,
Description = subCategory.description,
IsGlobal = subCategory.isglobal,
IsEnable = subCategory.isenable,
ParentAppCategoryID = appCategory.parentappcategoryid,
SubCategoryDeleteEnable = db.protocolappcategories.Where(x => x.appcategoryid == SubCategoryID)
.FirstOrDefault() != null ? true : false,
AppCategoryLevel = subCategory.appcategorylevel,
IsExpand = false,
}
}).ToList()
}).ToList();
return taxonomies;
}
}
c# linq
My project has subqueries used inside nested Query.While using a subquery inside the inner query, variable declared in outer query becomes unaccesible to inner queries inside it.
Error found while debugging nested queries:
1. Unknown column 'Join3.appcategoryid' in 'field list'
2. Unknown column 'Extent1.taxonomyid' in 'where clause'
enter code here :
public static dynamic GetTaxonomies
(int businessUnitId, int memberId, string businessUnitType)
{
using (var db = new ProtocolManagementDatabaseEntities())
{
var taxonomies = (from taxonomy in db.taxonomies
join businessUnitTaxonomy in db.businessunittaxonomies on taxonomy.taxonomyid equals businessUnitTaxonomy.taxonomyid
let TaxonomyID = taxonomy.taxonomyid
where businessUnitTaxonomy.businessunitid == businessUnitId
select new
{
TaxonomyId = taxonomy.taxonomyid,
TaxonomyName = taxonomy.taxonomyname,
preferenceValue = db.userpreferences.Where(x => x.entitycolumnvalue == TaxonomyID &&
x.memberid == memberId && x.entitytablename == "Taxonomy" && x.sequencenumber == 5)
.Select(x => x.isvisible).FirstOrDefault()
AppCategory = (from appCategory in db.appcategories
join appCategoryTaxonomy in db.appcategorytaxonomies on appCategory.appcategoryid equals appCategoryTaxonomy.appcategoryid
let AppCategoryID = appCategory.appcategoryid
where appCategory.parentappcategoryid == null &&
appCategory.appcategorylevel.Equals("AppCategoryName")
&& appCategoryTaxonomy.taxonomyid == TaxonomyID &&
appCategoryTaxonomy.businessunitid == businessUnitId
orderby appCategory.name ascending
select new
{
AppCategoryId = appCategory.appcategoryid,
AppCategoryName = appCategory.name,
AppCategoryDeletionEnable = db.appcategories.Where(x => x.parentappcategoryid == AppCategoryID)
.FirstOrDefault() != null ? true : false
SubCategory = from subCategory in db.appcategories
let SubCategoryID = db.appcategories.Where(x => x.appcategoryid == subCategory.appcategoryid).Select(x => x.appcategoryid).FirstOrDefault()
where subCategory.parentappcategoryid == AppCategoryID && subCategory.businessunitid == businessUnitId
orderby subCategory.name ascending
select new
{
AppCategoryId = subCategory.appcategoryid,
AppCategoryName = subCategory.name,
Description = subCategory.description,
IsGlobal = subCategory.isglobal,
IsEnable = subCategory.isenable,
ParentAppCategoryID = appCategory.parentappcategoryid,
SubCategoryDeleteEnable = db.protocolappcategories.Where(x => x.appcategoryid == SubCategoryID)
.FirstOrDefault() != null ? true : false,
AppCategoryLevel = subCategory.appcategorylevel,
IsExpand = false,
}
}).ToList()
}).ToList();
return taxonomies;
}
}
c# linq
c# linq
asked Nov 21 '18 at 13:43


Raj JoddarRaj Joddar
63
63
Is error coming from one of the queries returning null?
– jdweng
Nov 21 '18 at 13:53
None of the query returns NULL. But the error occurs when we are using the MariaDB, the query works proper for PostGres and Sql Server Database.
– Raj Joddar
Nov 22 '18 at 4:01
Are you sure the data is the same in all the database? The error is not what the title of the posting says. The error is due to the columns in the database : 1. Unknown column 'Join3.appcategoryid' in 'field list' 2. Unknown column 'Extent1.taxonomyid'
– jdweng
Nov 22 '18 at 11:23
add a comment |
Is error coming from one of the queries returning null?
– jdweng
Nov 21 '18 at 13:53
None of the query returns NULL. But the error occurs when we are using the MariaDB, the query works proper for PostGres and Sql Server Database.
– Raj Joddar
Nov 22 '18 at 4:01
Are you sure the data is the same in all the database? The error is not what the title of the posting says. The error is due to the columns in the database : 1. Unknown column 'Join3.appcategoryid' in 'field list' 2. Unknown column 'Extent1.taxonomyid'
– jdweng
Nov 22 '18 at 11:23
Is error coming from one of the queries returning null?
– jdweng
Nov 21 '18 at 13:53
Is error coming from one of the queries returning null?
– jdweng
Nov 21 '18 at 13:53
None of the query returns NULL. But the error occurs when we are using the MariaDB, the query works proper for PostGres and Sql Server Database.
– Raj Joddar
Nov 22 '18 at 4:01
None of the query returns NULL. But the error occurs when we are using the MariaDB, the query works proper for PostGres and Sql Server Database.
– Raj Joddar
Nov 22 '18 at 4:01
Are you sure the data is the same in all the database? The error is not what the title of the posting says. The error is due to the columns in the database : 1. Unknown column 'Join3.appcategoryid' in 'field list' 2. Unknown column 'Extent1.taxonomyid'
– jdweng
Nov 22 '18 at 11:23
Are you sure the data is the same in all the database? The error is not what the title of the posting says. The error is due to the columns in the database : 1. Unknown column 'Join3.appcategoryid' in 'field list' 2. Unknown column 'Extent1.taxonomyid'
– jdweng
Nov 22 '18 at 11:23
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53413429%2fwhile-using-a-subquery-inside-the-inner-query-variable-declared-in-outer-query%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53413429%2fwhile-using-a-subquery-inside-the-inner-query-variable-declared-in-outer-query%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Is error coming from one of the queries returning null?
– jdweng
Nov 21 '18 at 13:53
None of the query returns NULL. But the error occurs when we are using the MariaDB, the query works proper for PostGres and Sql Server Database.
– Raj Joddar
Nov 22 '18 at 4:01
Are you sure the data is the same in all the database? The error is not what the title of the posting says. The error is due to the columns in the database : 1. Unknown column 'Join3.appcategoryid' in 'field list' 2. Unknown column 'Extent1.taxonomyid'
– jdweng
Nov 22 '18 at 11:23