Praveen Potturu

Results 28 comments of Praveen Potturu

> @nvmkpk is this what you also see when running the integration test-suite? Yes but I tried it with my own test project. I was able to navigate to feature...

I ran into this with my extension. To work around it, I set the initial width and height of the iframe is 0 and make it larger little later using...

The reason may be that bing does it differently for different regions.

> @ryanbuening I think it would be possible to suppress the diagnostic if a class is derived from `ComponentBase`. Can you please create a new issue for it? What about...

Something like: ``` IQueryable query = dbContext.Students; if(!string.IsNullOrEmpty(name)) { query = query.Where(x => string.Equals(x.Name.ToLower(), name.ToLower()); } ``` The `Where` call is to `Queryable.Where` and is a LINQ to SQL call....

Not in case of Oracle. Oracle does case sensitive comparisons.

RCS1202 also does not apply to LINQ to SQL.

If calling a custom implemented GetHashCode as in this example, it does not make sense but if we are calling the compiler generated GetHashCode it is ok to use it...

Something like: ``` public void Function(string inStr, out int out1, out DateTime out2) { ... } ``` to ``` public (int, DateTime) Function(string inStr) { int out1; DateTime out2; ......