PatryxCShark
PatryxCShark
Hi, I want to ask about your example why such UPDATE generates subquery: ``` context.Customers .Update(x => new Customer {IsActive = false, Description = "Updated"}, x => { x.Executing =...
I want to save and read from REDIS an object with interface included: `public class TestObj { public Guid Id { get; set ;} public ICollection Shapes { get; set;...
**Describe the bug** Absolute expiration seems to not work. In unit tests (C#, Windows) it's ok but after deploying on Linux server, each time function to load data is called....
Why there is a problem with datetime in UpdateIf? ```csharp .UpdateIf((dcInDb, dcNew) => dcInDb.IsConnected != dcNew.IsConnected || (dcInDb.IsConnected == true && dcInDb.LastSeen = TimeSpan.FromSeconds(5))) ``` The second expression does not...
.UpdateIf((dcInDb, dcNew) => dcInDb.IsConnected) - In Sqlite it works - In Sql Server it does not work: SqlException: An expression of non-boolean type specified in a context where a condition...