ondrejtucny

Results 6 issues of ondrejtucny

When the following two entities are declared: [HierarchyRoot(InheritanceSchema.SingleTable)] [TableMapping("a_list")] public sealed class AList : LegacyUserTrackedEntity, ICodebookEntity { [Key(0)] [Field] [FieldMapping("id_list")] public short Id { get; set; } } [HierarchyRoot(InheritanceSchema.SingleTable)] [TableMapping("c_system")]...

My use case: I have a facility that retrieves data from many entities, and allows for several usage patterns, such as: 1) retrieve page-by-page, 2) retrieve all, 3) retrieve range...

I have a pair of legacy tables `d_limit` and `c_limit_type` with a N:1 relationship. The legacy SQL code uses a `[code] LIKE '_s'` condition, which I cannot reasonably avoid right...

I am running into repeated issues whenever I work with `enum` fields which are backed by anything else but `int`. This simple query: ``` // fetch all current CNP settings...

The bulk Delete() method fails when deleting members of an EntitySet which contains ancestors of T: ``` Message:  Expected: No Exception to be thrown But was: Microsoft.Data.SqlClient.SqlException (0x80131904): The DELETE...

Currently, associations are not supported in structures. Consider the following example showing how this could be useful: ```csharp [HierarchyRoot] public class Config : Entity { [Field, Key] public int Id...

enhancement