Roman Artiukhin

Results 38 issues of Roman Artiukhin

Seems publishing dev builds is broken for some time: https://teamcity.jetbrains.com/buildConfiguration/NHibernate_NHibernatePublishNuGet?mode=branches Error: ``` Response status code does not indicate success: 413 (The total packages size for the pending uploads is too...

Fixes #3104 (caused by #2737)

Problematic scenario: invalid SQL is generated when joined entity with subclasses doesn't need subclass joins ```C# //inner joined animal is not used in output (no need to join subclasses) var...

And added test cases for #1166

t: Improvement
c: Linq Provider
p: Minor

Too many tests error..

Fixes #1316 Port of https://github.com/hibernate/hibernate-orm/commit/06b0faaf5770da47681d9d32e06ea204519a3846 (without Padded fetch style) To start using Dynamic batch style add the following property to session-factory settings: ```xml Dynamic ``` Or configuration by code: ```C#...

t: New Feature
c: Core
p: Minor

Consider the following code: ```C# var oldOneToOne = entity.OneToOne; entity.OneToOne = newOneToOne; session.Flush(); ``` `entity.OneToOne` is `one-to-one` mapped with `all-delete-orphan`. The code above should delete orphaned `oldOneToOne` and insert new...

Useful for parameter detection logic (i.e. to properly detect AnsiString type for parameter in hql) Fixes part of the problem described in #1166

t: Improvement
c: Core
p: Minor