skclusive
skclusive
i did try the following work-around before raising the bug. this workaround doesn't work :( ```c# var query = from blog in db.Blogs join post in dbPosts on blog.BlogId equals...
@ajcvickers i tested with 6.0.0-* nightly. now tried with EF Core RC1 also. same issue.
i guess this is critical issue. if i use in memory objects. following does work with standard linq query. so i am wondering why #20633 considered bug. ```c# var memoryBlogs...
@smitpatel got it. thanks. the above mentioned workaround does work in nightly and rc-1. only issue is this comparison produce warning xpost.BlogId == null (comparing int to null). Also will...
thanks. besides examples there is no documentation for now. following are some examples, incase if you are not aware. https://github.com/skclusive/Skclusive.Blazor.Samples/tree/master/Skclusive.Blazor.FlightFinder/FlightFinder.State https://github.com/skclusive/Skclusive.Blazor.Samples/tree/master/Skclusive.Blazor.TodoDesktop/TodoDesktop.State
realising now that actually there was not any strong reason to update the project to .NET Standard 2.1. i guess i need to make notes when making decisions. there were...
hi. documentation app is already live with 2.0.0-rc https://skclusive.github.io/Skclusive.Material.Docs/ (weassembly based) https://skclusive-ui.azurewebsites.net/ (server rendered) could you please try it out and provide your feedback?
please report the broken links. yes it is possible to provide custom primary/secondary colors. yea that custom theming documentation is missing. `ThemeProvider` component accepts Light and Dark `ThemeConfig` object which...
thats great. do you think the current API for customizing the theme is good enough or want to have additional builder API requiring few inputs from users and returning the...
great points. so following are the few approaches. 1) higher order API to be used collect fewer colors (primary and secondary etc) 2) possibility of getting partial config and populate...