dataobjects-net icon indicating copy to clipboard operation
dataobjects-net copied to clipboard

Results 46 dataobjects-net issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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)...

enhancement

@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)...