SasukeVita

Results 11 issues of SasukeVita

PBNorthwind.tt ```C# PrefixTableMappingWithSchema = false; GenerateSchemaAsType = true; ``` i have two schemas in postgre database (Admin, Member) Member Schema is generated twice generated.cs: ```c# #region Schemas public AdminSchema.DataContext Admin...

type: bug
area: T4
area: scaffold

This is the code from EF i want to migrate to linq2db ```c# int[] Ids = db.SqlQuery("SELECT 1").ToArray(); ``` SqlQuery\ works, fine with other simple datatypes while using linq2db: ```c#...

type: feature
status: has-tests

DDL ```sql CREATE OR REPLACE FUNCTION "Member"."fnTest2"(input1 integer, input2 smallint) RETURNS smallint LANGUAGE sql AS $function$ SELECT input2; $function$ ; ``` Model ```C# [Sql.Function(Name="\"Member\".\"fnTest2\"", ServerSideOnly=true)] public static short? fnTest2(int? input1,...

type: bug
status: has-pr
status: has-tests
provider: postgresql

### Description DisplayToastAsync() is worked, after closing app and reopen app from float service button, DisplayToastAsync() is shown but app crash Toast.MakeText() still worked fine even after reopen app from...

bug
p/android
s/unverified
a/Snackbar

![Error](https://user-images.githubusercontent.com/19229085/160615464-fb04e9fe-336f-4f05-bb5e-516b246c4d9e.png) i got error when press "Go!" after update to version 0.8.2393.39063 when i tried extract old version 0.8.2358.38968 press "Go!" worked also i dont know where is _Main Log.log_,...

//tested EasyClient is running in Windows //when AppServer is from Windows await client.ConnectAsync(new DnsEndPoint("185.120.5.51", 2012)); // ok client.ConnectAsync(new DnsEndPoint("185.120.5.51", 2012)).Wait() // ok //when AppServer is from Linux await client.ConnectAsync(new DnsEndPoint("185.120.5.51",...

model ```c# [Table(Schema="Member", Name="Table")] public partial class Table { [PrimaryKey, NotNull ] public int Id { get; set; } // integer [Column, Nullable] public DateTime? Date { get; set; }...

status: has-pr
status: has-tests
provider: postgresql
area: extensions

i have "PG"."PG_Table" with column "TypeId" AS smallint NOT NULL, in C# i mapped it as byte `public partial class PG_Table { public int Id { get; set; } public...

Model ```C# [Table(Schema="Member", Name="TableName")] public partial class TableName { [PrimaryKey, NotNull ] public int Id { get; set; } // integer [Column, Nullable] public string FirstName { get; set; }...

type: bug
status: has-tests

i have 3 function with same name: 1. fnTest2(int) return int 2. fnTest2(int, short) return short 3. fnTest2(int, int) return short DDL ```sql CREATE OR REPLACE FUNCTION "Member"."fnTest2"(input_var integer) RETURNS...

type: bug
area: T4
status: has-tests
provider: postgresql
area: scaffold