jods

Results 104 issues of jods

This is something that Aurelia absolutely needs, but I think that the double dotted syntax is aweful. It conveys no meaning. And when I just want to use a Promised...

This part of the valid-v-slot rule that is in 7.0.0-beta.8 is triggered in my code: https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/valid-v-slot.js#L210 Basically, a named slot on anything but a template triggers it, for example: ```html...

in consideration

It would be nice if we could use attributes to define any (or most...) aspects of mapping -- and if we could derive our own attributes to do that. ###...

`CreateMapExpression` returns an `Expression` for `(source) => new Dest { A = source.A }`. That's great for LINQ `Select`. It would be nice if there were other overloads or methods...

There is a lot of awareness around "modern" web app sizes and their libs recently. I am assuming this is obvious so won't repeat all here (download times, parsing/startup time,...

enhancement

When the user backspaces and empties its query text, Selectize displays all the list of all available options. (1) Sometimes this doesn't feel like a good UX, especially for AJAX...

enhancement
input component
pending review

### Issue description I noticed that using `System.ComponentModel.DataAnnotations.Schema.TableAttribute` on an entity makes all its properties non-columns unless they are annotated with `[Column]` as well. This would be familiar to users...

type: bug
area: mapping
status: has-tests

This works: ```csharp var values = Enum.GetValues(); var query = from x in db.MyTable from y in values select x.A + y; ``` Although `Enum.GetValues()` can be evaluated server-side, this...

type: bug
status: has-tests

Exercises ExpressionPredicate + CanBeNull = false I expect this to fail, in my project this configuration results in an OUTER JOIN despite CanBeNull = false.

When using an association that is defined by an `ExpressionPredicate`, it looks like `CanBeNull` is ignored and the generated SQL is always an `OUTER JOIN`, even if you set `CanBeNull...