Giter Club home page Giter Club logo

Comments (14)

lelong37 avatar lelong37 commented on June 3, 2024 1

again, thanks @reddy6ue for all your help with the docs...!

from urf.net.

reddy6ue avatar reddy6ue commented on June 3, 2024

I found the diagram and readme very helpful at codeplex. Will send a pull request shortly.

from urf.net.

lelong37 avatar lelong37 commented on June 3, 2024

Thank you very much, we are currently trying to wrap up migrating the rest of URF docs over, please let us know if you could be so kind to help out on any other PR's for docs. We are trying to align this with URF's next major release: URF v5, which will have (self) Trackable Entities both on client, server and across physical boundaries. Would be great if docs were migrated by the time we release v5, we are looking to release v5 alpha this week sometime.

from urf.net.

reddy6ue avatar reddy6ue commented on June 3, 2024

Sure. I'd love to add doc pull requests.

from urf.net.

lelong37 avatar lelong37 commented on June 3, 2024

thanks @reddy6ue, looking forward to the PR's :)

from urf.net.

reddy6ue avatar reddy6ue commented on June 3, 2024

@lelong37 Wouldn't a wiki be better than PRs for documentation?

from urf.net.

lelong37 avatar lelong37 commented on June 3, 2024

Absolutely, however for now, would settle for whatever is quickest, and preferably markdown.

from urf.net.

reddy6ue avatar reddy6ue commented on June 3, 2024

Can you please give me wiki contributor permissions? Also, wiki redirects back to the main code page. I want to do something on the lines of this.

from urf.net.

lelong37 avatar lelong37 commented on June 3, 2024

Let me know if you have access now (https://help.github.com/articles/changing-access-permissions-for-wikis/)

from urf.net.

reddy6ue avatar reddy6ue commented on June 3, 2024

Yes, I do. Thanks!

from urf.net.

reddy6ue avatar reddy6ue commented on June 3, 2024

@lelong37 There are a bunch of missing links that point to blog.longle.net and to other sites which are currently inaccessible. If you give me access to these, I'll link them too.

from urf.net.

lelong37 avatar lelong37 commented on June 3, 2024

@reddy6ue yes, if you could please replace all instances to blog.longle.net to blog.longle.io that would be great, since that's the new domain.

from urf.net.

reddy6ue avatar reddy6ue commented on June 3, 2024

Your blog has a lot of links to codeplex. You may want to relink them to their new home on GitHub.

Also, this link doesn't exist on the codeplex site. https://genericunitofworkandrepositories.codeplex.com/wikipage?title=Quick%20CRUD%20Samples%20in%20LINQPad&referringTitle=Documentation

What's the right link for this page?

from urf.net.

lelong37 avatar lelong37 commented on June 3, 2024

Here's the article using LINQPad with URF for quick PoC's and development productivity. The article illustrates step by step instructions.

https://blog.longle.io/2013/06/11/using-linqpad-to-query-and-troubleshoot-custom-entity-framework-dbcontext-unit-of-work-and-repository-pattern/

LINQPad Snippet

Set<Customer>()
	.Where(c => c.CustomerID == "ALFKI")
	.SelectMany (c => c.Orders.Where (o => o.OrderDate.Value.Year == 1998))
	.SelectMany (c => c.OrderDetails)
	.Select (c => c.Quantity * c.UnitPrice)
	.Sum ()
	.Dump();

Customers
	.First(c => c.CustomerID == "ALFKI")
	.Orders
		.Where (o => o.OrderDate.Value.Year == 1998)
			.SelectMany (o => o.OrderDetails)
			.Select (o => o.Quantity * o.UnitPrice)
			.Sum ()
			.Dump();


IRepositoryAsync<Customer> customerRepository = new Repository<Customer>(this, unitOfWork);
ICustomerService customerService = new CustomerService(customerRepository);
var customerOrderTotalByYear = customerService.CustomerOrderTotalByYear("ALFKI", 1998);
customerOrderTotalByYear.Dump();

image

from urf.net.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.