HypeillingerChillinger

Results 12 comments of HypeillingerChillinger

Workaround: I use ``` --ts_proto_opt=useExactTypes=false ```

Same here: The light bulb proposes "More Actions". When choosing one of the options nothing happens. => "No symbol found" I think this is an urgent issue. Working without does...

Probably related to #5344

Same here - I use `dotnet test`. I have two Xunit test projects which I want to run sequentially (for better understanding like merging the tests from both projects in...

With AsSubquery(): SELECT [t1].[a], [t1].[a_1] FROM ( SELECT [x_1].[Id] as [a], [x_1].[Name] as [a_1] FROM [Car] [x_1] INNER JOIN [Tyre] [x] ON [x].[CarId] = [x_1].[Id] ) [t1] Without SELECT [x_1].[Id],...

Works, perfect. A little bit hidden though... Thanks ```sql SELECT CASE WHEN [x_1].[Id] = 3 THEN [x_1].[Name] ELSE '' END FROM [Car] [x_1] INNER JOIN [Tyre] [x] ON [x].[CarId] =...

Well, if you do it with lots of columns, Oracle fails with a max. columns exception. With CASE WHEN THEN not

https://github.com/linq2db/linq2db/blob/bc50707294c09851487dd27406e27fb137a06521/Source/LinqToDB/Mapping/TableAttribute.cs#L90 But the summary says: ```This property is not used by linq2db and could be used for informational purposes.``` So I guess that a INSERT/UPDATE attempt would result in a...

Ok tried to simplify the query - we do not want to use ```COUNT(*)```. We want to use ```public static IQueryable FromSqlScalar(this IDataContext dataContext, [SqlFormattableComparer] FormattableString sql)``` ```c# public static...

Cannot convert value 'System.Object[]: System.Object[]' to type 'System.Boolean' With your advice