Mohammad Hossein Amri

Results 60 comments of Mohammad Hossein Amri

@moberwasserlechner I am facing the same issue: ``` 2022-05-01 02:03:11.328 2157-2450/com.company.appName E/DatabaseUtils: Writing exception to parcel java.lang.SecurityException: Permission Denial: reading com.byteowls.capacitor.filesharer.FileSharerProvider uri content://com.company.appName.filesharer.fileprovider/capfilesharer/appName-Sunday-2022%2005%201_02%203%2009_GMT8.jpg from pid=31221, uid=1000 requires the provider be...

@KrishPro thanks, but what kind of bug did you have? it was in angular or android side? bcs both are building just fine and it happens only if I click...

> You can check if you had made any mistake in configuring You can check from README.md of this repo > > For me it solved by adding, > >...

this already has a solution in [here](https://stackoverflow.com/questions/6226129/is-there-a-particular-reason-linqkits-expander-cant-pick-up-expressions-from-f/7807849#7807849) but I don't know why still it's not fixed in the source code. @scottksmith95 @StefH is there any special reason the method and...

I didn't get what do you mean. this is not a projection. the projection is if I do something like this ``` var blog= _context.Blogs.AsExpandable().Where(x=>x.Id==1).Select(x=> new ProjectionClass{Name= x.Name}).Single(); blog.Name="New Name";...

@shyamal890 it should be like this ``` public static GetRows() { var toEnumModel= ToEnumModel(); var to_ret = db.TableRows.AsExpandable().Select(x=> new TableRowModel( { TableRowId = x.TableRowId, Type = x.Type, Name = x.Name,...

having the same issue, if the prettier and organize import is enabled, this will be the result ![image](https://user-images.githubusercontent.com/8991783/94046544-64ef9000-fe03-11ea-837a-31de7ef90965.png) Version: 1.49.1 (user setup) Commit: 58bb7b2331731bf72587010e943852e13e6fd3cf Date: 2020-09-16T23:27:51.792Z Electron: 9.2.1 Chrome: 83.0.4103.122...

I am also looking for the root password, I want to install iputil to diagnose a connection failure, I can't do it without creating a docker file and hook it...

I liked everything other than the change detection part. in a matter of fact I already planned to use what you've suggested in your blog but if you ask me...

@yjaaidi don't get me wrong your idea is awesome so you basically you want to have two functions `describeState` and `describeViewModel` ``` const {provideState, injectState} = describeState({count: 0}); const {provideViewModel,...