shameleo
shameleo
**[UPDATED] Now I found out why generated SQL is so strange, and can say it's probably my fault and lack of knowledge of how `let` works in LINQ.** Should it...
### Version 16.8.3, 17.0.0, maybe older ### Reproduction link [github.com](https://github.com/shameleo/vue-loader-issue_scoped-style) ### Steps to reproduce ``` npm install npm run dev ``` ### What is expected? No errors ### What is...
### Version 16.8.3, 17.0.0, maybe older ### Reproduction link [github.com](https://github.com/shameleo/vue-loader-issue_script-setup) ### Steps to reproduce ``` npm install npm run dev ``` ! I you doesn't see any error try edit...
### Version 16.6.0 and later ### Reproduction link [github.com](https://github.com/shameleo/vue-loader-issue) ### Steps to reproduce ``` npm install npm run dev ``` ### What is expected? No errors ### What is actually...
Linq2db honors association attribute when class is used as table representation, but not as intermediate result. ```cs using LinqToDB; using LinqToDB.Data; using LinqToDB.Mapping; using System.IO; using System.Linq; using System.Linq.Expressions; namespace...
RFC4180 allows line break inside quoted field, and `Sylvan.Data.Csv` handles this just fine, but `CsvDataReader.RowNumber` counts *records*, not actually read *lines* of file. Could you add one more property for...
### Describe your issue If `CanBeNull` is false, I would expect generated SQL to use `INNER JOIN` or `CROSS APPLY`. But it uses `LEFT JOIN` or `OUTER APPLY` instead. ###...
`include-db-name` options doesn's work as expected. My settings: ```json { "general": { "provider": "SQLServer" }, "dataModel": { "include-db-name": true, "include-default-schema-name": true } } ``` Output sample: ```cs [Table("Service", Schema =...
First, thank you for fixing in `preview.1` associations of entities which represent subqueries results (union, group by, select). In my project it's important to automatically remove unnecessary joins and this...
This fails to generate SQL: ```cs var query = ( from servProj in ( from serv in db.GetTable() // minimal reproduction, makes more sense in real code //select new ServiceProjection...