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
i have a stored procedure that has a column that sets to a bit value of 1 or 0 based on some conditions. Running this in SSMS, returns the proper value in this column. However; when executing this stored proc with EF Core, it always returns false. A sample condition would be:
Case when "something is true" then convert(bit, 1) else convert(bit,0) end as MyColumn
I have the latest version of EF Core power tools installed. v 2.6.893
The text was updated successfully, but these errors were encountered:
i have a stored procedure that has a column that sets to a bit value of 1 or 0 based on some conditions. Running this in SSMS, returns the proper value in this column. However; when executing this stored proc with EF Core, it always returns false. A sample condition would be:
Case when "something is true" then convert(bit, 1) else convert(bit,0) end as MyColumn
I have the latest version of EF Core power tools installed. v 2.6.893
The text was updated successfully, but these errors were encountered: