Sha256() için böyle bir extension yok dedi. Siz deneyebildiniz mi ?. Webex açabilirim bir bakabilirsiniz.
Nothing changed. :(
MultiTenancyEnabled = true
And i have 2 warning in dependencies; I rebuild several times.
1- *.Core.Shared - System.ComponentModel.DataAnnotations (!) 2- *.Web.Mvc - npm.bootstrap4-datetimepicker.moment-timezone (not installed)
Is this a bug ?
We have default tenant.
Our version is 5.6.2.
Hi
Our web mvc project running and we can login.
But we can not authenticate from api client, we got invalid_grant , invalid_user_or_password error.
But username and password are correct, client id correct, address correct.
Do you have any idea ?
Muhittin
I will try this again.
Hi,
When i ran my project on local computer, after login process i got json result as text.
I can not view dashboard.
Muhittin
Hi,
I want to create an input form which includes combobox (combobox gets data from another table).
I tried to write code but failed.
Is there any example code ?
[Table("Stage_SQLHosts")] public class Stage_SQLHost : FullAuditedEntity<Guid> , IMayHaveTenant { public int? TenantId { get; set; }
[Required]
[StringLength(Stage_SQLHostConsts.MaxHostnameLength, MinimumLength = Stage_SQLHostConsts.MinHostnameLength)]
public virtual string Hostname { get; set; }
public virtual bool Track { get; set; }
public virtual InputSource InputSource { get; set; }
}
[Table("tbl_InputSources")] public class InputSource : FullAuditedEntity<Guid> , IMayHaveTenant {
public int? TenantId { get; set; }
[Required]
[StringLength(InputSourceConsts.MaxNameLength, MinimumLength = InputSourceConsts.MinNameLength)]
public virtual string Name { get; set; }
}
It is OK. Thanks a lot.
It is about case sensitive. InputSource and inputSource in index.js
Muhittin