dataobjects-net
dataobjects-net copied to clipboard
Some additional information would be helpful on ```DbParameter``` creation. For instance, precision and scale for ```decimal```s or length for ```string```s. For example, for the following model ``` [HierarchyRoot] public class...
It would be good to use temporary tables in bulk updates. ```C# // Case 1 var ids = Enumerable.Range(1, 100_000).Select(i => (long)i); session.Query.All() .Where(c => c.Id.In(ids)) .Set(c => c.SomeProperty, false)...
@SergeiPavlov @alexyakunin @shuruev @AlexUstinov We have a question. Background A .Net 4.7.2 web project with razor pages has been upgraded to .net 8. 1. Servicestack 3 upgraded to ServiceStack 8...
Hi, In my company we are migrating to DataObjects v7, but we encountered some problems concerning the AsAsync extension method that seemed to disappear, and that we used everywhere (on...
#394 In previous version of DataObjects, we could use AsAsync() on both IQueryable and EntitySet. Now that AsAsync() has been removed, we expect ToListAsync() to work for both IQueryable and...
DO 7.1.1 Sample NB Code without PairTo association throw 'FilterProvider' exception ``` using DoTest; using Microsoft.Data.SqlClient; using Xtensive.Orm; using Xtensive.Orm.Configuration; internal class Program { private static async Task Main(string[] args)...
The exception was thrown at the production but could not be reproduced ``` System.InvalidOperationException: Collection was modified; enumeration operation may not execute. at System.Collections.Generic.HashSet`1.Enumerator.MoveNext() at Xtensive.Orm.Internals.Prefetch.Fetcher.UpdateCacheFromAllEntityGroupTasks() at Xtensive.Orm.Internals.Prefetch.Fetcher.ExecuteTasks(IReadOnlyCollection`1 containers, Boolean...
When the `ForeignKeyMode.None` setting is used and the schema is updated using `DomainUpgradeMode.PerformSafely`, the indexes for foreign keys are created, despite no foreign keys are created. They shouldn't. Alternatively, an...
When NuGet generation is enabled under the Debug configuration, the Weaver is **not** included in the `Xtensive.Orm.7.1.4.nupkg`. That hardens debugging.
I've run into a situation that looks like a bug in the schema extractor with respect to IgnoreRules, related to changes introduced for the sake of #192 . I am...