We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Product and Version Used: 4.10
Steps to Reproduce: Create a method with DateTime as argument which is in turn used in a LINQ Query Actual Behavior:
public IQueryable<RandomObject> Function(DateTime start, DateTime end)// <-- RCS1231 { return from randomObject in _administrationContext.RandomObjects where randomObject.Start <= end && randomObject.End >= start select randomObject; }
But LINQ doesn't support ref read-only in this way.
The text was updated successfully, but these errors were encountered:
e0c64de
Check if parameter reference is inside expression tree (fix dotnet#902)…
d79628f
… (RCS1231)
No branches or pull requests
Product and Version Used:
4.10
Steps to Reproduce:
Create a method with DateTime as argument which is in turn used in a LINQ Query
Actual Behavior:
But LINQ doesn't support ref read-only in this way.
The text was updated successfully, but these errors were encountered: