darko1979

Results 12 comments of darko1979

I can confirm this issue still exists in version 6.1.0 I wrote a PowerShell script to fix the models: ```PS1 $basePath = ".\OpenAPIClient-php\lib\Model\" $files = Get-ChildItem *.php -Path $basePath -Name...

> ```cs > // Using IEnumerable parameter > var values = new(int, int)[] { (1, 2), (1, 3), (1, 4) }; > > // Add overloads so that IEnumerable works...

I am facing the same issue and was looking if there is already some solution/option implemented in query builder that would run execute single query as multiple selects internally to...

I guess @Ileca option 1 was implemented in final version 1.0.0 :-) In beta version and older, opening table properties displayed Columns table with fixed column with so Attributes column...

I modified my example like this: ```cs using LinqToDB; using LinqToDB.Data; using LinqToDB.DataProvider.PostgreSQL; using LinqToDB.Mapping; using Npgsql; using System.Text.Json; using System.Text.Json.Serialization; namespace test { [Table(Schema = "public", Name = "item")]...

Thanks, will try that. I'm caching DataOptions per connection string like this: ```cs public sealed partial class DatabaseModel : LinqToDB.Data.DataConnection { static ConcurrentDictionary _options = new ConcurrentDictionary(); static DataOptions GetOptions(string...

At one point I thought that it had something to do with having VPN connections (OpenVPN) and me turning them on/off or switching connection, but I could not replicate the...

So I tried the suggestion but checking "Force recreation of objects" without "Recreate only unmodifiable objects" recreated the whole database that does not help me. Checking "Recreate only unmodifiable objects"...

> @darko1979 If you are still stuck let me know if this is better: https://github.com/FallenWorlds/AnkhSVN > > I need to make sure for my purposes this doesn't happen either. If...

@BearSleepy yes, devenv.exe can be located in task manager (I personally use sysinternals process explorer), after closing main visual studio window devenv.exe will stay active consuming memory untill I terminate...