merhaba. aşağıdaki konu ile ilgili yardımcı olabilir misiniz rica etsem.
Api deki kodu React Native de sonuc alırken flutterda boş bir dizi dönüyor. httpcontext.session ile ilgili farklı bir kodlama mı yapılması gerekiyor ?
api kodu:
[httpget]
public List<User> GetMyProfile(){
var user =context.User.Where(x=>x.username==httpcontext.session.getstring(‘username’)).tolist();
return user;
}
React Native :
[
{
‘id’:1,
‘username’':‘ramazan’,
‘password’:‘12345’
}
]
Flutter :
[ ]