HypeillingerChillinger

Results 16 issues of HypeillingerChillinger

My goal is to communicate from the **browser** (Angular) to a C# backend. For that I'd like to use the grpc-web style using option ``` --ts_proto_opt=outputClientImpl=grpc-web ``` Using it produces...

## Describe the solution you would like ```C# public class WhereFuncPathTests : UnitTestBase { public WhereFuncPathTests(DatabaseFixture fixture) : base(fixture) { } } ``` Should be converted/formatted (CTRL+SHIFT+I) to: ```C# public...

## Describe the solution you would like When typing a left curly bracket after the signature of a new method the right bracket should be added automatically in the correct...

## Steps to reproduce 1. Create a C# file with namespace. 2. Move file to other folder. 3. The namespace is not adjusted (within the file). ## Expected behavior The...

Are ```ArangoDBClient``` and ```HttpApiTransport``` thread safe? I cannot find any information about that in the documentation. So can they safely be cached and used in different threads or do I...

The statement written for ``` FromSqlScalar``` in a ```FormattableString``` is not created correctly ```c# FormattableString statement = $"SELECT IIF(EXISTS(SELECT + FROM [INFORMATION_SCHEMA].[TABLES] [x] WHERE [x].[TABLE_NAME] = '{MyStringConstants.MyTableNameStringConstant}'),1,0)"; var tableExists =...

type: bug
status: has-tests

If you use fluent configuration ```c# entityMappingBuilder.HasTableName("MyName") ``` then the name of the table in ```c# context.GetTable().TableName; ``` is not "MyName"

When concatenating multiple IQueryables an exception occurs ``` Exception message: Exception has occurred: CLR/System.InvalidCastException Ein Ausnahmefehler des Typs "System.InvalidCastException" ist in linq2db.dll aufgetreten.: 'Unable to cast object of type 'System.Linq.Expressions.MemberMemberBinding'...

type: bug
status: has-pr
status: has-tests
area: set

1. "American Samoa" english to german: "Amerikanische Samoa" should be "Amerikanisch-Samoa" 2. "Azerbaijan" english to german: "Assoziierung" should be "Aserbaidschan" 3. "Bermuda" english to german: "In den Warenkorb" which means...

model improvement

Cannot create a CASE WHEN THEN similar to https://stackoverflow.com/questions/936028/linq-case-statement Here is my Linq2Db example ```C# public class MyProjection { public Car Car {get;set;} public Tyre Tyre {get;set;} } public class...

status: has-tests
type: improvement