will return the same result as the first. If you stop and restart the server, the second result set is then returned (but calling the first will now return the second's, etc)
As a workaround, I've disabled the cache in the data adapter
public class CommonDbDataAdapter : OeEfCoreDataAdapter<CommonDbContext>
{
public CommonDbDataAdapter(DbContextOptions options) : base(options, new OeQueryCache(false)) {}
}
}
If caching is left enabled, calling a query that uses
contains
,startswith
, etc will return the same result set of the initial call.For example, calling:
and then calling
will return the same result as the first. If you stop and restart the server, the second result set is then returned (but calling the first will now return the second's, etc)
As a workaround, I've disabled the cache in the data adapter