SasukeVita
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...
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#...
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,...
### 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...
 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; }...
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; }...
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...